﻿/* ══════════════════════════════════════════════
   الفهد العربي — Institutional Authority Theme
   Direction: deep navy / warm gold / clean type
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Core Palette */
    --navy: #0B1628;
    --navy-2: #111E35;
    --navy-3: #162440;
    --navy-light: #1E3055;
    --gold: #B8922E;
    --gold-light: #D4A94A;
    --gold-pale: #F5E6C0;
    --gold-dim: rgba(184,146,46,.12);
    --gold-glow: rgba(184,146,46,.22);
    /* Surface */
    --white: #FFFFFF;
    --off: #F7F8FB;
    --bg: #F2F5FA;
    --border: #DDE3EE;
    --border-dark: rgba(255,255,255,.08);
    /* Text */
    --text: #0D1B2E;
    --muted: #5A6E8A;
    --light: rgba(255,255,255,.55);
    /* Accent */
    --green: #0B7A4A;
    --green-bg: rgba(11,122,74,.08);
    /* Typographic scale */
    --font-display: 'Tajawal', 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
    /* Geometry */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    /* Shadows — structural, not decorative */
    --shadow-sm: 0 1px 4px rgba(11,22,40,.07), 0 4px 16px rgba(11,22,40,.05);
    --shadow: 0 2px 8px rgba(11,22,40,.08), 0 12px 40px rgba(11,22,40,.1);
    --shadow-lg: 0 4px 16px rgba(11,22,40,.1), 0 24px 64px rgba(11,22,40,.14);
    --shadow-gold: 0 6px 28px rgba(184,146,46,.28);
    --ease: cubic-bezier(.4,0,.2,1);
    --t: .2s;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ══════ SCROLL PROGRESS ══════ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 9999;
    pointer-events: none;
}

#scroll-progress-fill {
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width .06s linear;
}

/* ══════ UTILITY LABELS ══════ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid rgba(184,146,46,.25);
    font-size: .68rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
    letter-spacing: .8px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

    .section-label.white {
        background: rgba(255,255,255,.07);
        color: rgba(255,255,255,.65);
        border-color: rgba(255,255,255,.14);
    }

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.65rem,3vw,2.3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}

.section-sub {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.9;
    max-width: 520px;
}

.section-intro {
    margin-bottom: 56px;
}

/* ══════ REVEAL ══════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.97);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

    .reveal.visible, .reveal-scale.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

/* ══════ BUTTONS ══════ */
.btn-lift {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .95rem;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    will-change: transform;
}

    .btn-lift:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .btn-lift:active {
        transform: translateY(-1px) scale(.99);
    }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

    .btn-gold:hover {
        box-shadow: 0 10px 36px rgba(184,146,46,.42);
        color: var(--navy);
    }

.btn-ghost-white {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.8);
}

    .btn-ghost-white:hover {
        background: rgba(255,255,255,.11);
        border-color: rgba(255,255,255,.32);
        color: #fff;
    }

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

    .btn-white:hover {
        box-shadow: 0 12px 36px rgba(0,0,0,.18);
        color: var(--navy);
    }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 68px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background .3s, box-shadow .3s, border-color .3s;
    border-bottom: 1px solid transparent;
}

    .navbar.scrolled {
        background: rgba(11,22,40,.97);
        backdrop-filter: blur(20px);
        border-bottom-color: rgba(184,146,46,.15);
        box-shadow: 0 1px 0 rgba(184,146,46,.1);
    }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 3px 12px rgba(184,146,46,.3);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    flex-shrink: 0;
}

    .nav-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 4px;
    }

    .nav-logo i {
        font-size: 1.1rem;
        color: var(--navy);
    }

    .nav-logo:hover {
        transform: scale(1.06);
        box-shadow: 0 6px 20px rgba(184,146,46,.42);
    }

.nav-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.2px;
}

    .nav-name small {
        font-size: .58rem;
        color: var(--gold-light);
        font-weight: 500;
        display: block;
        letter-spacing: .5px;
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    font-size: .8rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: transform var(--t) var(--ease), box-shadow var(--t), opacity var(--t);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px) scale(.95);
}

.navbar.scrolled .nav-cta {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 22px rgba(184,146,46,.45);
    color: var(--navy);
}

