/* CSS CUSTOM PROPERTIES */
:root {
    --bg-base: #FFFFFF;
    --bg-surface: #F7F9FC;
    --bg-card: #FFFFFF;
    --brand-blue: #1E65B0;
    --brand-blue-30: rgba(30, 101, 176, 0.30);
    --brand-green: #4EBF3A;
    --gold: #1E65B0;
    --gold-30: rgba(30, 101, 176, 0.30);
    --text-primary: #111827;
    --text-muted: #4B5563;
    --text-dim: #9CA3AF;
    --border: #E5E7EB;
    --radius-card: 16px;
    --radius-pill: 100px;
    --max-w: 1320px;
    --pad-x: clamp(24px, 4vw, 48px);
    --section-py: clamp(80px, 10vw, 140px);
    --bg-dark-section: #0D1B2A;
    --c-accent: var(--brand-blue);
}

/* BASE RESET & STYLES */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* scroll-behavior: smooth removed — conflicts with GSAP ScrollTrigger pinning */
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: none;
}

/* BUTTONS & PILLS */
.cta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.cta-pill-primary {
    background-color: var(--brand-blue);
    color: #FFFFFF;
}

.cta-pill-primary:hover {
    background-color: #1756A0;
    box-shadow: 0 0 16px rgba(30, 101, 176, 0.35);
}

.cta-pill-secondary {
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
}

.cta-pill-secondary:hover {
    background-color: var(--brand-blue);
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(30, 101, 176, 0.2);
}

/* CONTAINER */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    width: 100%;
}

/* IMAGE PLACEHOLDERS */
.img-placeholder {
    background: #E8EEF4;
    border: 1px solid #D1D9E6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.img-placeholder .placeholder-text {
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    color: #94A3B8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    user-select: none;
}

/* CUSTOM CURSOR */
#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--brand-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--brand-blue);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    will-change: transform, width, height;
}

@media (hover: none) or (pointer: coarse) {
    body {
        cursor: auto;
    }

    #cursor-dot,
    #cursor-ring {
        display: none;
    }
}

/* SECTION 01 - NAV */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(30, 101, 176, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-item {
    opacity: 0;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #4B5563;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    padding: 10px 24px;
    background-color: var(--brand-blue);
    color: #FFFFFF;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
}

.nav-cta:hover {
    background-color: #1756A0;
    box-shadow: 0 0 12px rgba(30, 101, 176, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 20px;
    height: 1px;
    background-color: #1F2937;
}

/* SECTION 02 - HERO */
.hero {
    height: 100svh;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 45% 55%;
}

.hero-content {
    padding-top: 180px;
    padding-left: var(--pad-x);
    padding-right: 40px;
    display: flex;
    flex-col: column;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 7vw, 88px);
    color: var(--text-primary);
    line-height: 0.95;
    margin-bottom: 28px;
}

.hero-headline span.italic {
    font-style: italic;
}

.hero-body {
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.scroll-label {
    position: absolute;
    bottom: 48px;
    left: var(--pad-x);
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: left bottom;
    font-size: 10px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: #E8EEF4;
    opacity: 0;
    transform: scale(1.06);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #FFFFFF 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* SECTION 03 - TRUST STRIP */
.trust-strip {
    background-color: var(--bg-surface);
    padding: 28px var(--pad-x);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    color: var(--brand-blue);
}

.trust-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background-color: var(--brand-blue);
    opacity: 0.25;
}

/* SECTION 04 - SERVICES GRID */
.services {
    padding: var(--section-py) 0;
    background-color: var(--bg-base);
}

.services-header {
    margin-bottom: 60px;
}

.services-title {
    font-size: clamp(40px, 5vw, 56px);
    margin-bottom: 16px;
}

.services-subline {
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.service-card {
    background-color: #FFFFFF;
    padding: 40px 36px 80px 36px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(50px);
}

.service-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 101, 176, 0.08);
    z-index: 2;
}

.service-index {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: rgba(30, 101, 176, 0.18);
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .service-index {
    color: rgba(30, 101, 176, 0.7);
}

.service-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 12px 0 8px 0;
}

.service-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-explore {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-blue);
    position: absolute;
    bottom: 24px;
    right: 28px;
}

/* SECTION 05 - ABOUT SPLIT */
.about {
    padding: var(--section-py) 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 580px;
    border-radius: 12px;
    background: #E8EEF4;
    border: 1px solid #D1D9E6;
    opacity: 0;
    transform: translateX(-60px);
}

.about-stat-overlay {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--brand-blue);
    padding: 24px 28px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30, 101, 176, 0.35);
    z-index: 10;
}

.about-stat-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: #FFFFFF;
    line-height: 1;
}

.about-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.about-content {
    padding-left: clamp(40px, 5vw, 80px);
    opacity: 0;
    transform: translateX(60px);
}

.about-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-title {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 28px;
    line-height: 1.1;
}

.about-body p {
    margin-bottom: 24px;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
}

.about-inline-stat {
    display: flex;
    flex-direction: column;
}

.about-inline-value {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1;
}

.about-inline-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.about-cta:hover {
    color: #1756A0;
}

/* SECTION 06 - HORIZONTAL SCROLL PANELS */
.horizontal-scroll-container {
    position: relative;
    width: 100%;
    background-color: var(--bg-base);
}

.track {
    display: flex;
    width: 400vw;
    height: 100vh;
    will-change: transform;
}

.panel {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 50% 50%;
    position: relative;
}

