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

:root {
    --primary: #000c1e;
    --neutral: #002b5e;
    --pink: #ec4b74;
    --green: #71ab38;
    --offwhite: #efefef;
    --font: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--primary);
    color: var(--offwhite);
    overflow-x: hidden;
}

/* CURSOR */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--pink);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: screen;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(236, 75, 116, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, width 0.3s, height 0.3s;
}

/* GRID OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 43, 94, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 43, 94, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 12, 30, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 43, 94, 0.5);
}

.logo {
    width: 150px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(239, 239, 239, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--offwhite);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--pink);
    color: var(--pink);
    padding: 10px 22px;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--pink);
    color: white;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    overflow: hidden;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(113, 171, 56, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: 100px;
    top: 30%;
    background: radial-gradient(circle, rgba(236, 75, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 43, 94, 0.5);
    border: 1px solid rgba(113, 171, 56, 0.3);
    padding: 6px 14px;
    margin-bottom: 32px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--pink), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.6);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--pink);
    color: white;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 75, 116, 0.35);
}

.btn-secondary {
    color: rgba(239, 239, 239, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(239, 239, 239, 0.2);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    color: var(--offwhite);
    border-color: var(--offwhite);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 43, 94, 0.6);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--offwhite), rgba(239, 239, 239, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-num span {
    color: var(--pink);
    -webkit-text-fill-color: var(--pink);
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(239, 239, 239, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* SCROLL TICKER */
.ticker {
    background: var(--neutral);
    border-top: 1px solid rgba(113, 171, 56, 0.2);
    border-bottom: 1px solid rgba(113, 171, 56, 0.2);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(239, 239, 239, 0.5);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-item::before {
    content: '◆';
    color: var(--green);
    font-size: 0.5rem;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
section {
    position: relative;
    z-index: 1;
}

.section-pad {
    padding: 120px 5%;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--pink);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--pink), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 64px;
    background: rgba(0, 43, 94, 0.3);
    border: 1px solid rgba(0, 43, 94, 0.5);
}

.why-card {
    background: var(--primary);
    padding: 48px 40px;
    position: relative;
    transition: background 0.3s;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    background: rgba(0, 43, 94, 0.2);
}

.why-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(239, 239, 239, 0.2);
    margin-bottom: 24px;
}

.why-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.5);
    line-height: 1.7;
}

/* SERVICES */
.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
}

.services-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.55);
    line-height: 1.8;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-item {
    border: 1px solid rgba(0, 43, 94, 0.5);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 75, 116, 0.04), rgba(113, 171, 56, 0.04));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    border-color: rgba(236, 75, 116, 0.3);
    transform: translateX(4px);
}

.service-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--pink);
    opacity: 0.6;
    min-width: 28px;
}

.service-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(239, 239, 239, 0.4);
    border: 1px solid rgba(239, 239, 239, 0.12);
    padding: 3px 10px;
}

.service-arrow {
    font-size: 1.2rem;
    color: rgba(239, 239, 239, 0.2);
    transition: all 0.3s;
}

.service-item:hover .service-arrow {
    color: var(--pink);
    transform: translateX(4px);
}

/* PROCESS */
.process-bg {
    background: rgba(0, 43, 94, 0.08);
    border-top: 1px solid rgba(0, 43, 94, 0.4);
    border-bottom: 1px solid rgba(0, 43, 94, 0.4);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 75, 116, 0.4), rgba(113, 171, 56, 0.4), transparent);
}

.step {
    padding: 0 32px 0 0;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(0, 43, 94, 0.8);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--pink);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.5);
    line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(0, 43, 94, 0.3);
}

.testimonial {
    background: var(--primary);
    padding: 48px 36px;
    position: relative;
    transition: background 0.3s;
}

.testimonial:hover {
    background: rgba(0, 43, 94, 0.15);
}

.testimonial-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--pink);
    opacity: 0.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.author-name {
    font-size: 0.88rem;
    font-weight: 600;
}

