/* ============================================================
   Choose4Choice Solutions — Premium Homepage Stylesheet
   Style: Linear.app + Stripe + Webflow inspired
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
    /* Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-bg: #fafafa;
    --color-bg-dark: #0a0a0a;
    --color-bg-card: #ffffff;
    --color-bg-glass: rgba(255, 255, 255, 0.65);
    --color-border: rgba(0, 0, 0, 0.06);
    --color-border-light: rgba(0, 0, 0, 0.04);

    --color-text-primary: #0f0f0f;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    --color-text-light: #aaaaaa;

    /* Accent Palette */
    --color-accent-blue: #3b82f6;
    --color-accent-purple: #8b5cf6;
    --color-accent-orange: #f97316;
    --color-accent-pink: #ec4899;
    --color-accent-cyan: #06b6d4;
    --color-accent-green: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warm: linear-gradient(135deg, #f97316, #ec4899);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    --gradient-card-hover: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(59,130,246,0.08) 0, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(139,92,246,0.06) 0, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(249,115,22,0.05) 0, transparent 50%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
    --shadow-glow-blue: 0 0 40px rgba(59,130,246,0.15);
    --shadow-glow-purple: 0 0 40px rgba(139,92,246,0.15);
    --shadow-glow-orange: 0 0 40px rgba(249,115,22,0.12);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Sizing */
    --container-max: 1200px;
    --container-wide: 1400px;
    --header-height: 72px;
    --section-padding: 120px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

::selection {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-text-primary);
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--container-wide);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-blue);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--border-radius-full);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 640px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn i,
.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover i,
.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* ── Header / Navigation ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    height: var(--header-height);
}

.site-header.scrolled {
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.navbar {
    height: 100%;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbar-logo {
    height: 38px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
    background: rgba(0, 0, 0, 0.04);
}

/* ── Services Dropdown ── */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: inherit;
}

.nav-dropdown-chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-dropdown-chevron,
.nav-item-dropdown.open .nav-dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 360px;
    padding: 10px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow:
        0 20px 40px -16px rgba(0, 0, 0, 0.18),
        0 4px 12px -4px rgba(0, 0, 0, 0.08);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--transition-base),
        transform var(--transition-base),
        visibility 0s linear var(--transition-base);
    z-index: 1100;
}

/* Invisible bridge to keep hover stable */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity var(--transition-base),
        transform var(--transition-base),
        visibility 0s;
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.nav-dropdown-link:hover {
    background: rgba(0, 0, 0, 0.04);
}

.nav-dropdown-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.nav-dropdown-icon i,
.nav-dropdown-icon svg {
    width: 18px;
    height: 18px;
}

.nav-dropdown-icon-blue   { background: rgba(59, 130, 246, 0.10); color: var(--color-accent-blue); }
.nav-dropdown-icon-purple { background: rgba(139, 92, 246, 0.10); color: var(--color-accent-purple); }
.nav-dropdown-icon-orange { background: rgba(249, 115, 22, 0.10); color: var(--color-accent-orange); }
.nav-dropdown-icon-pink   { background: rgba(236, 72, 153, 0.10); color: var(--color-accent-pink); }

.nav-dropdown-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nav-dropdown-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.nav-dropdown-desc {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    margin-top: 2px;
    line-height: 1.4;
}

.nav-dropdown-footer {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-dropdown-link-all {
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    padding: 12px;
}

.nav-dropdown-link-all i,
.nav-dropdown-link-all svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.nav-dropdown-link-all:hover {
    background: rgba(59, 130, 246, 0.06);
}

.nav-dropdown-link-all:hover i,
.nav-dropdown-link-all:hover svg {
    transform: translateX(3px);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
/* ────────────────────────────────────────────────
   HERO — Modern Split Layout w/ Big Visual
   ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + 40px) 0 80px;
    background: linear-gradient(180deg, #fafbff 0%, #f4f6fc 100%);
    isolation: isolate;
}

/* ── Background Layers ── */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(59, 130, 246, 0.18) 0, transparent 45%),
        radial-gradient(ellipse at 85% 30%, rgba(139, 92, 246, 0.16) 0, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(236, 72, 153, 0.10) 0, transparent 50%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    will-change: transform;
}

.hero-orb-1 {
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
    top: -120px;
    right: -120px;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 14s ease-in-out -4s infinite reverse;
}

.hero-orb-3 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
    top: 45%;
    left: 45%;
    animation: orbFloat 16s ease-in-out -7s infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 15, 15, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 15, 15, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 0%, transparent 80%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* ── Two-Column Layout ── */
.hero-grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

/* ── Left: Text Content ── */
.hero-text {
    max-width: 620px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    margin-bottom: 28px;
    animation: heroFadeUp 0.7s ease-out;
}

.hero-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
    animation: heroPulse 2s ease-in-out infinite;
}

.hero-pill-text {
    letter-spacing: 0.01em;
}

