/* ========================================
   QUANTUM RANK LLC — PREMIUM CSS
   Colors: White, Black, Blue
   ======================================== */

/* ===== RESET & BASE ===== */
:root {
    --ink: #15181E;
    --ink-soft: #565C66;
    --paper: #F6F7F5;
    --surface: #FFFFFF;
    --blue: #1e6bb8;
    --blue-deep: #0f4a82;
    --blue-light: #e8f0fe;
    --line: #E4E6E2;
    --maxw: 1200px;
    --r: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== TYPE / UTILITIES ===== */
.display {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.04;
}

.eyebrow {
    font-family: "Space Mono", monospace;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-deep);
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1.5px;
    background: var(--blue);
}

.lead {
    color: var(--ink-soft);
    font-size: 1.12rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-light:hover {
    transform: translateY(-2px);
}

.btn .arw {
    transition: transform 0.2s ease;
}

.btn:hover .arw {
    transform: translate(2px, -2px);
}

.section {
    padding: 96px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 54px;
}

.section-head h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    line-height: 1.08;
    margin: 16px 0 14px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 1.1rem;
}

/* ===== NAV ===== */
header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 247, 245, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1.28rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 3px;
}

.brand .tick {
    color: var(--blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-size: 0.96rem;
    color: var(--ink-soft);
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--ink);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
    margin: 22px 0 22px;
}

.hero h1 .em {
    color: var(--blue);
}

.hero .lead {
    max-width: 480px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stars {
    color: var(--blue);
    letter-spacing: 2px;
    font-size: 1rem;
}

.hero-meta span {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

/* ===== FORM CARD ===== */
.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 60px -34px rgba(21, 24, 30, 0.32);
}

.form-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.form-card .sub {
    color: var(--ink-soft);
    font-size: 0.94rem;
    margin: 6px 0 20px;
}

.field {
    margin-bottom: 13px;
}

.field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.field input,
.field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
}

.form-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.form-success .ok {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 14px;
}

.form-success h3 {
    margin-bottom: 6px;
}

.form-success p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* ===== FORM COMPACT LAYOUT (Inline Fields) ===== */
.form-compact {
    padding: 24px 28px;
    max-width: 520px;
    margin: 0 auto;
}

.form-compact .field {
    margin-bottom: 0;
}

.form-compact .field label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #15181E;
}