.nav-staff {
    font-size: .75rem;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--t), border-color var(--t), transform var(--t) var(--ease);
}

    .nav-staff:hover {
        color: var(--gold-light);
        border-color: rgba(184,146,46,.35);
        transform: translateY(-2px);
    }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 130px 5% 100px;
    background-image: url('/uploads/images/herosectionbg.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(7,12,24,0.88);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 2;
        background: radial-gradient(ellipse 70% 60% at 50% 42%, rgba(184,146,46,.07) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: linear-gradient(rgba(184,146,46,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(184,146,46,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}

.hero-orb {
    display: none;
}

#hero-particles {
    display: none;
}

.hero-particle {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184,146,46,.1);
    color: var(--gold-light);
    border: 1px solid rgba(184,146,46,.28);
    padding: 7px 20px;
    border-radius: 99px;
    font-size: .73rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: .5px;
    animation: fadeInDown .7s ease both;
}

    .hero-eyebrow .dot {
        width: 6px;
        height: 6px;
        background: var(--gold-light);
        border-radius: 50%;
        animation: blink 2.5s infinite;
    }

@keyframes blink {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .25;
        transform: scale(1.6);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem,5.5vw,4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 22px;
    letter-spacing: -.5px;
    animation: fadeInUp .8s .1s ease both;
}

    .hero h1 .highlight {
        position: relative;
        color: var(--gold-light);
        -webkit-text-fill-color: var(--gold-light);
    }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
            border-radius: 2px;
        }

.hero-sub {
    font-size: 1.04rem;
    color: rgba(255,255,255,.55);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 2;
    animation: fadeInUp .8s .2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp .8s .3s ease both;
}

.hero-trust-line {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp .8s .4s ease both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .71rem;
    color: rgba(255,255,255,.35);
    font-weight: 600;
}

    .hero-trust-item i {
        color: var(--gold);
        font-size: .8rem;
    }

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.2);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1.5s 1s ease both;
}

.scroll-hint-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(184,146,46,.5), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%,100% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 64px;
    border-top: 1px solid rgba(184,146,46,.15);
    animation: fadeInUp .8s .45s ease both;
}

.hero-stat {
    padding: 24px 36px;
    border-left: 1px solid rgba(184,146,46,.12);
    text-align: center;
}

    .hero-stat:last-child {
        border-left: none;
    }

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    display: inline-block;
}

.hero-stat-label {
    font-size: .67rem;
    color: rgba(255,255,255,.32);
    margin-top: 6px;
    letter-spacing: .3px;
}

/* ══════════════════════════════════
   IMAGE MARQUEE — WHITE SECTION
══════════════════════════════════ */
.img-marquee-section {
    background: #ffffff;
    border-top: 1px solid #eef0f5;
    border-bottom: 1px solid #eef0f5;
    padding: 0 0 28px 0;
    overflow: hidden;
    position: relative;
}

    /* White fade from edges */
    .img-marquee-section::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to left, #ffffff, transparent);
    }

    .img-marquee-section::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to right, #ffffff, transparent);
    }

/* Title above marquee */
.img-marquee-title {
    text-align: center;
    padding: 22px 5% 18px;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 3;
}

    .img-marquee-title::before,
    .img-marquee-title::after {
        content: '';
        height: 1px;
        width: 60px;
        background: var(--border);
        display: inline-block;
    }

.img-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    align-items: center;
    animation: imgMarquee 18s linear infinite;
    position: relative;
    z-index: 1;
}

    .img-marquee-track:hover {
        animation-play-state: paused;
    }

@keyframes imgMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.img-marquee-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 2px 12px rgba(11,22,40,.07);
    border: 1.5px solid #eaecf3;
    overflow: hidden;
    /* Always show full color — no greyscale */
    transition: box-shadow .3s, border-color .3s, transform .3s var(--ease);
}

    .img-marquee-item:hover {
        box-shadow: 0 8px 28px rgba(11,22,40,.12);
        border-color: rgba(184,146,46,.3);
        transform: translateY(-3px) scale(1.03);
    }

    .img-marquee-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        /* Full color always — no filter */
        filter: none;
        transition: transform .3s var(--ease);
    }

    .img-marquee-item:hover img {
        transform: scale(1.05);
    }

/* ══════ TRUST STRIP ══════ */
.trust-strip {
    background: var(--off);
    border-bottom: 1px solid var(--border);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .74rem;
    color: var(--muted);
    font-weight: 700;
}

    .trust-item i {
        color: var(--navy-light);
        font-size: .9rem;
    }