.hero-pill-icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent-purple);
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-headline {
    font-size: clamp(2.6rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    animation: heroFadeUp 0.7s ease-out 0.1s both;
}

.hero-headline-gradient {
    background: linear-gradient(120deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease-in-out infinite;
    font-style: italic;
    font-weight: 800;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-headline-underline {
    position: relative;
    display: inline-block;
    color: var(--color-text-primary);
}

.hero-headline-underline::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 0.05em;
    height: 0.18em;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 4px;
    z-index: -1;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
    animation: heroFadeUp 0.7s ease-out 0.2s both;
}

/* ── CTA Buttons ── */
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: heroFadeUp 0.7s ease-out 0.3s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--border-radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: var(--color-white);
    box-shadow:
        0 8px 24px rgba(59, 130, 246, 0.32),
        0 4px 12px rgba(139, 92, 246, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.4),
        0 6px 16px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-primary > span {
    position: relative;
    z-index: 1;
}

.hero-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.hero-btn-arrow svg {
    width: 14px;
    height: 14px;
}

.hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.28);
}

.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 15, 15, 0.08);
    color: var(--color-text-primary);
    padding: 13px 22px 13px 14px;
}

.hero-btn-ghost:hover {
    background: var(--color-white);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 15, 15, 0.06);
}

.hero-btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: var(--color-white);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.hero-btn-play svg {
    width: 12px;
    height: 12px;
    margin-left: 1px;
    fill: currentColor;
}

.hero-btn-ghost:hover .hero-btn-play {
    transform: scale(1.08);
}

/* ── Social Proof ── */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    animation: heroFadeUp 0.7s ease-out 0.4s both;
}

.hero-avatars {
    display: inline-flex;
}

.hero-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1, #3b82f6), var(--c2, #8b5cf6));
    border: 2.5px solid #ffffff;
    margin-left: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base);
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar:hover {
    transform: translateY(-3px);
    z-index: 2;
}

.hero-avatar-more {
    background: var(--color-text-primary) !important;
    font-size: 0.65rem;
}

.hero-proof-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 2px;
}

.hero-proof-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.hero-proof-stars strong {
    margin-left: 6px;
    color: var(--color-text-primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-proof-label {
    font-size: 0.825rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ────────────────────────────────────────────────
   RIGHT: Big Visual — Dashboard Mockup
   ──────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 600px;
    margin-left: auto;
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-visual-glow {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.25), transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.18), transparent 60%);
    filter: blur(40px);
    z-index: 0;
}

/* ── Main Dashboard Card ── */
.hv-dashboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(1500px) rotateY(-7deg) rotateX(4deg);
    width: 100%;
    max-width: 580px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 32px 80px -20px rgba(15, 23, 42, 0.25),
        0 16px 40px -12px rgba(59, 130, 246, 0.18),
        0 0 0 1px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    z-index: 2;
    animation: dashFloat 8s ease-in-out infinite;
}

@keyframes dashFloat {
    0%, 100% { transform: translate(-50%, -50%) perspective(1500px) rotateY(-7deg) rotateX(4deg) translateY(0); }
    50% { transform: translate(-50%, -50%) perspective(1500px) rotateY(-7deg) rotateX(4deg) translateY(-8px); }
}

.hv-dash-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.hv-dash-traffic {
    display: flex;
    gap: 5px;
}

.hv-dash-traffic-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e2e8f0;
}

.hv-dash-traffic-dot:nth-child(1) { background: #ef4444; }
.hv-dash-traffic-dot:nth-child(2) { background: #f59e0b; }
.hv-dash-traffic-dot:nth-child(3) { background: #10b981; }

.hv-dash-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    color: #64748b;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.hv-dash-url svg {
    width: 10px;
    height: 10px;
    color: #10b981;
}

.hv-dash-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hv-dash-actions svg {
    width: 14px;
    height: 14px;
    color: #64748b;
}

.hv-dash-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.hv-dash-body {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 360px;
}

.hv-dash-side {
    background: #f8fafc;
    border-right: 1px solid rgba(15, 23, 42, 0.04);
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hv-side-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.hv-side-logo span {
    width: 14px;
    height: 14px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.hv-side-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s;
}

.hv-side-item svg {
    width: 16px;
    height: 16px;
}

.hv-side-item.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
    color: #3b82f6;
}

.hv-dash-main {
    padding: 22px 22px 24px;
}

.hv-dash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hv-dash-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.hv-dash-subtitle {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.hv-dash-tabs {
    display: flex;
    gap: 2px;
    padding: 3px;
    background: #f1f5f9;
    border-radius: 7px;
}

.hv-tab {
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
}

.hv-tab.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.hv-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.hv-kpi {
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.hv-kpi-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hv-kpi-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.hv-kpi-delta {
    font-size: 0.65rem;
    font-weight: 600;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
}

.hv-kpi-delta.hv-up {
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
}

.hv-chart {
    position: relative;
    height: 140px;
    padding-top: 4px;
}

.hv-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hv-chart-tooltip {
    position: absolute;
    top: -6px;
    right: 12px;
    background: #0f172a;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 7px;
    font-size: 0.65rem;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
}

.hv-chart-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 14px;
    width: 8px;
    height: 8px;
    background: #0f172a;
    transform: rotate(45deg);
}

.hv-tt-label {
    color: #94a3b8;
    font-size: 0.6rem;
    margin-bottom: 1px;
}

.hv-tt-value {
    font-size: 0.82rem;
    color: #ffffff;
}

/* ── Floating Card: Live Analytics (top-left) ── */
.hv-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow:
        0 16px 40px -8px rgba(15, 23, 42, 0.18),
        0 4px 12px rgba(15, 23, 42, 0.06);
    z-index: 3;
}

.hv-float-analytics {
    top: 6%;
    left: -8%;
    width: 200px;
    padding: 14px 16px;
    animation: floatA 6s ease-in-out infinite;
}

@keyframes floatA {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(-3deg); }
}

.hv-float-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 10px;
}

