/* ============================================
   Lone24 Digital — Main Stylesheet
   Brand: Globe/gear/arrow, teal/navy
   Version: 1.0.0
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Brand Colours */
    --navy-dark:     #1B2A4A;
    --teal-primary:  #14B8A6;
    --teal-light:    #2DD4BF;
    --teal-bright:   #5EEAD4;
    --dark-bg:       #0F172A;
    --light-bg:      #F0FDFA;
    --white:         #ffffff;

    /* Teal shades for ripple */
    --teal-10:  rgba(20, 184, 166, 0.10);
    --teal-20:  rgba(20, 184, 166, 0.20);
    --teal-30:  rgba(20, 184, 166, 0.30);
    --teal-50:  rgba(20, 184, 166, 0.50);

    /* Text */
    --text-dark:  #0F172A;
    --text-body:  #374151;
    --text-muted: #6B7280;
    --text-light: #ffffff;

    /* Functional */
    --success: #10B981;
    --error:   #EF4444;
    --warning: #F59E0B;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 110px;
    --container-max:   1200px;
    --container-pad:   24px;

    /* Transitions */
    --transition:      all 0.3s ease;
    --transition-slow: all 0.6s ease;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(15,23,42,0.12), 0 1px 2px rgba(15,23,42,0.08);
    --shadow-md:  0 4px 16px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.08);
    --shadow-lg:  0 20px 48px rgba(15,23,42,0.16), 0 8px 16px rgba(15,23,42,0.08);
    --shadow-teal: 0 8px 32px rgba(20, 184, 166, 0.3);

    /* Radius */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--teal-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--teal-light);
}

a:focus-visible {
    outline: 3px solid var(--teal-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

ul { list-style: none; }

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- Accessibility ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ---------- Section Base ---------- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-primary);
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--teal-10);
    border-radius: 100px;
    border: 1px solid var(--teal-20);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--teal-primary);
    color: var(--white);
    border-color: var(--teal-primary);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.35);
}

.btn-primary:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(20, 184, 166, 0.45);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--teal-primary);
    border-color: var(--teal-primary);
}

.btn-outline:hover {
    background: var(--teal-primary);
    color: var(--white);
    box-shadow: var(--shadow-teal);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-lg {
    font-size: 1.0625rem;
    padding: 15px 32px;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 8px 16px;
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- GDPR Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-top: 1px solid rgba(20, 184, 166, 0.3);
    z-index: 9000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    flex: 1;
    min-width: 250px;
}

.cookie-text svg { flex-shrink: 0; margin-top: 2px; color: var(--teal-primary); }
.cookie-text a { color: var(--teal-light); }
.cookie-text a:hover { color: var(--teal-bright); }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled::before {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo:hover { color: var(--teal-light); }

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-logo-text { color: var(--white); }
.nav-logo-accent { color: var(--teal-primary); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--teal-light);
    background: rgba(20, 184, 166, 0.1);
}

.nav-login {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.nav-cta {
    background: var(--teal-primary);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(20, 184, 166, 0.4);
}

.nav-cta:hover {
    background: var(--teal-light);
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.5);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--navy-dark) 60%, #0D2233 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Ripple Canvas */
.ripple-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

/* Globe Animation */
.globe-wrapper {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 540px;
    height: 540px;
    opacity: 0.18;
    pointer-events: none;
}

.globe {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--teal-primary);
    animation: globeRotate 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(20, 184, 166, 0.5);
    animation-duration: 30s;
}

.ring-2 {
    width: 72%;
    height: 72%;
    border-color: rgba(45, 212, 191, 0.6);
    animation-duration: 20s;
    animation-direction: reverse;
    transform: rotateX(70deg);
}

.ring-3 {
    width: 55%;
    height: 55%;
    border-color: rgba(94, 234, 212, 0.5);
    animation-duration: 15s;
    transform: rotateY(70deg);
}

.globe-core {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(20,184,166,0.25), rgba(27,42,74,0.8));
    border: 2px solid rgba(20, 184, 166, 0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-meridian {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(20, 184, 166, 0.3);
    transform-origin: center;
}

.m1 { transform: translateX(-50%); }
.m2 { transform: translateX(-50%) rotateY(60deg); }
.m3 { transform: translateX(-50%) rotateY(-60deg); }

.globe-equator {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 1px;
    background: rgba(20, 184, 166, 0.3);
}

.globe-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-bright);
    animation: dotPulse 3s ease-in-out infinite;
}