.panel-visual {
    height: 100%;
    background: #E8EEF4;
    border-right: 1px solid var(--border);
}

.panel-content {
    padding: clamp(60px, 6vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--bg-base);
}

.panel-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 120px;
    color: rgba(30, 101, 176, 0.06);
    position: absolute;
    top: 40px;
    right: 60px;
    line-height: 1;
    user-select: none;
}

.panel-title {
    font-size: clamp(48px, 5vw, 64px);
    margin-bottom: 24px;
    clip-path: inset(100% 0 0 0);
}

.panel-body {
    max-width: 460px;
    opacity: 0;
    transform: translateY(20px);
}

/* SECTION 06 - PROCESS (HOW IT WORKS) */
.process {
    padding: var(--section-py) 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.process-header {
    text-align: left;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    padding: 32px;
    background-color: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(30, 101, 176, 0.1);
    position: absolute;
    top: 24px;
    right: 32px;
    line-height: 1;
}

.step-title {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SECTION 07 - WHY CHOOSE US */
.why-us {
    padding: var(--section-py) 0;
    background-color: var(--bg-base);
    border-top: 1px solid var(--border);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: 700;
}

.why-list strong {
    color: var(--text-primary);
}

.why-visual {
    height: 500px;
    border-radius: 16px;
    background: #E8EEF4;
    border: 1px solid #D1D9E6;
}

/* SECTION 07 - TESTIMONIALS */
.testimonials {
    padding: var(--section-py) 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-title {
    font-size: 44px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(60px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.quote-icon {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    color: var(--brand-blue);
    opacity: 0.6;
    line-height: 0.5;
    margin-bottom: 16px;
    user-select: none;
}

.testimonial-text {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-blue);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.author-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* SECTION 08 - CTA BANNER */
.cta-banner {
    padding: var(--section-py) 0;
    background-color: var(--bg-dark-section);
    border-top: none;
    position: relative;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.cta-text-col {
    text-align: left;
}

.cta-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(78, 191, 58, 0.9);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.cta-headline {
    font-size: clamp(36px, 4vw, 52px);
    max-width: 560px;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.cta-subtext {
    font-size: 16px;
    max-width: 480px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

.cta-action-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-banner-btn {
    padding: 18px 48px;
    font-size: 16px;
}

.cta-direct-msg {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}


/* SECTION 09 - FOOTER */
footer {
    background-color: var(--bg-dark-section);
    border-top: none;
    padding: 60px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
    color: var(--brand-green);
    border-color: var(--brand-green);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-content {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-image-wrapper {
        height: 60vh;
    }

    .hero-image-wrapper::before {
        background: linear-gradient(to top, #FFFFFF 0%, transparent 60%);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-visual {
        height: 480px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    /* Solid header on mobile to prevent logo contrast issues */
    header {
        background-color: rgba(255, 255, 255, 0.98) !important;
        border-bottom: 1px solid rgba(30, 101, 176, 0.12) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06) !important;
    }

    /* Navigation menu collapse to hamburger icon placeholder */
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--bg-base);
        padding: 24px var(--pad-x) 100px var(--pad-x);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        align-items: flex-start;
        gap: 20px;
    }

    .nav-actions.active {
        display: flex;
        position: absolute;
        top: 270px;
        left: var(--pad-x);
        z-index: 1000;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .hamburger span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Hero adaptations */
    .hero-image-wrapper {
        height: 25vh;
        grid-row: 1;
        /* Place image at top on mobile */
    }

    .hero-content {
        padding-top: 24px;
        padding-bottom: 40px;
        grid-row: 2;
    }

    .hero-headline {
        font-size: clamp(32px, 9vw, 44px);
        margin-bottom: 16px;
    }
    
    .hero-body {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-actions .cta-pill {
        width: 100%;
    }

    .scroll-label {
        display: none;
    }

    /* Strip, grids, cards adaptations */
    .trust-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-logos {
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-visual {
        height: 300px;
    }

    /* Disable Pinning on Horizontal Scroll Panels (convert to vertical stack) */
    .track {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
    }

    .panel {
        width: 100% !important;
        height: auto !important;
        grid-template-columns: 1fr;
    }

    .panel-visual {
        height: 40vh;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .panel-content {
        padding: 40px 24px;
        height: auto;
    }

    .panel-title {
        clip-path: none !important;
        font-size: clamp(32px, 6vw, 48px);
    }

    .panel-body {
        opacity: 1 !important;
        transform: none !important;
    }

    .panel-number {
        top: 20px;
        right: 24px;
        font-size: 80px;
    }

    /* Stats Overlay Mobile */
    .about-stat-overlay {
        bottom: -16px;
        right: 16px;
        padding: 16px 20px;
    }

    .about-stat-value {
        font-size: 40px;
    }

    /* CTA Banner Mobile */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-text-col {
        text-align: center;
    }

    .cta-headline {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer */
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* SECTION - FAQ */
.faq {
    padding: var(--section-py) 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(30, 101, 176, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    border-color: var(--brand-blue);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--brand-blue);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 32px 32px 32px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-intro {
        position: relative;
        top: 0;
    }
}

/* SECTION - CONTACT */
#contact {
    padding: var(--section-py) 0;
    background-color: var(--bg-base);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact-item-val {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.contact-item-val:hover {
    color: var(--brand-blue);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Form Styles */
.contact-form {
    background-color: var(--bg-surface);
    padding: 48px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--bg-base);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(30, 101, 176, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 16px;
}

.form-submit:hover {
    background-color: #164f8a;
}

.form-privacy {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}