.hv-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.hv-dot-live {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
    animation: heroPulse 2s ease-in-out infinite;
}

.hv-metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.hv-metric-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #047857;
    font-weight: 600;
}

.hv-metric-trend svg {
    width: 12px;
    height: 12px;
}

.hv-sparkline {
    margin-top: 8px;
    height: 28px;
}

.hv-sparkline svg {
    width: 100%;
    height: 100%;
}

/* ── Floating Card: New Conversion (bottom-left) ── */
.hv-float-conversion {
    bottom: 8%;
    left: -4%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 12px;
    width: 220px;
    animation: floatB 7s ease-in-out -1s infinite;
}

@keyframes floatB {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.hv-float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97316, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hv-float-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hv-float-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.hv-float-meta {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.hv-float-pulse {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
    animation: heroPulse 2s ease-in-out infinite;
}

/* ── Floating Card: Campaign ROI (right) ── */
.hv-float-roi {
    top: 22%;
    right: -6%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    width: 200px;
    animation: floatC 8s ease-in-out -2s infinite;
}

@keyframes floatC {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-14px) rotate(3deg); }
}

.hv-roi-ring {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.hv-roi-ring svg {
    width: 100%;
    height: 100%;
}

.hv-roi-percent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hv-roi-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.hv-roi-sub {
    font-size: 0.68rem;
    color: #047857;
    font-weight: 600;
}

/* ────────────────────────────────────────────────
   Stats Strip
   ──────────────────────────────────────────────── */
.hero-stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 80px;
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
    animation: heroFadeUp 0.7s ease-out 0.6s both;
}

.hero-stat-item {
    flex: 1;
    text-align: center;
}

.hero-stat-num {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-name {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.1), transparent);
}

/* Animations */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}

/* Backwards-compat for shared fadeInUp keyframe (used elsewhere) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Trust / Clients Section ── */
.trust-section {
    padding: 80px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    overflow: hidden;
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.trust-logos:hover {
    opacity: 0.85;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.trust-logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-logo-item i,
.trust-logo-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ── Services Section — Linear.app Inspired ── */
.services-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: #09090b;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.services-glow-1 {
    width: 700px;
    height: 700px;
    background: rgba(59, 130, 246, 0.07);
    top: -20%;
    left: -10%;
}

.services-glow-2 {
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.06);
    bottom: -15%;
    right: -8%;
}

.services-noise {
    position: absolute;
    inset: 0;
    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)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.services-title {
    color: #ffffff;
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.section-label-dark {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

/* Bento Grid */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.services-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

/* Bento Card Base */
.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    transform: translateY(-4px);
}

/* Animated gradient border */
.bento-card-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 40%,
        rgba(255, 255, 255, 0.01) 60%,
        rgba(255, 255, 255, 0.06) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.5s ease;
}

.bento-card:hover .bento-card-border {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.4) 0%,
        rgba(139, 92, 246, 0.2) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(59, 130, 246, 0.3) 100%
    );
}

.bento-card:nth-child(2):hover .bento-card-border {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.4) 0%,
        rgba(236, 72, 153, 0.2) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(139, 92, 246, 0.3) 100%
    );
}

.bento-card:nth-child(3):hover .bento-card-border {
    background: linear-gradient(
        135deg,
        rgba(249, 115, 22, 0.4) 0%,
        rgba(245, 158, 11, 0.2) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(249, 115, 22, 0.3) 100%
    );
}

.bento-card:nth-child(4):hover .bento-card-border {
    background: linear-gradient(
        135deg,
        rgba(236, 72, 153, 0.4) 0%,
        rgba(139, 92, 246, 0.2) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(236, 72, 153, 0.3) 100%
    );
}

.bento-card-inner {
    background: linear-gradient(170deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: 20px;
    height: 100%;
}

/* Featured Card Layout (horizontal: content + visual) */
.bento-card-featured .bento-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.bento-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bento-card-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

/* Compact Card (vertical layout) */
.bento-card-compact .bento-card-inner {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Bento Icons */
.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
}

.bento-icon i, .bento-icon svg {
    width: 22px;
    height: 22px;
}

.bento-icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.bento-icon-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.bento-icon-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}

.bento-icon-pink {
    background: rgba(236, 72, 153, 0.12);
    color: #f472b6;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.1);
}

/* Bento Card Typography */
.bento-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4f4f5;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.bento-card-compact .bento-card-title {
    font-size: 1.25rem;
}

.bento-card-desc {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Bento Tags */
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.bento-tag {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-full);
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
}

.bento-card:hover .bento-tag {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
}

/* Bento Link */
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #60a5fa;
    transition: all var(--transition-base);
    margin-top: auto;
}

.bento-link i, .bento-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.bento-link:hover {
    color: #93c5fd;
}

.bento-link:hover i,
.bento-link:hover svg {
    transform: translateX(4px);
}