/* ══════════════════════════════════
   FORM SECTION
══════════════════════════════════ */
.form-section {
    background: var(--bg);
    padding: 90px 5%;
    position: relative;
}

    .form-section::before {
        content: 'مرخصة ومعتمدة';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) rotate(-15deg);
        font-family: var(--font-display);
        font-size: 9rem;
        font-weight: 900;
        color: rgba(11,22,40,.03);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }

    .form-section > * {
        position: relative;
        z-index: 1;
    }

.form-split {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 40px;
}

.form-trust-panel {
    background: var(--navy);
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}

    .form-trust-panel::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

    .form-trust-panel::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 1px solid rgba(184,146,46,.1);
    }

.form-trust-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 14px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

    .form-trust-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .form-trust-logo i {
        font-size: 1.4rem;
        color: var(--navy);
    }

.form-trust-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.form-trust-sub {
    font-size: .78rem;
    color: rgba(255,255,255,.42);
    line-height: 1.8;
    margin-bottom: 36px;
}

.form-trust-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.form-trust-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-trust-point-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(184,146,46,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--gold-light);
    margin-top: 2px;
}

.form-trust-point-text {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
}

    .form-trust-point-text strong {
        color: rgba(255,255,255,.85);
        font-weight: 700;
        display: block;
        margin-bottom: 2px;
    }

.form-trust-rating {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.form-trust-stars {
    color: #F59E0B;
    letter-spacing: 2px;
    font-size: .9rem;
}

.form-trust-score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin: 4px 0;
}

.form-trust-count {
    font-size: .68rem;
    color: rgba(255,255,255,.3);
    font-weight: 600;
}

.form-body {
    padding: 40px 36px;
    background: var(--white);
}

.form-body-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

    .form-body-header h2 {
        font-family: var(--font-display);
        font-size: 1.15rem;
        font-weight: 900;
        color: var(--text);
        margin-bottom: 4px;
    }

    .form-body-header p {
        font-size: .78rem;
        color: var(--muted);
    }

.field-label {
    font-size: .8rem;
    font-weight: 700;
    color: #2D3A50;
    margin-bottom: 7px;
    display: block;
}

.field-required {
    color: #D92B2B;
    margin-right: 2px;
}

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: .88rem;
    width: 100%;
    background: var(--off);
    color: var(--text);
    outline: none;
    appearance: none;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--navy-light);
        box-shadow: 0 0 0 3px rgba(22,36,64,.1);
        background: var(--white);
    }

    .form-control::placeholder {
        color: #B0BCCC;
    }

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    width: 100%;
    font-family: var(--font-display);
    font-size: .98rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    box-shadow: 0 4px 18px rgba(11,22,40,.22);
    position: relative;
    overflow: hidden;
}

    .btn-submit::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 40%, rgba(184,146,46,.12));
        pointer-events: none;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(11,22,40,.3);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit:disabled {
        opacity: .65;
        cursor: not-allowed;
        transform: none;
    }

.form-note {
    text-align: center;
    font-size: .7rem;
    color: #9AACBF;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.error-banner {
    background: #FFF5F5;
    border: 1.5px solid #FECACA;
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    color: #C0392B;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    border: 1px solid rgba(11,122,74,.2);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: .73rem;
    font-weight: 700;
    margin-bottom: 0;
}

.rating-stars {
    color: #F59E0B;
    letter-spacing: 1px;
    font-size: .8rem;
}

.rating-text {
    color: var(--green);
}

.form-card {
    display: none;
}

/* ══════ WHY US ══════ */
.why-section {
    background: var(--white);
    padding: 100px 5%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    background: var(--white);
    transition: border-color var(--t), box-shadow var(--t), transform var(--t) var(--ease);
    position: relative;
    overflow: hidden;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s var(--ease);
    }

    .why-card:hover {
        border-color: rgba(184,146,46,.28);
        box-shadow: 0 12px 36px rgba(11,22,40,.08);
        transform: translateY(-4px);
    }

        .why-card:hover::before {
            transform: scaleX(1);
        }

.why-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .92rem;
    margin-bottom: 8px;
}

.why-card-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.85;
}

/* ══════ LOGOS MARQUEE ══════ */
.logos-section {
    background: var(--off);
    padding: 60px 5%;
    border-top: 1px solid var(--border);
}

.logos-heading {
    text-align: center;
    font-size: .72rem;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.logos-track-wrap {
    overflow: hidden;
    position: relative;
}

    .logos-track-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 60px;
        z-index: 2;
        background: linear-gradient(to left, var(--off), transparent);
        pointer-events: none;
    }

    .logos-track-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 60px;
        z-index: 2;
        background: linear-gradient(to right, var(--off), transparent);
        pointer-events: none;
    }