.form-compact .field input,
.form-compact .field select {
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.form-compact .sub {
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: #565C66;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.form-row .field {
    flex: 1;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.form-submit-row .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    flex-shrink: 0;
    width: auto;
}

.form-submit-row .form-note {
    font-size: 0.7rem;
    color: #565C66;
    margin: 0;
    text-align: left;
}

/* ===== HERO LINE ===== */
.hero-line {
    margin-top: 64px;
    border-top: 1px solid var(--line);
}

.hero-line svg {
    display: block;
    width: 100%;
    height: 120px;
}

.grow-path {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: draw 2.4s ease forwards 0.3s;
}

.grow-area {
    fill: url(#mintgrad);
    opacity: 0;
    animation: fadein 1.4s ease forwards 1.8s;
}

.grow-dot {
    fill: var(--blue);
    opacity: 0;
    animation: fadein 0.5s ease forwards 2.4s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadein {
    to {
        opacity: 1;
    }
}

/* ===== LOGO BAR ===== */
.logos {
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
}

.logos p {
    text-align: center;
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 26px;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-row span {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #9aa0a6;
    letter-spacing: -0.01em;
    flex: 1;
    text-align: center;
    min-width: 110px;
}

/* ===== SERVICES ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -30px rgba(21, 24, 30, 0.34);
    border-color: var(--blue);
}

.card .ic {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.16rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card p {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

/* ===== WHY + STATS ===== */
.why {
    background: var(--ink);
    color: #fff;
}

.why .eyebrow {
    color: #5fd6a6;
}

.why .eyebrow::before {
    background: #5fd6a6;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.why h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    line-height: 1.1;
    margin: 16px 0 18px;
}

.why .lead {
    color: #aeb4be;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item .n {
    font-family: "Space Mono", monospace;
    color: #5fd6a6;
    font-size: 0.85rem;
    padding-top: 3px;
}

.why-item h4 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 1.08rem;
    margin-bottom: 4px;
}

.why-item p {
    color: #9097a1;
    font-size: 0.95rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat .num {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.9rem);
    letter-spacing: -0.02em;
    color: #fff;
}

.stat .num .u {
    color: #5fd6a6;
}

.stat .lab {
    color: #9097a1;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ===== PROCESS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step {
    position: relative;
    padding-top: 26px;
    border-top: 2px solid var(--ink);
}

.step .sn {
    font-family: "Space Mono", monospace;
    font-size: 0.8rem;
    color: var(--blue-deep);
    letter-spacing: 0.1em;
}

.step h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.22rem;
    margin: 12px 0 8px;
    letter-spacing: -0.01em;
}

.step p {
    color: var(--ink-soft);
    font-size: 0.96rem;
}

/* ===== CASE STUDIES ===== */
.cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.case {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -30px rgba(21, 24, 30, 0.3);
}

.case .tag {
    font-family: "Space Mono", monospace;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    text-transform: uppercase;
}

.case .metric {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 2.3rem;
    letter-spacing: -0.03em;
    color: var(--blue-deep);
    margin: 14px 0 4px;
    line-height: 1;
}

.case .client {
    font-weight: 600;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.case p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    flex: 1;
}

.spark {
    margin-top: 18px;
    height: 42px;
}

.spark path {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    stroke-linecap: round;
}

/* ===== TRUST SECTION ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-grid h3 {
    margin: 12px 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.trust-grid p {
    color: #565C66;
    font-size: 0.95rem;
}

/* ===== FAQ ===== */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    text-align: left;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 1.12rem;
    color: var(--ink);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq .pm {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq[open] .pm {
    transform: rotate(45deg);
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.faq .ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq[open] .ans {
    max-height: 280px;
}

.faq .ans p {
    padding: 0 0 24px;
    color: var(--ink-soft);
    font-size: 1rem;
    max-width: 680px;
}

/* ===== FINAL CTA ===== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: var(--blue);
    color: #fff;
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
}

.cta-box .eyebrow {
    color: #d4f3e4;
}

.cta-box .eyebrow::before {
    background: #d4f3e4;
}

.cta-box h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    line-height: 1.06;
    margin: 18px 0 16px;
}

.cta-box p {
    color: #e6f7ef;
    font-size: 1.12rem;
    max-width: 520px;
    margin: 0 auto 30px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box .btn-ghost {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.cta-box .btn-ghost:hover {
    background: #fff;
    color: var(--blue-deep);
    border-color: #fff;
}

/* ===== TRUST BADGES (CTA ke andar) ===== */
.trust-badges {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: #aeb4be;
    padding: 72px 0 36px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .brand {
    color: #fff;
    margin-bottom: 14px;
}

.foot-about {
    font-size: 0.96rem;
    max-width: 300px;
    line-height: 1.6;
}

.foot-col h5 {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.foot-col a {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 10px;
    transition: color 0.15s ease;
}

.foot-col a:hover {
    color: #fff;
}

/* ===== LLC TRUST BADGE (Footer) ===== */
.llc-badge {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.llc-badge .badge-blue {
    background: rgba(37, 99, 235, 0.12);
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid rgba(37, 99, 235, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.llc-badge .badge-gray {
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== LEGAL INFO ===== */
.legal-info {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-info p {
    font-size: 0.7rem;
    color: #6b7f99;
    line-height: 1.6;
}

.legal-info strong {
    color: #94a3b8;
}

.legal-info .address {
    font-size: 0.65rem;
    color: #4a5a70;
}

.foot-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 28px;
    font-size: 0.86rem;
}

.foot-bottom .socials {
    display: flex;
    gap: 18px;
}

.foot-bottom a:hover {
    color: #fff;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .cards,
    .cases,
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }
    .wrap {
        padding: 0 20px;
    }
    .section {
        padding: 68px 0;
    }
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--paper);
        padding: 20px 24px;
        gap: 18px;
        border-bottom: 1px solid var(--line);
    }
    .cards,
    .cases,
    .steps,
    .stats,
    .foot-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 48px 26px;
    }
    .logo-row span {
        flex: 0 0 40%;
        font-size: 1.05rem;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .form-submit-row .btn-primary {
        width: 100%;
        text-align: center;
    }
    .form-submit-row .form-note {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .grow-path {
        stroke-dashoffset: 0;
    }
    .grow-area,
    .grow-dot {
        opacity: 1;
    }
}
/* ===== MOBILE FIX (360px and below) ===== */
@media (max-width: 360px) {
    /* Hero Section */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    .hero .lead {
        font-size: 0.9rem !important;
    }

    /* Form */
    .form-card {
        padding: 16px !important;
        margin: 0 4px !important;
    }
    .form-row {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .form-card .btn-primary {
        font-size: 0.8rem !important;
        padding: 12px !important;
    }

    /* Team Image */
    .hero-right img {
        min-height: 180px !important;
        height: 180px !important;
        object-fit: cover !important;
    }
    .hero-right .trust-stats {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    .hero-right .trust-stats div {
        flex: 1 1 30% !important;
        text-align: center !important;
    }

    /* Services */
    .cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .card {
        padding: 18px !important;
    }

    /* Why Us + Stats */
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
    .stat .num {
        font-size: 1.8rem !important;
    }

    /* Process */
    .steps {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Trust Section */
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* FAQ */
    .faq summary {
        font-size: 0.95rem !important;
        padding: 16px 0 !important;
    }
    .faq .ans p {
        font-size: 0.9rem !important;
    }

    /* CTA */
    .cta-box {
        padding: 32px 16px !important;
    }
    .cta-box h2 {
        font-size: 1.6rem !important;
    }
    .cta-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .cta-actions .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Footer */
    .foot-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .foot-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
    .foot-bottom .socials {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}
/* ===== MOBILE FIX (360px and below - covers iPhone SE, Galaxy S8, Fold) ===== */
@media (max-width: 360px) {
    /* Hero Section */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    .hero .lead {
        font-size: 0.9rem !important;
    }

    /* Form */
    .form-card {
        padding: 16px !important;
        margin: 0 4px !important;
    }
    .form-row {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .form-card .btn-primary {
        font-size: 0.8rem !important;
        padding: 12px !important;
    }

    /* Team Image */
    .hero-right img {
        min-height: 180px !important;
        height: 180px !important;
        object-fit: cover !important;
    }
    .hero-right .trust-stats {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    .hero-right .trust-stats div {
        flex: 1 1 30% !important;
        text-align: center !important;
    }

    /* Services */
    .cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .card {
        padding: 18px !important;
    }

    /* Why Us + Stats */
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
    .stat .num {
        font-size: 1.8rem !important;
    }

    /* Process */
    .steps {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Trust Section */
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* FAQ */
    .faq summary {
        font-size: 0.95rem !important;
        padding: 16px 0 !important;
    }
    .faq .ans p {
        font-size: 0.9rem !important;
    }

    /* CTA */
    .cta-box {
        padding: 32px 16px !important;
    }
    .cta-box h2 {
        font-size: 1.6rem !important;
    }
    .cta-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .cta-actions .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Footer */
    .foot-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .foot-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
    .foot-bottom .socials {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}
