/* ============================================
   INSIGHTRIX — Premium Light Theme
   Creative Green & White Design
   ============================================ */

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

:root {
    --bg: #fafbf9;
    --bg-secondary: #f0f4ed;
    --bg-hero: #0b1a0f;
    --surface: #ffffff;
    --surface-hover: #f5f8f3;
    --border: rgba(0,0,0,0.06);
    --border-hover: rgba(0,0,0,0.12);

    --text: #1a1d1a;
    --text-secondary: #5a6558;
    --text-muted: #8a9488;
    --text-on-dark: #f0f4ed;

    --green: #0d9f6e;
    --green-light: #10b981;
    --green-dark: #065f46;
    --green-dim: rgba(13,159,110,0.08);
    --green-glow: rgba(16,185,129,0.3);
    --mint: #d1fae5;
    --mint-strong: #a7f3d0;
    --emerald-gradient: linear-gradient(135deg, #10b981, #059669);

    --accent-2: #6366f1;
    --accent-3: #f59e0b;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --nav-height: 72px;
    --container-max: 1280px;
    --container-padding: 24px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
    --shadow-green: 0 8px 32px rgba(16,185,129,0.2);
}

html {
    font-size: 16px;
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
    height: auto;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: none;
}

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

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s;
}

.cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(16,185,129,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s, background 0.3s;
}

.cursor.hovering {
    width: 48px;
    height: 48px;
    background: rgba(16,185,129,0.12);
}

.cursor-follower.hovering {
    width: 56px;
    height: 56px;
    border-color: var(--green);
    background: rgba(16,185,129,0.06);
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10002;
    background: var(--bg-hero);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    color: white;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--green-light);
    border-radius: 2px;
}

.dot {
    color: var(--green-light);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: var(--nav-height);
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

/* Nav starts transparent on dark hero */
.nav .nav-logo,
.nav .nav-link,
.nav .nav-cta {
    transition: color 0.4s, background 0.4s, border-color 0.4s;
}

/* On hero (not scrolled) - white text */
.nav:not(.scrolled) .nav-logo {
    color: white;
}

.nav:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.7);
}

.nav:not(.scrolled) .nav-link:hover {
    color: white;
}

.nav:not(.scrolled) .nav-cta {
    background: white;
    color: var(--green-dark);
}

.nav:not(.scrolled) .nav-menu-btn span {
    background: white;
}

/* Scrolled - dark text */
.nav.scrolled .nav-logo {
    color: var(--text);
}

.nav.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav.scrolled .nav-link:hover {
    color: var(--text);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    cursor: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    cursor: none;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--green);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: none;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, background 0.3s;
}

.nav-cta:hover {
    background: var(--green-dark);
    box-shadow: var(--shadow-green);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: none;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-link:hover {
    color: var(--green);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.25s; }

/* --- Hero (DARK - contrast section) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--bg-hero);
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    z-index: 3;
    pointer-events: none;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(16,185,129,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 70% 60%, rgba(6,95,70,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(16,185,129,0.06) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mint-strong);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: white;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--green-light), var(--mint-strong));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-line-inner {
    display: block;
    transform: translateY(105%);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero-specific button overrides */
.hero .btn-primary {
    background: white;
    color: var(--green-dark);
}

.hero .btn-primary:hover {
    box-shadow: 0 0 32px rgba(255,255,255,0.2), 0 8px 24px rgba(255,255,255,0.1);
}

.hero .btn-outline {
    border-color: rgba(255,255,255,0.25);
    color: white;
}

.hero .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
}

.hero-trust-item svg {
    color: var(--green-light);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green-light), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Buttons (default - for light sections) --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: none;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    padding: 14px 28px;
    background: var(--green);
    color: white;
}

.btn-primary:hover {
    background: var(--green-dark);
    box-shadow: var(--shadow-green);
}

.btn-outline {
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-dim);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.btn-icon {
    display: flex;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* --- Marquee --- */
.marquee-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg);
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 64px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

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

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.line-reveal {
    display: block;
    overflow: hidden;
}

/* --- Services --- */
.services {
    padding: 100px 0 120px;
    position: relative;
    background: var(--bg);
}

/* Decorative blob */
.services::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.06), transparent 70%);
    top: -100px;
    right: -200px;
    pointer-events: none;
}

@media (min-width: 768px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    .service-card-lg {
        grid-column: span 3;
    }

    .service-card:not(.service-card-lg) {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    overflow: hidden;
    cursor: none;
    transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
    opacity: 0;
    transform: translateY(40px);
}

.service-card:hover {
    border-color: rgba(16,185,129,0.2);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(16,185,129,0.08);
    transform: translateY(-4px);
}

.service-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16,185,129,0.06) 0%, transparent 60%);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green-dark);
    transition: background 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.service-card:hover .service-icon {
    background: var(--mint-strong);
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--text);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    cursor: none;
    transition: gap 0.3s var(--ease-out-expo), color 0.3s;
}

.service-link:hover {
    gap: 12px;
    color: var(--green-dark);
}