.logos-track {
    display: flex;
    gap: 24px;
    width: max-content;
    align-items: center;
    animation: marquee 30s linear infinite;
}

    .logos-track:hover {
        animation-play-state: paused;
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 20px;
    font-weight: 800;
    font-size: .8rem;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color var(--t), box-shadow var(--t), transform var(--t) var(--ease);
}

    .logo-pill:hover {
        border-color: rgba(184,146,46,.3);
        box-shadow: 0 4px 18px rgba(11,22,40,.06);
        transform: translateY(-2px);
    }

    .logo-pill i {
        font-size: 1rem;
        color: var(--navy-light);
    }

.logo-verified {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green);
    font-size: .6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 99px;
}

/* ══════ STEPS ══════ */
.steps-section {
    background: var(--navy);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

    .steps-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
    }

    .steps-section .section-heading {
        color: var(--white);
    }

    .steps-section .section-sub {
        color: rgba(255,255,255,.38);
    }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(185px,1fr));
    gap: 12px;
    margin-top: 52px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 26px 20px;
    transition: background var(--t), border-color var(--t), transform var(--t) var(--ease);
}

    .step-card:hover {
        background: rgba(255,255,255,.05);
        border-color: rgba(184,146,46,.2);
        transform: translateY(-4px);
    }

.step-num {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: .85rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: .88rem;
    margin-bottom: 8px;
}

.step-desc {
    font-size: .76rem;
    color: rgba(255,255,255,.35);
    line-height: 1.9;
}

/* ══════ TESTIMONIALS ══════ */
.testimonials-section {
    background: var(--bg);
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.rating-big {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.rating-stars-row {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-sub {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
}

.rating-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

.rating-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.r-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: .72rem;
    font-weight: 700;
    color: #374151;
}

    .r-badge i {
        color: var(--navy-light);
    }

.mq-wrap {
    position: relative;
    margin-top: 0;
}

    .mq-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 80px;
        z-index: 2;
        background: linear-gradient(to left,var(--bg),transparent);
        pointer-events: none;
    }

    .mq-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 80px;
        z-index: 2;
        background: linear-gradient(to right,var(--bg),transparent);
        pointer-events: none;
    }

.mq-row {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 8px 0;
    margin-bottom: 14px;
}

    .mq-row.row-1 {
        animation: mqForward 40s linear infinite;
    }

    .mq-row.row-2 {
        animation: mqReverse 46s linear infinite;
    }

    .mq-row:hover {
        animation-play-state: paused;
    }

@keyframes mqForward {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes mqReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.tcard {
    width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: border-color var(--t), box-shadow var(--t), transform var(--t) var(--ease);
}

    .tcard:hover {
        border-color: rgba(184,146,46,.25);
        box-shadow: 0 8px 28px rgba(11,22,40,.08);
        transform: translateY(-3px);
    }

.tcard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tcard-stars {
    color: #F59E0B;
    font-size: .78rem;
    letter-spacing: 1px;
}

.tcard-dest {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gold-dim);
    color: var(--gold);
    font-size: .62rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 99px;
}

.tcard-text {
    font-size: .8rem;
    color: #374151;
    line-height: 1.9;
    margin-bottom: 14px;
    font-style: italic;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tcard-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .84rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.tcard-name {
    font-weight: 800;
    font-size: .76rem;
    color: var(--text);
}

.tcard-role {
    font-size: .65rem;
    color: #94A3B8;
    margin-top: 2px;
}

.tcard-verified {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .6rem;
    color: #0B7A4A;
    font-weight: 700;
    margin-top: 3px;
}

/* ══════ TIMELINE ══════ */
.history-section {
    background: var(--navy-2);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

    .history-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
        background-size: 52px 52px;
        pointer-events: none;
    }

.hist-orb {
    display: none;
}

.hist-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.history-section .section-heading {
    color: #fff;
}

.history-section .section-sub {
    color: rgba(255,255,255,.38);
}

.timeline {
    position: relative;
    padding-right: 32px;
    margin-top: 56px;
}

    .timeline::before {
        content: '';
        position: absolute;
        right: 0;
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: linear-gradient(to bottom,transparent,rgba(184,146,46,.3) 8%,rgba(184,146,46,.3) 92%,transparent);
    }

.tl-item {
    position: relative;
    padding-right: 42px;
    padding-bottom: 48px;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

    .tl-item.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .tl-item:last-child {
        padding-bottom: 0;
    }

.tl-dot {
    position: absolute;
    right: -9px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--navy-2);
    border: 2px solid rgba(184,146,46,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .4s;
}

.tl-item.visible .tl-dot {
    border-color: var(--gold);
}

.tl-dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(184,146,46,.3);
    transition: background .4s;
}

.tl-item.visible .tl-dot-inner {
    background: var(--gold);
}

.tl-year {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-dim);
    color: var(--gold-light);
    border: 1px solid rgba(184,146,46,.2);
    font-size: .68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.tl-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: background .2s, border-color .2s;
}