.bento-card:nth-child(2) .bento-link { color: #a78bfa; }
.bento-card:nth-child(2) .bento-link:hover { color: #c4b5fd; }
.bento-card:nth-child(3) .bento-link { color: #fb923c; }
.bento-card:nth-child(3) .bento-link:hover { color: #fdba74; }
.bento-card:nth-child(4) .bento-link { color: #f472b6; }
.bento-card:nth-child(4) .bento-link:hover { color: #f9a8d4; }

/* ═══════ Mockup Visuals ═══════ */

/* Browser Mockup */
.bento-visual-mockup {
    width: 100%;
    max-width: 340px;
    perspective: 1000px;
}

.mockup-browser {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-browser-dots {
    display: flex;
    gap: 5px;
}

.mockup-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.mockup-browser-dots span:nth-child(1) { background: rgba(239, 68, 68, 0.5); }
.mockup-browser-dots span:nth-child(2) { background: rgba(234, 179, 8, 0.5); }
.mockup-browser-dots span:nth-child(3) { background: rgba(34, 197, 94, 0.5); }

.mockup-browser-bar {
    flex: 1;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-screen {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 0;
}

.mockup-hero-block {
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.15));
    margin-bottom: 12px;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.mockup-content-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.mockup-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
}

.mockup-line-lg { width: 90%; }
.mockup-line-md { width: 70%; }
.mockup-line-sm { width: 50%; }

.mockup-cards-row {
    display: flex;
    gap: 8px;
}

.mockup-mini-card {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.bento-card:hover .mockup-mini-card {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

/* Code Editor Mockup */
.mockup-code-editor {
    width: 100%;
    max-width: 340px;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
}

.mockup-code-sidebar {
    width: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-sidebar-item {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.mockup-sidebar-item.active {
    background: rgba(139, 92, 246, 0.5);
}

.mockup-code-area {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-code-line {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 8px;
}

.mockup-code-line.indent { padding-left: 16px; }
.mockup-code-line.indent-2 { padding-left: 32px; }

.code-keyword {
    width: 36px;
    height: 6px;
    border-radius: 3px;
    background: rgba(139, 92, 246, 0.45);
}

.code-keyword-sm {
    width: 20px;
    height: 6px;
    border-radius: 3px;
    background: rgba(236, 72, 153, 0.35);
}

.code-func {
    width: 52px;
    height: 6px;
    border-radius: 3px;
    background: rgba(96, 165, 250, 0.4);
}

.code-func-alt {
    width: 44px;
    height: 6px;
    border-radius: 3px;
    background: rgba(52, 211, 153, 0.4);
}

.code-var {
    width: 30px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.code-var-sm {
    width: 22px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.code-string {
    width: 64px;
    height: 6px;
    border-radius: 3px;
    background: rgba(52, 211, 153, 0.35);
}

.code-string-alt {
    width: 48px;
    height: 6px;
    border-radius: 3px;
    background: rgba(250, 204, 21, 0.3);
}

.code-return {
    width: 56px;
    height: 6px;
    border-radius: 3px;
    background: rgba(249, 115, 22, 0.3);
}

.code-bracket {
    width: 10px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.bento-card:hover .mockup-sidebar-item.active {
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

.bento-card:hover .code-keyword {
    background: rgba(139, 92, 246, 0.65);
}

.bento-card:hover .code-func {
    background: rgba(96, 165, 250, 0.6);
}

/* SEO Chart Visual */
.bento-chart-visual {
    margin: 20px 0 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.bento-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 12px;
}

.chart-bar {
    flex: 1;
    height: var(--bar-height);
    background: rgba(249, 115, 22, 0.2);
    border-radius: 4px 4px 2px 2px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.chart-bar.active {
    background: linear-gradient(180deg, #fb923c, rgba(249, 115, 22, 0.4));
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.25);
}

.bento-card:hover .chart-bar {
    background: rgba(249, 115, 22, 0.3);
}

.bento-card:hover .chart-bar.active {
    background: linear-gradient(180deg, #fb923c, rgba(249, 115, 22, 0.5));
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.35);
}

.chart-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Metrics Visual (Paid Ads card) */
.bento-metrics-visual {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 20px 0 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.bento-metric {
    flex: 1;
    text-align: center;
}

.bento-metric-value {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #f472b6, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.bento-metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bento-metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

/* Card hover glow effects */
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.bento-card:nth-child(1)::after {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.06), transparent 40%);
}

.bento-card:nth-child(2)::after {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.06), transparent 40%);
}

.bento-card:nth-child(3)::after {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(249, 115, 22, 0.06), transparent 40%);
}

.bento-card:nth-child(4)::after {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(236, 72, 153, 0.06), transparent 40%);
}

.bento-card:hover::after {
    opacity: 1;
}

/* ── Why Choose Us Section ── */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.why-card {
    padding: 36px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::after {
    opacity: 1;
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.04));
    color: var(--color-accent-blue);
}

.why-icon i,
.why-icon svg {
    width: 22px;
    height: 22px;
}

.why-card:nth-child(2) .why-icon {
    color: var(--color-accent-purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.04));
}

.why-card:nth-child(3) .why-icon {
    color: var(--color-accent-orange);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(245, 158, 11, 0.04));
}

.why-card:nth-child(4) .why-icon {
    color: var(--color-accent-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.04));
}

.why-card:nth-child(5) .why-icon {
    color: var(--color-accent-pink);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(139, 92, 246, 0.04));
}

.why-card:nth-child(6) .why-icon {
    color: var(--color-accent-cyan);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(59, 130, 246, 0.04));
}

.why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ── Process Section ── */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.process-section .section-label {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.process-section .section-title {
    color: var(--color-white);
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.process-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.process-bg-glow:nth-child(1) {
    background: rgba(59, 130, 246, 0.08);
    top: -200px;
    right: -200px;
}

.process-bg-glow:nth-child(2) {
    background: rgba(139, 92, 246, 0.06);
    bottom: -200px;
    left: -200px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3), rgba(249, 115, 22, 0.3), rgba(16, 185, 129, 0.3));
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--gradient-primary);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
    position: relative;
}

.process-step:nth-child(2) .process-step-number {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.3);
}

.process-step:nth-child(3) .process-step-number {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.3);
}

.process-step:nth-child(4) .process-step-number {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.3);
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* ── Industries Section ── */
.industries-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 64px;
    position: relative;
}

.industry-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-smooth);
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.12);
}