.d1 { top: 30%; left: 35%; animation-delay: 0s; }
.d2 { top: 60%; left: 60%; animation-delay: 1s; }
.d3 { top: 45%; left: 20%; animation-delay: 2s; }

.globe-gear-icon {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 36px;
    height: 36px;
    color: var(--teal-light);
    animation: gearSpin 8s linear infinite;
}

.globe-gear-icon svg { width: 100%; height: 100%; }

.globe-arrow-icon {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 28px;
    height: 28px;
    color: var(--teal-bright);
    animation: arrowPulse 2s ease-in-out infinite;
}

.globe-arrow-icon svg { width: 100%; height: 100%; }

@keyframes globeRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.8); opacity: 0.4; }
}

@keyframes gearSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: 0.4; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: var(--teal-bright);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.1); }
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-bright) 50%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item svg { color: var(--teal-primary); flex-shrink: 0; }

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollHint 2.5s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(20,184,166,0.6), transparent);
}

@keyframes scrollHint {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ---------- Services Section ---------- */
.section-services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(20, 184, 166, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(20, 184, 166, 0.3);
}

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

.service-card--featured {
    background: linear-gradient(160deg, var(--navy-dark) 0%, #162035 100%);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: var(--shadow-md);
}

.service-card--featured .service-title,
.service-card--featured .service-desc,
.service-card--featured .service-features li {
    color: rgba(255,255,255,0.9);
}

.service-card--featured .service-link {
    color: var(--teal-light);
}

.service-card--featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-bright));
}