.tl-item.visible:hover .tl-card {
    background: rgba(255,255,255,.05);
    border-color: rgba(184,146,46,.18);
}

.tl-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
}

.tl-icon {
    width: 42px;
    height: 42px;
    background: var(--gold-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.tl-head-text h3 {
    font-family: var(--font-display);
    font-size: .92rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.tl-head-text p {
    font-size: .77rem;
    color: rgba(255,255,255,.38);
    line-height: 1.8;
}

.tl-stats-row {
    display: flex;
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tl-stat {
    flex: 1;
    min-width: 70px;
    text-align: center;
    padding: 4px 6px;
    border-left: 1px solid rgba(255,255,255,.05);
}

    .tl-stat:last-child {
        border-left: none;
    }

.tl-stat-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}

.tl-stat-label {
    font-size: .58rem;
    color: rgba(255,255,255,.25);
    margin-top: 3px;
}

.tl-milestone {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    background: rgba(11,122,74,.12);
    color: #34D399;
    border: 1px solid rgba(11,122,74,.2);
    font-size: .62rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
}

/* ══════ FAQ ══════ */
.faq-section {
    background: var(--white);
    padding: 100px 5%;
}

.faq-list {
    max-width: 740px;
    margin: 52px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t), box-shadow var(--t);
}

    .faq-item.open {
        border-color: rgba(11,22,40,.22);
        box-shadow: 0 4px 20px rgba(11,22,40,.07);
    }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 20px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .9rem;
    color: var(--text);
    user-select: none;
    transition: background var(--t);
}

    .faq-question:hover {
        background: var(--off);
    }

.faq-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--off);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-light);
    font-size: .73rem;
    transition: transform .3s var(--ease), background var(--t), color var(--t);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--navy);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--ease), padding .38s var(--ease);
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 17px;
}

.faq-answer p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.9;
}

.faq-answer .highlight-ans {
    color: var(--navy);
    font-weight: 700;
}

/* ══════ FINAL CTA ══════ */
.cta-section {
    background: var(--navy);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(155deg, transparent 55%, rgba(184,146,46,.06) 55%, rgba(184,146,46,.06) 58%, transparent 58%);
        pointer-events: none;
    }

    .cta-section h2 {
        font-family: var(--font-display);
        font-size: clamp(1.7rem,3vw,2.4rem);
        font-weight: 900;
        color: #fff;
        margin-bottom: 12px;
        position: relative;
    }

    .cta-section p {
        color: rgba(255,255,255,.5);
        font-size: .92rem;
        margin-bottom: 32px;
        position: relative;
    }

/* ══════ FOOTER ══════ */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 32px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-brand-name {
    font-size: .86rem;
    font-weight: 800;
    color: rgba(255,255,255,.38);
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: .74rem;
        color: rgba(255,255,255,.25);
        text-decoration: none;
        transition: color var(--t);
    }

        .footer-links a:hover {
            color: var(--gold-light);
        }

.footer-copy {
    font-size: .68rem;
    color: rgba(255,255,255,.15);
}

/* ══════ WHATSAPP FAB ══════ */
.wp-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 400;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 6px 28px rgba(37,211,102,.28);
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .84rem;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

    .wp-fab:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 36px rgba(37,211,102,.38);
        color: #fff;
    }

/* ══════ KEYFRAMES ══════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══════ RESPONSIVE ══════ */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    min-width: 0;
}