.industry-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: var(--border-radius-lg);
    font-size: 1.75rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(139, 92, 246, 0.04));
    color: var(--color-accent-blue);
    transition: all var(--transition-base);
}

.industry-card:nth-child(2) .industry-icon {
    color: var(--color-accent-purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(236, 72, 153, 0.04));
}

.industry-card:nth-child(3) .industry-icon {
    color: var(--color-accent-orange);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), rgba(245, 158, 11, 0.04));
}

.industry-card:nth-child(4) .industry-icon {
    color: var(--color-accent-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.04));
}

.industry-card:nth-child(5) .industry-icon {
    color: var(--color-accent-pink);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(139, 92, 246, 0.04));
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon i,
.industry-icon svg {
    width: 28px;
    height: 28px;
}

.industry-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ── Results / Value Section ── */
.results-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.result-card {
    padding: 48px 36px;
    text-align: center;
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.result-card:nth-child(1)::before { background: rgba(59, 130, 246, 0.2); }
.result-card:nth-child(2)::before { background: rgba(139, 92, 246, 0.2); }
.result-card:nth-child(3)::before { background: rgba(249, 115, 22, 0.2); }

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.result-card:hover::before {
    opacity: 1;
}

.result-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: var(--color-accent-blue);
}

.result-card:nth-child(2) .result-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
    color: var(--color-accent-purple);
}

.result-card:nth-child(3) .result-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.05));
    color: var(--color-accent-orange);
}

.result-icon i,
.result-icon svg {
    width: 28px;
    height: 28px;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    position: relative;
}

.result-card:nth-child(1) .result-value {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-card:nth-child(2) .result-value {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-card:nth-child(3) .result-value {
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.result-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ── CTA Section ── */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.cta-bg-glow:nth-child(1) {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.1);
    top: -100px;
    left: -100px;
}

.cta-bg-glow:nth-child(2) {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.08);
    bottom: -150px;
    right: -100px;
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ── Footer ── */
.site-footer {
    background: var(--color-bg-dark);
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

/* Footer Video — cinematic right-side element */
.footer-video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
    filter: grayscale(0.2) brightness(0.7);
}

.footer-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            var(--color-bg-dark) 0%,
            var(--color-bg-dark) 10%,
            rgba(10, 10, 10, 0.92) 30%,
            rgba(10, 10, 10, 0.6) 70%,
            rgba(10, 10, 10, 0.45) 100%
        ),
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.7) 0%,
            transparent 30%,
            transparent 70%,
            rgba(10, 10, 10, 0.8) 100%
        );
}

.footer-content-layer {
    position: relative;
    z-index: 2;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5), transparent);
}

.footer-cta {
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0 48px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--color-accent-blue);
    transform: translateY(-2px);
}

.social-link i,
.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-blue);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-accent-blue);
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent-blue);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Scroll to Top ── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 48px rgba(59, 130, 246, 0.4);
}

.scroll-top i,
.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ── Page Loading Animation ── */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   PAGE HERO (shared — about & contact)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: var(--color-bg);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg .hero-gradient-orb {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
}

.page-hero-bg .hero-gradient-orb:first-child {
    top: -120px;
    right: 10%;
    background: var(--color-accent-blue);
}

.page-hero-bg .hero-gradient-orb:nth-child(2) {
    bottom: -60px;
    left: 10%;
    background: var(--color-accent-purple);
}

.page-hero-bg .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-inner {
    max-width: 720px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
    margin-top: 16px;
}

.page-hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 600px;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.page-hero-breadcrumb a {
    color: var(--color-accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.page-hero-breadcrumb a:hover {
    color: var(--color-accent-purple);
}

.page-hero-breadcrumb i,
.page-hero-breadcrumb svg {
    width: 14px;
    height: 14px;
}

/* ============================================================
   ABOUT PAGE — Story Section
   ============================================================ */
.about-story-section {
    padding: var(--section-padding) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-content .section-title {
    margin-top: 12px;
}

.story-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.85;
    margin-top: 16px;
}

.story-stats-row {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.story-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.story-visual-card {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.story-visual-pattern {
    position: absolute;
    top: 32px;
    right: 32px;
    opacity: 0.35;
}

.pattern-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.pattern-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-blue);
}

.story-visual-text {
    position: relative;
    z-index: 1;
}

.story-visual-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    color: var(--color-white);
    margin-bottom: 20px;
}

.story-visual-icon i,
.story-visual-icon svg {
    width: 24px;
    height: 24px;
}

.story-visual-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.story-visual-text p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE — Mission & Vision
   ============================================================ */
.about-mv-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.mv-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.mv-card-border {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(139,92,246,0.3), rgba(249,115,22,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.mv-card-inner {
    background: var(--color-bg-dark);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    height: 100%;
}

.mv-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border-radius: var(--border-radius-md);
    color: var(--color-accent-blue);
    margin-bottom: 24px;
}

.mv-icon.mv-icon-purple {
    background: rgba(139, 92, 246, 0.12);
    color: var(--color-accent-purple);
}

.mv-icon i,
.mv-icon svg {
    width: 26px;
    height: 26px;
}

.mv-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.mv-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.mv-mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mv-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.mv-mission-list li i,
.mv-mission-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-green);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================================
   ABOUT PAGE — Core Services (dark)
   ============================================================ */
.about-services-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    overflow: hidden;
}