.service-badge {
    display: inline-block;
    background: var(--teal-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.service-icon {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    color: var(--text-body);
    font-size: 0.875rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(20, 184, 166, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-primary);
    flex-shrink: 0;
}

.service-features li:last-child { border-bottom: none; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--teal-light);
}

/* ---------- How It Works Section ---------- */
.section-hiw {
    background: var(--dark-bg);
    overflow: hidden;
}

.hiw-ripple-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(20,184,166,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(45,212,191,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.section-hiw .section-label { background: rgba(20,184,166,0.15); border-color: rgba(20,184,166,0.3); }
.section-hiw .section-title { color: var(--white); }
.section-hiw .section-subtitle { color: rgba(255,255,255,0.6); }

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.hiw-step {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(20, 184, 166, 0.12);
    line-height: 1;
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

.step-connector {
    position: absolute;
    top: 2.5rem;
    right: -24px;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-primary), rgba(20,184,166,0.2));
    z-index: 1;
}

.hiw-step:last-child .step-connector { display: none; }

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.1);
    border: 1.5px solid rgba(20, 184, 166, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    color: var(--teal-primary);
}

.step-icon svg { width: 28px; height: 28px; }

.hiw-step:hover .step-icon {
    background: rgba(20, 184, 166, 0.2);
    border-color: var(--teal-primary);
    box-shadow: 0 0 20px rgba(20,184,166,0.25);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* ---------- Features Section ---------- */
.section-features { background: var(--light-bg); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(20, 184, 166, 0.25);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 44px;
    height: 44px;
    color: var(--teal-primary);
    margin-bottom: 16px;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Pricing Section ---------- */
.section-pricing {
    background: var(--dark-bg);
    overflow: hidden;
}

.pricing-ripple-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 10% 70%, rgba(20,184,166,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(27,42,74,0.8) 0%, transparent 60%);
    pointer-events: none;
}

.section-pricing .section-label { background: rgba(20,184,166,0.15); border-color: rgba(20,184,166,0.3); }
.section-pricing .section-title { color: var(--white); }
.section-pricing .section-subtitle { color: rgba(255,255,255,0.6); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(20, 184, 166, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: rgba(20, 184, 166, 0.3);
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
}

.pricing-card--featured {
    background: linear-gradient(160deg, rgba(20,184,166,0.12) 0%, rgba(27,42,74,0.5) 100%);
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 1px var(--teal-primary), var(--shadow-teal);
    transform: scale(1.03);
}

.pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-plan {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-primary);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    line-height: 1;
    margin-top: 6px;
}

.price-amount {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    margin-left: 2px;
}

.pricing-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pricing-features {
    margin-top: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child { border-bottom: none; }

.feature-included {
    color: rgba(255,255,255,0.85);
}

.feature-included svg { color: var(--teal-primary); flex-shrink: 0; margin-top: 2px; }

.feature-excluded {
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.15);
}

.feature-excluded svg { color: rgba(255,255,255,0.2); flex-shrink: 0; margin-top: 2px; }

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note svg { color: var(--teal-primary); flex-shrink: 0; }
.pricing-note a { color: var(--teal-light); }
.pricing-note a:hover { color: var(--teal-bright); }

/* ---------- Case Study Section ---------- */
.section-casestudy { background: var(--white); }

.casestudy-card {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: center;
    background: linear-gradient(160deg, var(--navy-dark) 0%, #0D1F3A 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    overflow: hidden;
    position: relative;
}

.casestudy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.casestudy-org {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.casestudy-org-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.casestudy-org-icon svg { width: 100%; height: 100%; }

.casestudy-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.casestudy-type {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.casestudy-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    border-left: 3px solid var(--teal-primary);
    padding-left: 20px;
    margin-bottom: 36px;
}

.casestudy-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.casestudy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.cs-tag {
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    color: var(--teal-light);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
}

.casestudy-cta { align-self: flex-start; }

/* Browser Mockup */
.casestudy-visual {
    position: relative;
}

.browser-mockup {
    background: #1E293B;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20,184,166,0.15);
    position: relative;
}

.browser-bar {
    background: #0F172A;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #10B981; }

.browser-url {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    flex: 1;
    font-family: monospace;
}

.browser-screen {
    padding: 0;
}

.screen-hero {
    background: linear-gradient(135deg, #1B2A4A 0%, #0D2233 100%);
    padding: 24px;
    min-height: 120px;
    position: relative;
}

.screen-nav {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    width: 80%;
    margin-bottom: 16px;
}

.screen-headline {
    height: 12px;
    background: rgba(255,255,255,0.7);
    border-radius: 4px;
    width: 70%;
    margin-bottom: 8px;
}

.screen-subtitle {
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    width: 55%;
    margin-bottom: 14px;
}

.screen-btn {
    height: 20px;
    background: var(--teal-primary);
    border-radius: 4px;
    width: 100px;
}

.screen-content {
    background: white;
    padding: 16px 24px;
}

.screen-block {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    margin-bottom: 8px;
}

.screen-block.short { width: 60%; }

/* ---------- About Section ---------- */
.section-about {
    background: var(--light-bg);
    overflow: hidden;
}

.about-ripple-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(20,184,166,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

.about-content .section-label { display: inline-block; margin-bottom: 14px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-content p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-values {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-primary);
}

.value-icon svg { width: 18px; height: 18px; }

.value-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* About Visual / Card Stack */
.about-visual { position: relative; }

.about-card-stack {
    position: relative;
    height: 380px;
}

.about-stat-card {
    position: absolute;
    background: var(--white);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.about-stat-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--teal-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.card-1 { top: 20px; left: 0; width: 180px; }
.card-2 { top: 100px; right: 20px; width: 200px; }
.card-3 { top: 230px; left: 60px; width: 190px; }

.about-globe-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.mini-globe {
    width: 260px;
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(20, 184, 166, 0.15);
    animation: globeRotate 25s linear infinite;
}

.r1 { width: 100%; height: 100%; animation-duration: 30s; }
.r2 { width: 65%; height: 65%; animation-duration: 18s; animation-direction: reverse; transform: rotateX(60deg); }

.mini-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.08), transparent);
    border: 1px solid rgba(20, 184, 166, 0.12);
}

/* ---------- Contact Section ---------- */
.section-contact { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light-bg);
    border: 1px solid rgba(20, 184, 166, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-primary);
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-detail a:hover { color: var(--teal-primary); }

.contact-login-cta {
    background: var(--light-bg);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.contact-login-cta p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 0;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid rgba(20, 184, 166, 0.12);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.form-group label span[aria-hidden] { color: var(--error); margin-left: 2px; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    appearance: none;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(20, 184, 166, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(107,114,128,0.6);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid rgba(20, 184, 166, 0.3);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--teal-primary);
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox label a { color: var(--teal-primary); }

.field-error {
    font-size: 0.8125rem;
    color: var(--error);
    display: none;
}

.field-error.visible { display: block; }

/* Honeypot */
.honeypot-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Submit button states */
.btn-loading { display: none; }

.contact-form.submitting #submitBtn .btn-text { display: none; }
.contact-form.submitting #submitBtn .btn-loading { display: inline; }
.contact-form.submitting #submitBtn { pointer-events: none; opacity: 0.75; }

/* Success / Error Messages */
.form-success,
.form-error-msg {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
}

.form-success.visible { display: flex; background: rgba(16, 185, 129, 0.1); color: #065F46; border: 1px solid rgba(16,185,129,0.25); }
.form-error-msg.visible { display: flex; background: rgba(239, 68, 68, 0.07); color: #991B1B; border: 1px solid rgba(239,68,68,0.2); }
.form-success svg { color: var(--success); flex-shrink: 0; }
.form-error-msg svg { color: var(--error); flex-shrink: 0; }
.form-error-msg a { color: var(--error); }

/* ---------- Footer ---------- */
.footer {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.footer-ripple-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(20,184,166,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

.footer-brand { max-width: 280px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo:hover { color: var(--teal-light); }

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo-text span { color: var(--teal-primary); }

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 12px;
}

.footer-reg {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8125rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--teal-light); }

.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ---------- Water Ripple Effect (Canvas) ---------- */
/* Handled in JS — canvas fills the hero */

/* Ripple backgrounds (CSS) */
.hiw-ripple-bg,
.pricing-ripple-bg,
.about-ripple-bg,
.footer-ripple-bg {
    pointer-events: none;
}

/* ---------- Responsive ---------- */

/* Tablet — 1024px */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .globe-wrapper { right: -120px; width: 420px; height: 420px; }

    .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 20px; }
    .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .step-connector { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-4px); }
    .casestudy-card { grid-template-columns: 1fr; padding: 48px; gap: 40px; }
    .casestudy-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --container-pad: 20px;
    }

    /* Nav */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: var(--dark-bg);
        border-left: 1px solid rgba(20,184,166,0.15);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 28px 40px;
        gap: 4px;
        transform: translateX(110%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0,0,0,0.4);
        overflow-y: auto;
    }

    .nav-menu.open { transform: translateX(0); }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-cta { width: 100%; justify-content: center; margin-top: 8px; }
    .nav-login { width: 100%; border: 1px solid rgba(20,184,166,0.2); }

    /* Hero */
    .hero { min-height: 100svh; padding: 100px 0 60px; }
    .globe-wrapper { display: none; }
    .hero-title { font-size: clamp(2.25rem, 8vw, 3rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 12px; }

    /* Sections */
    .section-header { margin-bottom: 48px; }
    .services-grid { grid-template-columns: 1fr; max-width: 100%; }
    .hiw-steps { grid-template-columns: 1fr; gap: 36px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .feature-card { padding: 20px 18px; }
    .pricing-grid { max-width: 100%; }
    .casestudy-card { padding: 32px 24px; }
    .casestudy-stats { gap: 16px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hiw-step { padding: 0 8px; }
    .casestudy-stats { flex-wrap: wrap; gap: 12px; }
    .cookie-content { flex-direction: column; align-items: flex-start; }
}

/* ---------- Print Styles ---------- */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body { font-size: 12pt; line-height: 1.5; }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }

    .navbar,
    .cookie-banner,
    .hero-scroll-hint,
    .hero-actions,
    .globe-wrapper,
    .ripple-canvas,
    .casestudy-visual,
    .about-visual,
    .footer {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 20pt 0;
        background: white !important;
    }

    .hero-title,
    .hero-subtitle,
    .hero-badge { color: #000 !important; }
    .text-gradient { -webkit-text-fill-color: #000 !important; color: #000 !important; }

    .section { padding: 20pt 0; page-break-inside: avoid; }

    .services-grid,
    .hiw-steps,
    .features-grid,
    .pricing-grid {
        display: block;
    }

    .service-card,
    .hiw-step,
    .feature-card,
    .pricing-card {
        border: 1pt solid #ccc;
        margin-bottom: 10pt;
        padding: 10pt;
        page-break-inside: avoid;
    }

    .container { max-width: 100%; padding: 0 10pt; }
    h1, h2, h3 { page-break-after: avoid; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1ms !important;
    }
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; }
}
