/* ═══════════════════════════════════
   CSS RESET & BASE
═══════════════════════════════════ */
:root {
    --primary: #A3C644;
    --primary-dark: #8AAF2E;
    --primary-light: #C4DC7A;
    --velra-blue: #0A192F;
    --velra-blue-light: #112240;
    --background-light: #F8FAFC;
    --background-dark: #0A192F;
    --content-primary: #A3C644;
    --content-secondary: #EAB308;

    /* Color palette */
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background-light);
    color: #1e293b;
    transition: background-color 0.3s, color 0.3s;
}

body.dark {
    background-color: var(--background-dark);
    color: #cbd5e1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #0f172a;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6 {
    color: #f1f5f9;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    line-height: 2;
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

/* ═══════════════════════════════════
   GRADIENT TEXT
═══════════════════════════════════ */
.gradient-text,
.content-gradient-text {
    background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════
   BADGE / EYEBROW LABEL
═══════════════════════════════════ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 0.375rem 1rem;
    background: rgba(163, 198, 68, 0.1);
    border: 1px solid rgba(163, 198, 68, 0.25);
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════
   HERO SECTION
═══════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 64px 0;
    max-width: 56rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(163, 198, 68, 0.15);
    border: 1px solid rgba(163, 198, 68, 0.4);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.75rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-300);
    margin-bottom: 2rem;
    max-width: 42rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-trust-signals {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    color: var(--slate-400);
    font-size: 0.875rem;
}

.trust-signal-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-signal-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.125rem;
}

.trust-signal-divider {
    width: 1px;
    height: 1rem;
    background: var(--slate-600);
}

@media (max-width: 640px) {
    .trust-signal-divider {
        display: none;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 40rem;
}

/* ═══════════════════════════════════
   STAT CARD
═══════════════════════════════════ */
.stat-card {
    background: rgba(163, 198, 68, 0.06);
    border: 1px solid rgba(163, 198, 68, 0.18);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: background 0.3s ease;
}

.stat-card:hover {
    background: rgba(163, 198, 68, 0.1);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════
   REVENUE GROWTH SECTION - NEW
═══════════════════════════════════ */
.revenue-section {
    padding: 6rem 1.5rem;
    background: var(--white);
}

body.dark .revenue-section {
    background: var(--slate-800);
}

.revenue-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .revenue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .revenue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.revenue-card {
    background: var(--slate-50);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--slate-200);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

body.dark .revenue-card {
    background: var(--slate-900);
    border-color: var(--slate-700);
}

.revenue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(163, 198, 68, 0.15);
    border-color: rgba(163, 198, 68, 0.4);
}

.revenue-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.revenue-card:hover .revenue-icon {
    transform: scale(1.1) rotate(5deg);
}

.revenue-icon .material-symbols-outlined {
    color: var(--white);
    font-size: 1.75rem;
}

.revenue-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.revenue-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 0;
}

body.dark .revenue-card p {
    color: var(--slate-400);
}

/* ═══════════════════════════════════
   TESTIMONIAL SECTION - NEW
═══════════════════════════════════ */
.testimonial-section {
    padding: 6rem 1.5rem;
    background: var(--slate-50);
}

body.dark .testimonial-section {
    background: rgba(15, 23, 42, 0.5);
}

.testimonial-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
}

body.dark .testimonial-card {
    background: var(--slate-800);
    border-color: var(--slate-700);
}

.testimonial-quote {
    position: absolute;
    top: -1.5rem;
    left: 3rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(163, 198, 68, 0.3);
}