.about-services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-dark-title {
    color: var(--color-white);
}

.about-dark-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.about-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px 28px;
    transition: all var(--transition-base);
}

.about-service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.about-service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.about-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

.about-service-icon i,
.about-service-icon svg {
    width: 22px;
    height: 22px;
}

.about-service-icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-accent-blue);
}

.about-service-icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-accent-purple);
}

.about-service-icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--color-accent-orange);
}

.about-service-icon-pink {
    background: rgba(236, 72, 153, 0.15);
    color: var(--color-accent-pink);
}

.about-service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.about-service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE — Process / Approach (vertical timeline)
   ============================================================ */
.about-process-section {
    padding: var(--section-padding) 0;
}

.about-process-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.about-process-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 0;
}

.about-process-line {
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.about-process-line-last {
    bottom: 50%;
}

.about-process-dot {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid;
    background: var(--color-bg);
}

.about-process-dot-blue { border-color: var(--color-accent-blue); }
.about-process-dot-purple { border-color: var(--color-accent-purple); }
.about-process-dot-orange { border-color: var(--color-accent-orange); }
.about-process-dot-green { border-color: var(--color-accent-green); }
.about-process-dot-cyan { border-color: var(--color-accent-cyan); }

.about-process-content {
    flex: 1;
    padding-bottom: 8px;
}

.about-process-step {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent-blue);
}

.about-process-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 6px;
}

.about-process-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-top: 8px;
}

/* ============================================================
   ABOUT PAGE — Why Choose Us
   ============================================================ */
.about-why-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.about-why-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
}

.about-why-card:hover {
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: var(--shadow-md), var(--shadow-glow-blue);
    transform: translateY(-4px);
}

.about-why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--border-radius-md);
    color: var(--color-accent-blue);
    margin-bottom: 20px;
}

.about-why-icon i,
.about-why-icon svg {
    width: 22px;
    height: 22px;
}

.about-why-icon-purple { background: rgba(139, 92, 246, 0.08); color: var(--color-accent-purple); }
.about-why-icon-orange { background: rgba(249, 115, 22, 0.08); color: var(--color-accent-orange); }
.about-why-icon-green { background: rgba(16, 185, 129, 0.08); color: var(--color-accent-green); }
.about-why-icon-pink { background: rgba(236, 72, 153, 0.08); color: var(--color-accent-pink); }
.about-why-icon-cyan { background: rgba(6, 182, 212, 0.08); color: var(--color-accent-cyan); }

.about-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.about-why-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE — Main Layout
   ============================================================ */
.contact-main-section {
    padding: var(--section-padding) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: flex-start;
}

.contact-info-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.contact-info-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-top: 12px;
    margin-bottom: 32px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: var(--shadow-sm);
}

.contact-info-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
}

.contact-info-card-icon i,
.contact-info-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-icon-blue { background: rgba(59, 130, 246, 0.1); color: var(--color-accent-blue); }
.contact-icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--color-accent-purple); }
.contact-icon-orange { background: rgba(249, 115, 22, 0.1); color: var(--color-accent-orange); }
.contact-icon-green { background: rgba(16, 185, 129, 0.1); color: var(--color-accent-green); }

.contact-info-card-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.contact-info-card-body a,
.contact-info-card-body p {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-info-card-body a + a {
    margin-top: 2px;
}

.contact-info-card-body a:hover {
    color: var(--color-accent-blue);
}

/* Contact Social */
.contact-social {
    margin-top: 36px;
}

.contact-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 14px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.contact-social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
}

.contact-social-link i,
.contact-social-link svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   CONTACT PAGE — Form Card
   ============================================================ */