/* --- Stats --- */
.stats {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

.stat-card {
    text-align: center;
    padding: 40px 16px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s var(--ease-out-expo);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card::after {
    display: none;
}

.stat-number, .stat-prefix, .stat-suffix {
    display: inline;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--emerald-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.5;
}

.stat-context {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    padding: 4px 10px;
    background: var(--green-dim);
    border-radius: 100px;
    display: inline-block;
}

/* --- Process --- */
.process {
    padding: 120px 0;
    position: relative;
    background: var(--bg);
}

.process-timeline {
    position: relative;
    padding-left: 48px;
}

.process-line {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    border-radius: 2px;
}

.process-line-fill {
    width: 100%;
    height: 0%;
    background: var(--emerald-gradient);
    border-radius: 2px;
    transition: height 0.1s;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
}

.process-step::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border-hover);
    transition: border-color 0.5s, background 0.5s, box-shadow 0.5s;
    z-index: 1;
}

.process-step.active::before {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(16,185,129,0.15), 0 0 16px rgba(16,185,129,0.2);
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-secondary);
    line-height: 1;
    letter-spacing: -0.03em;
    min-width: 80px;
    transition: color 0.5s;
    -webkit-text-stroke: 1.5px var(--border-hover);
}

.process-step.active .process-step-number {
    -webkit-text-stroke: 1.5px var(--green);
    color: rgba(16,185,129,0.05);
}

.process-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--text);
}

.process-step-duration {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    background: var(--mint);
    border-radius: 100px;
    margin-bottom: 12px;
}

.process-step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

/* --- Insights --- */
.insights {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

.insight-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: none;
    transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.insight-card:hover {
    border-color: rgba(16,185,129,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.insight-card-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.insight-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--g1, #10b981), var(--g2, #059669));
    opacity: 0.8;
    transition: opacity 0.4s, transform 0.6s var(--ease-out-expo);
}

.insight-card:hover .insight-card-gradient {
    opacity: 1;
    transform: scale(1.05);
}

.insight-card-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-card-visual svg {
    transition: transform 0.6s var(--ease-out-expo);
}

.insight-card:hover .insight-card-visual svg {
    transform: scale(1.1) rotate(3deg);
}

.insight-card-icon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.insight-card:hover .insight-card-icon-badge {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.insight-card-content {
    padding: 24px;
}

.insight-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.insight-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-dark);
    padding: 4px 10px;
    background: var(--mint);
    border-radius: 6px;
}

.insight-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.insight-card h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    color: var(--text);
}

.insight-read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    cursor: none;
    transition: color 0.3s;
}

.insight-read-more:hover {
    color: var(--green-dark);
}

/* --- CTA (Dark section for contrast) --- */
.cta {
    padding: 120px 0;
    position: relative;
    background: var(--bg);
}

.cta-inner {
    position: relative;
    background: var(--bg-hero);
    border: none;
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    overflow: hidden;
    color: white;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(16,185,129,0.15);
    top: -150px;
    left: -150px;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(6,95,70,0.12);
    bottom: -120px;
    right: -120px;
    animation-delay: -4s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-10px, 15px); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    margin-bottom: 48px;
}

.cta .btn-primary {
    background: white;
    color: var(--green-dark);
}

.cta .btn-primary:hover {
    box-shadow: 0 0 32px rgba(255,255,255,0.15), 0 8px 24px rgba(255,255,255,0.1);
}

.cta-details {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.cta-detail svg {
    color: var(--green-light);
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    cursor: none;
    color: var(--text);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-links-grid {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color 0.3s;
    cursor: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    cursor: none;
    transition: color 0.3s;
}

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

/* --- About --- */
.about {
    padding: 80px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.05), transparent 70%);
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.about-location {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out-expo);
    opacity: 0;
    transform: translateX(-20px);
}

.about-location:hover {
    border-color: rgba(16,185,129,0.2);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.about-location-flag {
    font-size: 1.75rem;
    line-height: 1;
}

.about-location strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.about-location span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(20px);
}