.testimonial-quote .material-symbols-outlined {
    color: var(--white);
    font-size: 2rem;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

body.dark .testimonial-text {
    color: var(--slate-300);
}

.testimonial-text:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

body.dark .testimonial-author {
    border-top-color: var(--slate-700);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

body.dark .author-name {
    color: var(--white);
}

.author-title {
    font-size: 0.875rem;
    color: var(--slate-500);
}

body.dark .author-title {
    color: var(--slate-400);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
}

.testimonial-rating .material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1;
}

/* ═══════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════ */
.services-section {
    padding: 6rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    margin-bottom: 1.25rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

body.dark .section-description {
    color: var(--slate-400);
}

/* ==========================================================================
   NARRATIVE MASTERPIECE LAYOUT (ZERO-NAVIGATION)
   ========================================================================== */

.narrative-canvas {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.narrative-panel {
    background: var(--white);
    border-radius: 3rem;
    padding: 3rem;
    border: 1px solid var(--slate-100);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.dark .narrative-panel {
    background: var(--slate-800);
    border-color: var(--slate-700);
}

@media (min-width: 1024px) {
    .narrative-panel {
        grid-template-columns: 0.8fr 1.2fr;
        padding: 5rem;
    }

    .narrative-panel.reversed {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.narrative-visual {
    background: var(--slate-50);
    border-radius: 2.5rem;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

body.dark .narrative-visual {
    background: var(--slate-900);
}

.narrative-visual .material-symbols-outlined {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.9;
}

.narrative-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.narrative-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--primary);
}

.narrative-eyebrow::after {
    content: '';
    height: 1px;
    width: 60px;
    background: var(--primary);
    opacity: 0.3;
}

.narrative-title {
    font-size: 2.75rem;
    line-height: 1.1;
    color: var(--slate-900);
    font-weight: 800;
    letter-spacing: -0.02em;
}

body.dark .narrative-title {
    color: var(--white);
}

.narrative-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--slate-600);
}

body.dark .narrative-text {
    color: var(--slate-400);
}

.narrative-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}

body.dark .narrative-points {
    border-color: var(--slate-700);
}

.narrative-point {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.narrative-point .material-symbols-outlined {
    color: var(--primary);
    font-size: 2rem;
    font-variation-settings: 'FILL' 1;
}

.narrative-point-title {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 1.1rem;
}

body.dark .narrative-point-title {
    color: var(--white);
}

.narrative-point-desc {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* Hover Mastery */
.narrative-panel:hover {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* ═══════════════════════════════════
   SERVICE CARD
═══════════════════════════════════ */
.service-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--slate-100);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.dark .service-card {
    background: var(--slate-800);
    border-color: var(--slate-700);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(163, 198, 68, 0.12);
    border-color: rgba(163, 198, 68, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon .material-symbols-outlined {
    color: var(--white);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    font-size: 0.875rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

body.dark .service-description {
    color: var(--slate-400);
}

.service-features {
    list-style: none;
    margin-bottom: 1.75rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate-600);
}

body.dark .service-feature {
    color: var(--slate-400);
}

.service-feature .material-symbols-outlined {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.625rem;
}

.service-link .material-symbols-outlined {
    font-size: 1.125rem;
}

/* ═══════════════════════════════════
   WHY VELRA SECTION
═══════════════════════════════════ */
.why-velra-section {
    padding: 6rem 1.5rem;
    background: var(--slate-50);
}

body.dark .why-velra-section {
    background: rgba(15, 23, 42, 0.5);
}

.why-velra-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

@media (min-width: 1024px) {
    .why-velra-container {
        flex-direction: row;
    }
}

.why-velra-image {
    flex: 1;
    position: relative;
}

@media (min-width: 1024px) {
    .why-velra-image {
        width: 50%;
    }
}

.image-rotation-wrapper {
    position: absolute;
    inset: -12px;
    background: rgba(163, 198, 68, 0.08);
    border-radius: 1.5rem;
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.why-velra-image:hover .image-rotation-wrapper {
    transform: rotate(1deg);
}

.image-container {
    position: relative;
    background: var(--white);
    padding: 10px;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--slate-200);
    overflow: hidden;
}

body.dark .image-container {
    background: var(--slate-900);
    border-color: var(--slate-700);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: transform 0.7s;
}

.why-velra-image:hover .image-container img {
    transform: scale(1.05);
}

.why-velra-content {
    flex: 1;
}

@media (min-width: 1024px) {
    .why-velra-content {
        width: 50%;
    }
}

.why-velra-title {
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.why-velra-description {
    font-size: 1rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

body.dark .why-velra-description {
    color: var(--slate-400);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(163, 198, 68, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark .feature-icon-wrapper {
    background: rgba(163, 198, 68, 0.15);
}

.feature-icon-wrapper .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    font-family: 'Montserrat', sans-serif;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.7;
}

body.dark .feature-content p {
    color: var(--slate-400);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-top: 2.5rem;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button .material-symbols-outlined {
    font-size: 1.25rem;
}

/* ═══════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════ */
.process-section {
    padding: 6rem 1.5rem;
    background: var(--white);
}

body.dark .process-section {
    background: var(--slate-800);
}

.process-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.step-description {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.7;
}

body.dark .step-description {
    color: var(--slate-400);
}

/* ═══════════════════════════════════
   TRUST SIGNALS SECTION
═══════════════════════════════════ */
.trust-section {
    padding: 6rem 1.5rem;
    background: var(--slate-50);
}

body.dark .trust-section {
    background: rgba(15, 23, 42, 0.6);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid var(--slate-100);
}

body.dark .trust-card {
    background: var(--slate-800);
    border-color: var(--slate-700);
}

.trust-card .material-symbols-outlined {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: block;
}

.trust-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

body.dark .trust-card-title {
    color: var(--white);
}

.trust-card-subtitle {
    font-size: 0.75rem;
    color: var(--slate-500);
}

body.dark .trust-card-subtitle {
    color: var(--slate-400);
}

/* ═══════════════════════════════════
   FAQ SECTION
═══════════════════════════════════ */
.faq-section {
    padding: 6rem 1.5rem;
    background: var(--white);
}

body.dark .faq-section {
    background: var(--slate-800);
}

.faq-container {
    max-width: 56rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--slate-50);
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    overflow: hidden;
}

body.dark .faq-item {
    background: var(--slate-900);
    border-color: var(--slate-700);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-size: 1rem;
    font-weight: 700;
    padding-right: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--primary);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.7;
}

body.dark .faq-answer p {
    color: var(--slate-400);
}

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.cta-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #A3C644 0%, #EAB308 100%);
}

.cta-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    opacity: 0.9;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--velra-blue);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
}

.cta-primary-button:hover {
    transform: scale(1.05);
}

.cta-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s, border-color 0.3s;
}

.cta-secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta-button .material-symbols-outlined {
    font-size: 1.25rem;
}

.cta-footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 2rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════
   SEO TEXT BLOCK
═══════════════════════════════════ */
.seo-text-block {
    margin-top: 3.5rem;
    text-align: center;
}

.seo-text-block p {
    font-size: 0.875rem;
    color: var(--slate-500);
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.7;
}

body.dark .seo-text-block p {
    color: var(--slate-400);
}

/* ═══════════════════════════════════
   RESPONSIVE ADJUSTMENTS
═══════════════════════════════════ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .services-section,
    .revenue-section,
    .testimonial-section,
    .why-velra-section,
    .process-section,
    .faq-section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-quote {
        left: 1.5rem;
        width: 48px;
        height: 48px;
    }

    .testimonial-quote .material-symbols-outlined {
        font-size: 1.5rem;
    }
}