@media (max-width: 768px) {
    .form-split {
        grid-template-columns: 1fr;
    }

    .form-trust-panel {
        padding: 28px 24px;
    }

    .form-trust-rating {
        display: none;
    }

    .form-body {
        padding: 24px;
    }

    .hero {
        padding: 110px 5% 80px;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .hero-stat {
        padding: 16px 18px;
    }

    .nav-wp .wp-text, .wp-fab .wp-text {
        display: none;
    }

    .wp-fab {
        padding: 13px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .nav-cta span {
        display: none;
    }

    .rating-row {
        gap: 14px;
    }

    .rating-divider {
        display: none;
    }

    .why-section, .dest-section, .steps-section, .testimonials-section,
    .cta-section, .faq-section, .logos-section, .history-section {
        padding: 72px 5%;
    }

    .hero-trust-line {
        gap: 14px;
    }

    .navbar {
        padding: 0 4%;
        height: 60px;
    }

    .nav-name {
        font-size: .88rem;
    }

        .nav-name small {
            font-size: .5rem;
        }

    .nav-logo {
        width: 36px;
        height: 36px;
    }

    .nav-staff {
        display: flex;
        font-size: .68rem;
        padding: 6px 10px;
        gap: 4px;
        white-space: nowrap;
    }

        .nav-staff i {
            font-size: .8rem;
        }

    .hero {
        padding: 100px 4% 70px;
        min-height: 100svh;
    }

    .hero-inner {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.6rem,6vw,2rem);
        letter-spacing: -.2px;
    }

    .hero-sub {
        font-size: .88rem;
        margin-bottom: 28px;
    }

    .hero-eyebrow {
        font-size: .65rem;
        padding: 6px 14px;
        gap: 7px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 36px;
        border-top: 1px solid rgba(184,146,46,.15);
        width: 100%;
    }

    .hero-stat {
        padding: 16px 12px;
        border-left: 1px solid rgba(184,146,46,.12);
        border-bottom: 1px solid rgba(184,146,46,.12);
        text-align: center;
    }

        .hero-stat:nth-child(3), .hero-stat:nth-child(4) {
            border-bottom: none;
        }

        .hero-stat:nth-child(even) {
            border-left: none;
        }

    .hero-stat-num {
        font-size: 1.6rem;
    }

    .hero-stat-label {
        font-size: .6rem;
    }

    .hero-trust-line {
        gap: 10px 16px;
        margin-top: 14px;
    }

    .hero-trust-item {
        font-size: .66rem;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn-lift {
        padding: 11px 22px;
        font-size: .88rem;
    }

    .trust-strip {
        padding: 10px 4%;
        gap: 12px 20px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .trust-strip::-webkit-scrollbar {
            display: none;
        }

    .trust-item {
        flex-shrink: 0;
        font-size: .68rem;
    }

    .form-section {
        padding: 60px 4%;
    }

    .form-split {
        grid-template-columns: 1fr;
        border-radius: var(--radius);
        margin-top: 28px;
    }

    .form-trust-panel {
        padding: 24px 20px;
    }

    .form-body {
        padding: 24px 20px;
    }

    .why-section {
        padding: 60px 4%;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-card {
        padding: 20px 14px;
    }

    .why-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .why-card-title {
        font-size: .82rem;
    }

    .why-card-desc {
        font-size: .74rem;
    }

    .logos-section {
        padding: 48px 0;
    }

    .steps-section {
        padding: 60px 4%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step-card {
        padding: 18px 16px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .step-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-title {
        margin-bottom: 4px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-intro {
        padding: 0 4%;
    }

    .rating-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tcard {
        width: 240px;
    }

    .history-section {
        padding: 60px 4%;
    }

    .timeline {
        padding-right: 24px;
    }

    .tl-item {
        padding-right: 32px;
        padding-bottom: 36px;
    }

    .tl-card {
        padding: 16px;
    }

    .tl-card-head {
        flex-direction: column;
        gap: 10px;
    }

    .tl-stats-row {
        flex-wrap: wrap;
    }

    .tl-stat {
        min-width: 60px;
    }

    .faq-section {
        padding: 60px 4%;
    }

    .faq-question {
        font-size: .82rem;
        padding: 14px 16px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.open .faq-answer {
        padding: 0 16px 14px;
    }

    .cta-section {
        padding: 60px 4%;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 24px 4%;
        gap: 12px;
    }

    /* Marquee mobile */
    .img-marquee-item {
        width: 130px;
        height: 75px;
        padding: 10px;
    }

    .img-marquee-title {
        font-size: .65rem;
        padding: 16px 4% 14px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lift {
        justify-content: center;
        width: 100%;
    }

    .hero-trust-line {
        justify-content: center;
    }
}

.img-marquee-section {
    overflow: hidden;
    max-width: 100vw;
}

section, div {
    max-width: 100%;
}

.logos-track-wrap, .mq-wrap {
    overflow: hidden;
    max-width: 100vw;
}