.about-stat-item:hover {
    border-color: rgba(16,185,129,0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-stat-number, .about-stat-suffix {
    display: inline;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--emerald-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* --- Team --- */
.team {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.team-card {
    display: flex;
    gap: 32px;
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(30px);
}

.team-card:hover {
    border-color: rgba(16,185,129,0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-card-image {
    flex-shrink: 0;
    width: 140px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s var(--ease-out-expo);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    background: var(--mint);
}

.team-card-info {
    flex: 1;
    min-width: 0;
}

.team-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    color: var(--text);
}

.team-card-role {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
}

.team-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.team-card-location svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.team-card-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-card-contact a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--green);
    transition: color 0.3s;
    cursor: none;
}

.team-card-contact a:hover {
    color: var(--green-dark);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-card:last-child {
        display: none;
    }

    .footer-links-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card-lg, .service-card:not(.service-card-lg) {
        grid-column: span 1 !important;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .process-timeline {
        padding-left: 32px;
    }

    .process-step-number {
        font-size: 2.5rem;
        min-width: 50px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card:last-child {
        display: block;
    }

    .team-card {
        flex-direction: column;
        gap: 20px;
        padding: 28px;
    }

    .team-card-image {
        width: 100%;
        height: 220px;
    }

    .cta-inner {
        padding: 48px 24px;
        border-radius: 24px;
    }

    .cta-details {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

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

    /* Hide custom cursor on mobile */
    .cursor, .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    .nav-link, .nav-cta, .btn, .service-link, .insight-read-more, .footer-col a, .footer-bottom-links a, .nav-logo, .footer-logo, .mobile-menu-link {
        cursor: auto;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   ENHANCEMENTS — Trust Bar, Testimonial,
   Scroll-to-Top, Social Links
   ============================================ */

/* --- Trust Bar --- */
.trust-bar {
    padding: 48px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.trust-bar-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.trust-logos-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    padding: 8px 0;
}

.trust-logos-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: trust-scroll 35s linear infinite;
    width: max-content;
}

@keyframes trust-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-logos-marquee:hover .trust-logos-track {
    animation-play-state: paused;
}

.trust-logo {
    flex-shrink: 0;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.trust-logo:hover {
    border-color: rgba(16,185,129,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.trust-logo span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #2d3a2e;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* --- About Network Visual --- */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-globe { width: 100%; }

.about-network-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0b1a0f;
    transition: box-shadow 0.4s;
}

.about-network-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.network-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(16,185,129,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(5,150,105,0.1) 0%, transparent 50%);
}

.network-content {
    position: relative;
    z-index: 1;
    padding: 28px;
}

.network-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.globe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.globe-dot-live {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
    animation: globe-pulse 2s ease-in-out infinite;
}

@keyframes globe-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.1); }
}

.network-nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    min-height: 100px;
}

.network-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    position: relative;
}

.network-node-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(16,185,129,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    animation: ring-pulse 3s ease-in-out infinite;
}

.network-node-1 .network-node-ring { animation-delay: 0s; }
.network-node-2 .network-node-ring { animation-delay: 1s; border-color: rgba(16,185,129,0.35); }
.network-node-3 .network-node-ring { animation-delay: 2s; }

@keyframes ring-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.network-node-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16,185,129,0.15);
    border: 2px solid #10b981;
    position: relative;
}

.network-node-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
}

.network-node-dot-hq {
    background: rgba(16,185,129,0.25);
    border-color: #34d399;
    width: 38px;
    height: 38px;
}

.network-node-dot-hq::after {
    width: 14px;
    height: 14px;
    background: #34d399;
    box-shadow: 0 0 16px rgba(52,211,153,0.5);
}

.network-node-label {
    text-align: center;
}

.network-node-label strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.network-node-label em {
    font-style: normal;
    font-size: 0.625rem;
    font-weight: 700;
    color: #0b1a0f;
    background: #34d399;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

.network-node-label span {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

/* Connection lines */
.network-line {
    position: absolute;
    top: 28px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, rgba(16,185,129,0.2), #10b981);
    background-size: 200% 100%;
    animation: line-flow 3s ease-in-out infinite;
    z-index: 1;
}

.network-line-1 {
    left: 14%;
    width: 28%;
}

.network-line-2 {
    left: 42%;
    width: 28%;
    animation-delay: 1s;
}

.network-line-3 {
    left: 14%;
    width: 72%;
    top: 35px;
    height: 1px;
    opacity: 0.3;
    animation-delay: 0.5s;
}

@keyframes line-flow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.network-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

.network-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #10b981;
}

.network-stat span {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 1024px) {
    .about-globe { margin-top: 8px; }
}

@media (max-width: 480px) {
    .network-content { padding: 20px; }
    .network-node-dot { width: 24px; height: 24px; }
    .network-node-dot::after { width: 8px; height: 8px; }
    .network-node-dot-hq { width: 30px; height: 30px; }
    .network-node-ring { width: 36px; height: 36px; }
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-dark);
    padding: 8px 16px;
    background: var(--mint);
    border-radius: 100px;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}

.trust-badge svg {
    color: var(--green);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 12px;
    }
    .trust-badge {
        font-size: 0.6875rem;
        padding: 6px 12px;
    }
}

/* --- Testimonial --- */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-quote-icon {
    color: var(--mint-strong);
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-author-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* --- Stats CTA --- */
.stats-cta {
    text-align: center;
    margin-top: 48px;
}

.stats-cta .btn svg {
    margin-left: 8px;
    vertical-align: middle;
}

/* --- Team Social Links --- */
.team-card-social {
    margin-top: 12px;
}

.team-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    cursor: none;
}

.team-social-link:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

/* --- Footer Social --- */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    cursor: none;
}

.footer-social-link:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Scroll to Top --- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s var(--ease-out-expo), background 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-md);
}

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

.scroll-top:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
    box-shadow: 0 8px 32px rgba(16,185,129,0.25);
}

/* --- Responsive Additions --- */
@media (max-width: 768px) {
    .trust-logos {
        gap: 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