.author-title {
    font-size: 0.75rem;
    color: rgba(239, 239, 239, 0.4);
    margin-top: 2px;
}

/* CTA SECTION */
.cta-section {
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(236, 75, 116, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    max-width: 680px;
    margin: 0 auto 24px;
}

.cta-section p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.5);
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.cta-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    margin: 0 auto 48px;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(0, 43, 94, 0.5);
    padding: 64px 5% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.4);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(239, 239, 239, 0.3);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(239, 239, 239, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--offwhite);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 43, 94, 0.4);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(239, 239, 239, 0.25);
}

.footer-badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.6;
    border: 1px solid rgba(113, 171, 56, 0.2);
    padding: 4px 12px;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: rgba(0, 12, 30, 0.9);
    border: 1px solid rgba(236, 75, 116, 0.4);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 75, 116, 0.3);
}

/* FAQ */
.faq-list {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid rgba(0, 43, 94, 0.5);
    background: var(--primary);
    transition: background 0.3s, border-color 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(236, 75, 116, 0.3);
    background: rgba(0, 43, 94, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
    background: none;
    border: none;
    color: var(--offwhite);
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--pink);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--pink);
    transition: transform 0.35s ease;
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 36px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 36px 28px;
}

.faq-answer p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(239, 239, 239, 0.55);
    line-height: 1.8;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(236, 75, 116, 0.4);
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 10px;
    z-index: 9999;
    position: relative;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pink);
    transition: all 0.35s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE 768px */
@media (max-width: 768px) {

    .why-grid,
    .services-header,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 28px;
        flex-wrap: wrap;
    }
}

/* RESPONSIVE 550px */
@media (max-width: 550px) {

    /* Hide custom cursor on small devices */
    .cursor,
    .cursor-ring {
        display: none !important;
    }

    /* Nav mobile */
    nav {
        padding: 14px 5%;
    }

    .logo {
        width: 120px;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 9000;
        padding: 80px 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 43, 94, 0.3);
    }

    .nav-links li:first-child {
        border-top: 1px solid rgba(0, 43, 94, 0.3);
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        letter-spacing: 0.1em;
        color: rgba(239, 239, 239, 0.7);
    }

    .nav-links a:hover {
        color: var(--pink);
    }

    /* Hero mobile */
    .hero {
        padding: 100px 5% 60px;
        min-height: auto;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.82rem;
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 48px;
        padding-top: 32px;
    }

    .stat-num {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    /* Sections mobile */
    .section-pad {
        padding: 64px 5%;
    }

    h2 {
        font-size: 1.6rem;
    }

    /* Why cards */
    .why-grid {
        margin-top: 40px;
    }

    .why-card {
        padding: 32px 24px;
    }

    /* Services */
    .services-header {
        margin-bottom: 40px;
    }

    .service-item {
        padding: 24px 20px;
        gap: 16px;
    }

    .service-info h3 {
        font-size: 0.95rem;
    }

    .service-tags {
        gap: 5px;
    }

    .tag {
        font-size: 0.6rem;
        padding: 2px 7px;
    }

    /* Process */
    .process-steps {
        margin-top: 40px;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        padding: 0;
    }

    .step-num {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    /* Testimonials */
    .testimonials-grid {
        margin-top: 40px;
    }

    .testimonial {
        padding: 32px 24px;
    }

    .testimonial p {
        font-size: 0.85rem;
    }

    /* FAQ mobile */
    .faq-list {
        margin-top: 40px;
    }

    .faq-question {
        padding: 22px 20px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 22px;
    }

    .faq-answer p {
        font-size: 0.82rem;
    }

    /* CTA */
    .cta-section {
        padding: 64px 5%;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.88rem;
    }

    .cta-line {
        height: 50px;
        margin-bottom: 32px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Ticker */
    .ticker-item {
        font-size: 0.68rem;
        padding: 0 24px;
    }
}