.contact-form-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.contact-form-card-border {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(139,92,246,0.25), rgba(249,115,22,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.contact-form-card-inner {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-xl);
    padding: 48px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: 8px;
    margin-bottom: 32px;
}

.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-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-label .required {
    color: var(--color-accent-pink);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

.form-input:focus {
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-select {
    appearance: none;
    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='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form-submit {
    width: 100%;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.btn-form-submit i,
.btn-form-submit svg {
    width: 18px;
    height: 18px;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
}

.form-message i,
.form-message svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-message strong {
    display: block;
    margin-bottom: 2px;
}

.form-message p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.form-message-success i,
.form-message-success svg {
    color: var(--color-accent-green);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.form-message-error i,
.form-message-error svg {
    color: #ef4444;
}

/* ============================================================
   CONTACT PAGE — Map Section
   ============================================================ */
.contact-map-section {
    padding: 0 0 var(--section-padding);
}

.contact-map-wrapper {
    margin-top: 56px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.contact-map-placeholder {
    width: 100%;
    line-height: 0;
}

.contact-map-placeholder iframe {
    width: 100%;
    display: block;
}

/* ============================================================
   RESPONSIVE DESIGN — Mobile First
   ============================================================ */

/* Tablets & below */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px 36px;
    }

    .services-bento {
        grid-template-columns: 1fr;
    }

    .bento-card-featured .bento-card-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .bento-card-visual {
        min-height: 220px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-video-wrapper {
        display: none;
    }

    /* Hero — tablet */
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }

    .hero-text {
        max-width: 720px;
        margin: 0 auto;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row,
    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        max-width: 540px;
        margin: 0 auto;
    }

    .hero-stats-strip {
        gap: 16px;
        padding: 24px 28px;
    }

    /* About page tablet */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    /* Contact page tablet */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --header-height: 64px;
    }

    .container {
        padding: 0 20px;
    }

    /* Mobile Nav */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        background: var(--color-white);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
        transition: right var(--transition-smooth);
        z-index: 1000;
        gap: 4px;
    }

    .navbar-menu.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    /* Mobile dropdown — inline expand inside side-drawer */
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        margin: 4px 0 8px;
        padding: 6px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.025);
        border: none;
        box-shadow: none;
        border-radius: 12px;
        transition: max-height 0.35s ease, padding 0.25s ease;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-item-dropdown:hover .nav-dropdown {
        transform: none;
    }

    .nav-item-dropdown.open .nav-dropdown {
        max-height: 800px;
        padding: 6px;
    }

    .nav-dropdown-link {
        padding: 10px;
    }

    .nav-dropdown-icon {
        width: 34px;
        height: 34px;
    }

    .nav-dropdown-title {
        font-size: 0.88rem;
    }

    .nav-dropdown-desc {
        font-size: 0.74rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero — mobile */
    .hero {
        padding: calc(var(--header-height) + 24px) 0 56px;
    }

    .hero-headline {
        font-size: clamp(2.1rem, 8vw, 3.1rem);
    }

    .hero-grid-layout {
        gap: 48px;
    }

    .hero-cta-row {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 36px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-proof {
        flex-direction: column;
        gap: 12px;
    }

    .hero-visual {
        max-width: 440px;
        aspect-ratio: 1.05 / 1;
    }

    .hv-dashboard {
        transform: translate(-50%, -50%) perspective(1500px) rotateY(-4deg) rotateX(2deg);
        max-width: 100%;
    }

    @keyframes dashFloat {
        0%, 100% { transform: translate(-50%, -50%) perspective(1500px) rotateY(-4deg) rotateX(2deg) translateY(0); }
        50% { transform: translate(-50%, -50%) perspective(1500px) rotateY(-4deg) rotateX(2deg) translateY(-6px); }
    }

    .hv-float-analytics {
        width: 168px;
        padding: 12px 14px;
        top: 2%;
        left: -4%;
    }

    .hv-float-conversion {
        width: 190px;
        padding: 10px 14px 10px 10px;
        bottom: 4%;
        left: -2%;
    }

    .hv-float-roi {
        width: 170px;
        padding: 10px 14px;
        top: 14%;
        right: -2%;
    }

    .hv-metric-value {
        font-size: 1.25rem;
    }

    .hero-stats-strip {
        flex-wrap: wrap;
        gap: 18px;
        padding: 22px 18px;
        margin-top: 56px;
    }

    .hero-stat-item {
        flex: 1 1 40%;
    }

    .hero-stat-divider {
        display: none;
    }

    /* Mobile Bento Cards */
    .bento-card-featured .bento-card-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .bento-card-content {
        padding: 28px;
    }

    .bento-card-compact .bento-card-inner {
        padding: 28px;
    }

    .bento-card-visual {
        min-height: 180px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .bento-card-title {
        font-size: 1.2rem;
    }

    .bento-metrics-visual {
        flex-direction: column;
        gap: 16px;
    }

    .bento-metric-divider {
        width: 40px;
        height: 1px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    /* About page mobile */
    .story-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    /* Contact page mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card-inner {
        padding: 28px 20px;
    }

    .page-hero {
        padding: 130px 0 64px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .industry-card {
        padding: 28px 16px;
    }

    .hero-headline {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .hero-pill {
        font-size: 0.72rem;
        padding: 6px 12px 6px 10px;
    }

    .hv-float-analytics {
        width: 148px;
        top: -2%;
        left: -2%;
    }

    .hv-float-conversion {
        width: 168px;
        bottom: 2%;
        left: 0;
    }

    .hv-float-roi {
        width: 150px;
        top: 12%;
        right: 0;
    }

    .trust-logos {
        gap: 24px 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-logo-item {
        font-size: 0.95rem;
    }

    .trust-logo-item i,
    .trust-logo-item svg {
        width: 20px;
        height: 20px;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        padding: 0 40px;
    }

    :root {
        --section-padding: 140px;
    }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-stats-section {
    padding: 64px 0 24px;
}

.portfolio-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 56px;
    padding: 32px 40px;
    background: var(--color-white, #fff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-lg, 20px);
    box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.1);
}

.portfolio-stat {
    text-align: center;
    min-width: 140px;
}

.portfolio-stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.portfolio-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.portfolio-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
}

.portfolio-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.portfolio-section-dark {
    background: var(--color-bg-dark);
}

.portfolio-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

/* Card */
.portfolio-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    transition: transform var(--transition-base);
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

.portfolio-card-frame {
    display: block;
    position: relative;
    background: #1a1a1f;
    border-radius: 14px 14px 14px 14px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 20px 40px -20px rgba(0, 0, 0, 0.3),
        0 8px 24px -16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition-base);
}

.portfolio-card:hover .portfolio-card-frame {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 30px 60px -20px rgba(0, 0, 0, 0.45),
        0 16px 36px -20px rgba(59, 130, 246, 0.25);
}

.portfolio-card-dark .portfolio-card-frame {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 20px 40px -20px rgba(0, 0, 0, 0.6),
        0 8px 24px -16px rgba(0, 0, 0, 0.4);
}

.portfolio-card-dark:hover .portfolio-card-frame {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 30px 60px -20px rgba(0, 0, 0, 0.7),
        0 16px 36px -20px rgba(236, 72, 153, 0.25);
}

/* Browser frame bar */
.portfolio-frame-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #2a2a32 0%, #1f1f25 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-frame-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.portfolio-frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-frame-dots span:nth-child(1) { background: #ff5f57; }
.portfolio-frame-dots span:nth-child(2) { background: #ffbd2e; }
.portfolio-frame-dots span:nth-child(3) { background: #28c840; }

.portfolio-frame-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio-frame-url i,
.portfolio-frame-url svg {
    width: 12px;
    height: 12px;
    color: var(--color-accent-green, #10b981);
    flex-shrink: 0;
}

.portfolio-frame-url span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-frame-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.portfolio-frame-actions i,
.portfolio-frame-actions svg {
    width: 14px;
    height: 14px;
}

.portfolio-card:hover .portfolio-frame-actions {
    color: rgba(255, 255, 255, 0.85);
}

/* Screenshot screen */
.portfolio-frame-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f5f6f8;
    overflow: hidden;
}

.portfolio-shot-skeleton {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg,
            rgba(0, 0, 0, 0.04) 8%,
            rgba(0, 0, 0, 0.08) 18%,
            rgba(0, 0, 0, 0.04) 33%);
    background-size: 200% 100%;
    animation: portfolio-skeleton-shimmer 1.6s linear infinite;
}

@keyframes portfolio-skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.portfolio-shot {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.portfolio-shot.is-loaded,
.portfolio-shot[src]:not([src=""]) {
    opacity: 1;
}

.portfolio-card:hover .portfolio-shot {
    transform: scale(1.03);
}

/* Hover overlay */
.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.5) 60%,
        rgba(15, 23, 42, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
}

.portfolio-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--color-white, #fff);
    color: var(--color-text-primary, #0f0f0f);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
    transform: translateY(8px);
    transition: transform var(--transition-base);
}

.portfolio-visit-btn i,
.portfolio-visit-btn svg {
    width: 16px;
    height: 16px;
}

.portfolio-card:hover .portfolio-visit-btn {
    transform: translateY(0);
}

/* Card meta footer */
.portfolio-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px 0;
}

.portfolio-card-meta-text {
    flex: 1;
    min-width: 0;
}

.portfolio-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-card-dark .portfolio-card-title {
    color: var(--color-white);
}

.portfolio-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-accent-blue);
    background: rgba(59, 130, 246, 0.08);
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.portfolio-card-dark .portfolio-card-tag {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-card-tag-pink {
    color: var(--color-accent-pink);
    background: rgba(236, 72, 153, 0.08);
}

.portfolio-card-dark .portfolio-card-tag-pink {
    color: #f9a8d4;
    background: rgba(236, 72, 153, 0.12);
}

.portfolio-card-link {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.portfolio-card-link i,
.portfolio-card-link svg {
    width: 16px;
    height: 16px;
}

.portfolio-card-link:hover {
    background: var(--color-text-primary);
    color: var(--color-white);
    transform: rotate(45deg);
}

.portfolio-card-dark .portfolio-card-link {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
}

.portfolio-card-dark .portfolio-card-link:hover {
    background: var(--color-white);
    color: var(--color-text-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .portfolio-stats {
        gap: 24px 32px;
        padding: 28px 24px;
    }

    .portfolio-stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .portfolio-stats {
        flex-direction: column;
        gap: 20px;
    }

    .portfolio-stat-divider {
        width: 60%;
        height: 1px;
    }

    .portfolio-frame-bar {
        padding: 8px 10px;
        gap: 8px;
    }

    .portfolio-frame-url {
        font-size: 0.68rem;
        padding: 5px 10px;
    }
}

/* ============================================================
   SERVICE PAGES — Feature list on light backgrounds
   ============================================================ */
.service-feature-list {
    margin-top: 28px;
}

.service-feature-list.mv-mission-list li {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.service-feature-list.mv-mission-list li i,
.service-feature-list.mv-mission-list li svg {
    color: var(--color-accent-green);
}

/* Ensure breadcrumb anchor styles apply when inserted between separators */
.page-hero-breadcrumb a + i + a {
    color: rgba(255, 255, 255, 0.7);
}

