/* LeadQualifiersLabs — Ultra-Modern Award-Winning Design */
/* Version: 5.0 — Premium Luxury Dark Theme */

:root {
    --bg: #0F172A;
    --bg-rgb: 15, 23, 42;
    --surface: #1E293B;
    --surface-rgb: 30, 41, 59;
    --surface-2: #273548;
    --surface-2-rgb: 39, 53, 72;
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.14);
    --metallic: rgba(212,175,55,0.12);
    --text: #F1F5F9;
    --text-dim: rgba(241,245,249,0.6);
    --text-muted: rgba(241,245,249,0.35);
    --accent: #D4AF37;
    --accent-rgb: 212, 175, 55;
    --accent-2: #E8C55A;
    --cyan: #0EA5E9;
    --cyan-rgb: 14, 165, 233;
    --emerald: #34d399;
    --emerald-rgb: 52, 211, 153;
    --rose: #fb7185;
    --rose-rgb: 251, 113, 133;
    --amber: #fbbf24;
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    --gold-dim: #B8962E;
    --violet: #a78bfa;
    --violet-rgb: 167, 139, 250;
    --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --font: 'Roboto', 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

::selection { background: var(--accent); color: white; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 769px) { .container { padding: 0 32px; } }
@media (min-width: 1440px) { .container { padding: 0 48px; } }

.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent);
    color: var(--bg);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 100000;
    transition: top 0.2s ease;
}
.skip-to-content:focus {
    top: 0;
}

/* ============================
   CUSTOM CURSOR
   ============================ */
.cursor {
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
    transform: translate(-50%, -50%);
    top: 0;
    left: 0;
    background: transparent;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    top: 0;
    left: 0;
    transition: transform 0.15s var(--ease), background 0.3s var(--ease);
    box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.8), 0 0 20px rgba(var(--cyan-rgb), 0.4);
}

.cursor.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--cyan);
    background: rgba(var(--cyan-rgb), 0.08);
    box-shadow: 0 0 25px rgba(var(--cyan-rgb), 0.3), inset 0 0 15px rgba(var(--cyan-rgb), 0.1);
}

.cursor.hovering + .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

/* Cursor on links/buttons */
.cursor.on-link {
    width: 48px;
    height: 48px;
    border-color: var(--accent-2);
    background: rgba(var(--accent-rgb), 0.1);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3), inset 0 0 12px rgba(var(--accent-rgb), 0.08);
}

/* Cursor on CTA buttons */
.cursor.on-cta {
    width: 68px;
    height: 68px;
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.12);
    box-shadow: 0 0 35px rgba(var(--accent-rgb), 0.35), 0 0 70px rgba(var(--accent-rgb), 0.12), inset 0 0 20px rgba(var(--accent-rgb), 0.1);
    border-width: 1.5px;
}

/* Cursor on text inputs */
.cursor.on-input {
    width: 3px;
    height: 26px;
    border-radius: 2px;
    background: var(--cyan);
    border: none;
    box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.8);
}

/* ============================
   Buttons
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1rem; }

.btn-link {
    color: var(--accent-2);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.btn-link:hover { gap: 14px; color: var(--cyan); }

/* ============================
   Navbar
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
}

/* GLOBAL FIX: Account for fixed navbar height on ALL pages */
main {
    padding-top: 80px;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(var(--accent-rgb), 0.3));
    transition: filter 0.3s ease;
}

.navbar-logo:hover .logo-svg {
    filter: drop-shadow(0 4px 16px rgba(var(--accent-rgb), 0.5));
}

.logo-text {
    line-height: 1;
}

/* Premium Logo Typography */
.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    letter-spacing: -0.04em;
}

.logo-brand {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
    color: #F1F5F9;
}

.logo-labs {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: #D4AF37;
    margin-left: 3px;
}

.navbar-logo:hover .logo-brand {
    color: #ffffff;
}

.navbar-logo:hover .logo-labs {
    color: #E8C55A;
}

@media (max-width: 768px) {
    .logo-brand { font-size: 1rem; }
    .logo-labs { font-size: 1rem; }
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-menu > li > a {
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.navbar-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--accent));
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-menu > li > a:hover,
.navbar-menu > li > a.active {
    color: var(--text);
    background: rgba(255,255,255,0.04);
}

.navbar-menu > li > a:hover::after,
.navbar-menu > li > a.active::after {
    width: 60%;
    opacity: 1;
}

.navbar-menu > li > a:hover {
    color: var(--cyan);
}

.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    min-width: 260px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    z-index: 1001;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    position: relative;
}

.dropdown li a::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: 8px;
    width: 0;
    height: 1.5px;
    background: var(--cyan);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.dropdown li a:hover {
    background: rgba(14,165,233,0.06);
    color: var(--cyan);
}

.dropdown li a:hover::after {
    width: calc(100% - 32px);
}

.dropdown li a i {
    width: 32px;
    height: 32px;
    background: rgba(var(--accent-rgb), 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--accent-2);
}

.btn-cta-nav {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%) !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 100px !important;
    box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.35);
}

.btn-cta-nav:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.5) !important;
}

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

.navbar-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

/* Navbar Responsive */
@media (max-width: 992px) {
    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--bg);
        flex-direction: column;
        padding: 80px 20px 28px;
        gap: 0;
        border-left: 1px solid var(--border);
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .navbar-menu.open { right: 0; }
    .navbar-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0,0,0,0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
        z-index: -1;
    }
    .navbar-menu.open::before {
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-menu > li > a { padding: 16px 0; width: 100%; font-size: 1rem; }
    .has-dropdown .dropdown {
        display: none !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        box-shadow: none !important;
        background: var(--surface) !important;
        border: 1px solid var(--border) !important;
        border-radius: 12px !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }
    .has-dropdown.open .dropdown {
        display: block !important;
        padding: 8px 0 !important;
        margin-top: 8px !important;
    }
    .has-dropdown .dropdown li a {
        padding: 14px 16px !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        width: auto !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    .has-dropdown > a .fa-chevron-down {
        transition: transform 0.3s var(--ease);
        display: inline-block;
    }
    .has-dropdown.open > a .fa-chevron-down {
        transform: rotate(180deg);
    }
    .dropdown li a {
        color: var(--text-dim);
        font-size: 0.95rem;
        padding: 12px 16px;
        border-radius: 8px;
        display: block;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .dropdown li a:hover {
        background: rgba(14, 165, 233, 0.08);
        color: var(--cyan);
    }
    .dropdown li a i { display: none; }
    .btn-cta-nav { width: 100%; justify-content: center; margin-top: 16px; }
    .navbar-logo .logo-brand { font-size: 1.1rem; }
    .navbar-logo .logo-labs { font-size: 1.1rem; }
}

/* ============================
   Hero Section
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 100px;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 40%, rgba(var(--cyan-rgb), 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 80% 30%, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 50% 80%, rgba(var(--violet-rgb), 0.06) 0%, transparent 70%);
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { max-width: 660px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-2);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

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

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

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 620px;
}

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

.hero h1 .line-inner {
    display: block;
    transform: translateY(110%);
    animation: lineReveal 1s var(--ease) forwards;
}

.hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) .line-inner { animation-delay: 0.3s; }
.hero h1 .line:nth-child(4) .line-inner { animation-delay: 0.45s; }
@keyframes lineReveal {
    to { transform: translateY(0); }
}

.hero h1 .gradient-text,
.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--accent) 50%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero .gradient-text,
.sp-hero .gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.service-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.05) 0%, transparent 100%);
    position: relative;
}
.service-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.service-hero p {
    color: var(--text-dim);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sp-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}
.sp-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.sp-hero-sub {
    color: var(--text-dim);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.sp-hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 12px;
}

.hero-sub {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

.hero-trust {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-avatars {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-stack {
    display: flex;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.avatar-circle:first-child { margin-left: 0; }

.hero-trust .trust-text {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.hero-trust .trust-text strong {
    color: var(--text);
    font-weight: 600;
}

/* Hero 3D Visual */
.hero-visual {
    position: relative;
    perspective: 1200px;
}

.hero-graphic {
    transform-style: preserve-3d;
    animation: hero3d 12s ease-in-out infinite;
}

@keyframes hero3d {
    0%, 100% { transform: rotateY(-8deg) rotateX(4deg); }
    50% { transform: rotateY(8deg) rotateX(-4deg); }
}

.metric-card {
    background: rgba(var(--surface-rgb), 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text);
    margin-bottom: 16px;
    transition: all 0.5s var(--ease);
    transform: translateZ(0);
}

.metric-card:hover {
    transform: translateZ(30px) translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-icon.blue { background: rgba(var(--cyan-rgb), 0.15); color: var(--cyan); border: 1px solid rgba(var(--cyan-rgb), 0.25); }
.metric-icon.cyan { background: rgba(var(--cyan-rgb), 0.15); color: var(--cyan); border: 1px solid rgba(var(--cyan-rgb), 0.25); }
.metric-icon.emerald { background: rgba(var(--emerald-rgb), 0.15); color: var(--emerald); border: 1px solid rgba(var(--emerald-rgb), 0.25); }
.metric-icon.violet { background: rgba(var(--violet-rgb), 0.15); color: var(--violet); border: 1px solid rgba(var(--violet-rgb), 0.25); }

.metric-info { flex: 1; }
.metric-info span { display: block; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-top: 4px;
}

.metric-value.green { color: var(--emerald); }
.metric-value.blue { color: var(--accent-2); }
.metric-value.cyan { color: var(--cyan); }
.metric-value.violet { color: var(--violet); }

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 { width: 300px; height: 300px; background: var(--accent); top: -100px; right: -50px; animation-delay: 0s; }
.orb-2 { width: 200px; height: 200px; background: var(--cyan); bottom: -50px; left: -80px; animation-delay: 3s; }
.orb-3 { width: 150px; height: 150px; background: var(--violet); top: 50%; left: 50%; animation-delay: 6s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* ============================
   Sections
   ============================ */
.section {
    padding: 140px 0;
    position: relative;
}

.section-gradient {
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.03) 0%, transparent 100%);
}

.section-dark {
    background: rgba(7, 16, 32, 0.4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Section heading colors */
.results-section .section-header h2 { color: #F5C542; }
.section.section-gradient:has(.svc-primary-header) .section-header h2 { color: var(--cyan); }
.svc-primary-header h2 { color: #F5C542; }
.process-section .section-header h2 { color: var(--violet); }
.why-section .section-header h2 { color: var(--emerald); }
.testimonials-section .section-header h2 { color: var(--accent); }
.section.section-gradient:has(.team-grid-new) .section-header h2 { color: var(--accent-2); }

.section-header p {
    color: var(--text-dim);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================
   PRELOADER — v4.0 Premium
   ============================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    opacity: 0;
    animation: preloaderFadeIn 0.6s ease 0.2s forwards;
}

.preloader-bar-track {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: preloaderFadeIn 0.6s ease 0.4s forwards;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--accent));
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.4);
}

.preloader-percent {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0;
    animation: preloaderFadeIn 0.6s ease 0.5s forwards;
}

@keyframes preloaderFadeIn {
    to { opacity: 1; }
}

/* ============================
   SCROLL PROGRESS BAR
   ============================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--accent), var(--accent-2));
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.5);
}

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

/* ============================
   INFINITE MARQUEE TICKER
   ============================ */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(var(--accent-rgb), 0.03);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.marquee-item:hover { color: var(--text); }

.marquee-item i {
    color: var(--accent);
    font-size: 0.6rem;
}

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

/* ============================
   CURSOR TRAIL
   ============================ */
#cursorTrailContainer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99997;
}

.cursor-trail {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.5);
}

/* ============================
   GLITCH TEXT EFFECT
   ============================ */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch1 0.3s ease forwards;
    color: var(--cyan);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch2 0.3s ease forwards;
    color: var(--rose);
    z-index: -2;
}

@keyframes glitch1 {
    0% { opacity: 0; transform: translate(0); }
    20% { opacity: 0.8; transform: translate(-2px, 2px); }
    40% { opacity: 0.8; transform: translate(2px, -2px); }
    60% { opacity: 0.8; transform: translate(-1px, 1px); }
    100% { opacity: 0; transform: translate(0); }
}

@keyframes glitch2 {
    0% { opacity: 0; transform: translate(0); }
    20% { opacity: 0.8; transform: translate(2px, -2px); }
    40% { opacity: 0.8; transform: translate(-2px, 2px); }
    60% { opacity: 0.8; transform: translate(1px, -1px); }
    100% { opacity: 0; transform: translate(0); }
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s var(--ease);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s var(--ease);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s var(--ease);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ============================
   MAGNETIC BUTTON EFFECT
   ============================ */
.magnetic {
    transition: transform 0.3s var(--ease);
}

/* ============================
   HOVER LIFT EFFECT
   ============================ */
.hover-lift {
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

/* ============================
   GLOW BORDER ON HOVER
   ============================ */
.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), var(--cyan), var(--emerald));
    -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;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.glow-border:hover::after { opacity: 1; }

/* ============================
   ANIMATED GRADIENT BORDER
   ============================ */
@keyframes borderRotate {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.animated-border {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle), var(--accent), var(--cyan), var(--emerald), var(--violet), var(--accent));
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

.animated-border::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: var(--surface);
    z-index: -1;
}

/* ============================
   FLOATING BADGE
   ============================ */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================
   SHIMMER EFFECT
   ============================ */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ============================
   GRADIENT TEXT ANIMATED
   ============================ */
.gradient-text-animated {
    background: linear-gradient(135deg, var(--accent-2), var(--cyan), var(--emerald), var(--violet), var(--accent-2));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================
   INTERACTIVE BLOB
   ============================ */
.blob-container {
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.blob {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent);
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%; transform: rotate(0deg) scale(1); }
    25% { border-radius: 40% 60% 50% 50% / 60% 50% 50% 40%; transform: rotate(90deg) scale(1.05); }
    50% { border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%; transform: rotate(180deg) scale(1); }
    75% { border-radius: 60% 50% 50% 40% / 40% 50% 50% 60%; transform: rotate(270deg) scale(1.05); }
}

/* ============================
   TYPEWRITER EFFECT
   ============================ */
.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid var(--accent);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink 0.8s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* ============================
   SMOOTH PAGE TRANSITIONS
   ============================ */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ============================
   HOVER RIPPLE EFFECT
   ============================ */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 10%, transparent 10.01%);
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.8s;
}

.ripple:hover::before {
    transform: scale(0);
    opacity: 1;
    transition: 0s;
}

/* ============================
   TRUSTED BY LOGOS BAR
   ============================ */
.trusted-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

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

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.trusted-logos:hover { opacity: 0.8; }

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}
.trusted-logo:hover { opacity: 0.7; }
.trusted-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}
.trusted-logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.trusted-logo i {
    font-size: 1.3rem;
    color: var(--accent-2);
}

/* ============================
   MEGA RESULTS SECTION
   ============================ */
.results-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(var(--accent-rgb), 0.03) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.result-card {
    text-align: center;
    padding: 48px 24px;
    background: rgba(var(--surface-rgb), 0.4);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.result-card:hover::before { opacity: 1; }

.result-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-2);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ============================
   PROCESS / HOW IT WORKS
   ============================ */
.process-section {
    padding: 140px 0;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--cyan), var(--emerald), var(--violet));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    background: var(--bg);
    border: 3px solid var(--accent);
    color: var(--accent-2);
    transition: all 0.5s var(--ease);
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2);
}

.process-step:hover .process-number {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.4);
}

.process-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 250px;
    margin: 0 auto;
}

/* ============================
   WHY CHOOSE US — Premium Bento
   ============================ */
.why-section {
    padding: 140px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-card {
    background: rgba(var(--bg-rgb), 0.5);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.why-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(var(--cyan-rgb), 0.05) 100%);
}

.why-card:hover {
    border-color: rgba(var(--accent-rgb), 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent-2);
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.why-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
}

.why-card.featured .why-icon {
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    color: white;
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
}

.why-card.featured h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.why-card.featured p {
    font-size: 1.05rem;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.why-stat {
    text-align: center;
    padding: 20px;
    background: rgba(var(--accent-rgb), 0.06);
    border-radius: 16px;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.why-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-2);
    line-height: 1;
    margin-bottom: 6px;
}

.why-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================
   BACK TO TOP BUTTON
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.55);
}

/* ============================
   FLOATING CTA BUTTON
   ============================ */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-social-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(var(--surface-rgb), 0.75);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
}

.floating-social-group.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-toggle-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.4);
}

.floating-toggle-btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .floating-cta {
        right: 8px !important;
        bottom: 24px !important;
    }
    .floating-book-btn {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .floating-toggle-btn {
        width: 44px;
        height: 44px;
    }
    .floating-toggle-btn i {
        font-size: 1.1rem;
    }
}

.floating-toggle-btn.active {
    background-color: var(--surface);
    color: var(--text);
}


.floating-cta .floating-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 1.05rem;
    transition: all 0.25s ease;
    text-decoration: none;
    background: transparent;
}

.floating-cta .floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}
.floating-cta .floating-btn[title="Facebook"]:hover { background: #1877F2; }
.floating-cta .floating-btn[title="Twitter / X"]:hover { background: #000; }
.floating-cta .floating-btn[title="LinkedIn"]:hover { background: #0A66C2; }
.floating-cta .floating-btn[title="Instagram"]:hover { background: #E4405F; }
.floating-cta .floating-btn[title="WhatsApp"]:hover { background: #25D366; }
.floating-cta .floating-btn[title="Telegram"]:hover { background: #0088CC; }
.floating-cta .floating-btn[title="Messenger"]:hover { background: #0078FF; }

.floating-cta .btn {
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.floating-cta .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.5);
}

.floating-cta .btn i {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================
   SOCIAL PROOF BAR
   ============================ */
.social-proof-bar {
    padding: 80px 0;
    background: rgba(var(--surface-rgb), 0.3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.proof-item {
    text-align: center;
    position: relative;
}

.proof-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border);
}

.proof-value {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-label {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 500;
}

.proof-sublabel {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================
   TESTIMONIAL VIDEO CARD
   ============================ */
.testimonial-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, rgba(var(--cyan-rgb), 0.04) 100%);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.testimonial-featured .testimonial-quote {
    padding: 0;
}

.testimonial-featured blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
}

.testimonial-featured .author-info strong {
    font-size: 1.1rem;
}

.testimonial-featured .author-info span {
    font-size: 0.9rem;
}

/* ============================
   AWARDS BAR
   ============================ */
.awards-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.awards-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.contact-grid > div {
    padding: 0;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-content strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-content span,
.contact-info-content a {
    color: var(--text-dim);
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-dim);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    border-color: var(--cyan);
}

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

.contact-form-wrapper .btn {
    width: 100%;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(var(--surface-rgb), 0.5);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.award-item:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    color: var(--text);
}

.award-item i {
    color: var(--amber);
    font-size: 1rem;
}

/* ============================
   CTA PREMIUM
   ============================ */
.cta-premium {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--cyan-rgb), 0.03) 50%, transparent 100%);
}

.cta-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 500px at 30% 50%, rgba(var(--cyan-rgb), 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 70% 50%, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-premium-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-premium h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.cta-premium p {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-premium .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cta-premium .trust-text {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-premium .trust-text i { color: var(--emerald); }

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 36px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--surface-rgb), 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
}

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

.back-to-top:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-4px);
}

/* ============================
    FOOTER
    ============================ */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(var(--surface-rgb), 0.5);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.3);
    color: var(--cyan);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--cyan);
}

.footer-contact h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--cyan);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.footer-newsletter {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.newsletter-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.newsletter-content p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.9rem;
    min-width: 260px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--cyan);
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: var(--cyan);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-2);
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-msg {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-top: 8px;
}

.newsletter-msg.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.newsletter-msg.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================
    SERVICE PAGE (sp-) BASE STYLES
    ============================ */
.sp-hero-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}
.sp-hero-content {
    max-width: 700px;
}
.sp-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-2);
    flex-shrink: 0;
}
.sp-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.sp-features {
    padding: 120px 0;
}
.sp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sp-feature-card {
    background: var(--surface);
    border: 1px solid var(--metallic);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
.sp-feature-card:hover {
    border-color: rgba(var(--accent-rgb), 0.35);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.sp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--cyan-rgb), 0.1);
    border: 1px solid rgba(var(--cyan-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 20px;
}
.sp-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.sp-feature-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}
.sp-benefits {
    padding: 120px 0;
}
.sp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sp-industries {
    padding: 120px 0;
}
.sp-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sp-industry-card {
    background: var(--surface);
    border: 1px solid var(--metallic);
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.5s var(--ease);
}
.sp-industry-card:hover {
    border-color: rgba(var(--accent-rgb), 0.35);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.sp-cta {
    padding: 120px 0;
    text-align: center;
}
.pricing-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}
.pricing-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-published {
    background: rgba(var(--emerald-rgb), 0.15);
    color: var(--emerald);
    border: 1px solid rgba(var(--emerald-rgb), 0.25);
}
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-dim);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text);
    border-color: var(--border-hover);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-dim);
    transition: all 0.3s var(--ease);
}
.pagination a:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    color: var(--text);
    background: rgba(var(--accent-rgb), 0.08);
}
.pagination .active, .pagination span.current {
    background: rgba(var(--accent-rgb), 0.15);
    border-color: rgba(var(--accent-rgb), 0.35);
    color: var(--accent-2);
}

/* ============================
    RESPONSIVE ADDITIONS
    ============================ */
@media (max-width: 1024px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card.featured { grid-row: span 1; }
    .testimonial-featured { grid-column: span 1; grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .proof-item::after { display: none; }
    .floating-cta { bottom: 20px; right: 20px; }
    .floating-cta .btn { padding: 14px 24px; font-size: 0.9rem; }
    .awards-grid { gap: 16px; }
    .award-item { padding: 10px 18px; font-size: 0.8rem; }
    .cta-premium .btn-group { flex-direction: column; }
}

/* ============================
   REVIEW MODAL
   ============================ */
.review-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.review-modal.open { display: flex; }
.review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}
.review-modal-content {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.review-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.6rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.review-modal-close:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
}
.star-rating-input {
    display: flex;
    gap: 6px;
}
.star-rating-input i {
    font-size: 1.4rem;
    color: rgba(241,245,249,0.35);
    cursor: pointer;
    transition: color 0.15s;
}
.star-rating-input i.active,
.star-rating-input i:hover {
    color: var(--amber);
}
#reviewMsg.success {
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
#reviewMsg.error {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================
   SUB-CATEGORY CARDS (A–D)
   ============================ */
.sp-subcats {
    padding: 80px 0;
    background: var(--bg);
}

.sp-subcats-header {
    text-align: center;
    margin-bottom: 56px;
}

.sp-subcats-header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    margin: 12px 0 10px;
    color: var(--text);
}

.sp-subcats-header p {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.sp-subcats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sp-subcat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sp-subcat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--accent));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.sp-subcat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.06);
}

.sp-subcat-card:hover::before {
    opacity: 1;
}

.sp-subcat-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--cyan);
    letter-spacing: 0.02em;
}

.sp-subcat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--cyan);
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.sp-subcat-card:hover .sp-subcat-icon {
    transform: scale(1.08);
    background: rgba(14, 165, 233, 0.14);
}

.sp-subcat-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.sp-subcat-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 14px;
    line-height: 1.4;
}

.sp-subcat-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.sp-subcat-points {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-subcat-points li {
    font-size: 0.82rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-subcat-points li i {
    color: var(--emerald);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.sp-subcat-card .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
}

@media (max-width: 1200px) {
    .sp-subcats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sp-subcats-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-subcat-card { padding: 28px 22px 24px; }
}

/* ============================
   PRIMARY SERVICE HEADER
   ============================ */
.svc-primary-header {
    text-align: center;
    padding: 48px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.svc-primary-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--accent));
}

.svc-primary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.svc-primary-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.svc-primary-header p {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(14, 165, 233, 0.06);
}

/* ============================
   PRICING PAGE CARDS
   ============================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(180deg, #273449 0%, #222E42 45%, #1B2435 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14,165,233,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.pricing-card-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.pricing-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.pricing-card-price {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #EAB308;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}
.pricing-suffix {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 500;
    margin-left: 4px;
    align-self: flex-end;
    margin-bottom: 4px;
}
.pricing-custom {
    font-size: 1.15rem;
    color: var(--cyan);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}
.pricing-features li i {
    color: var(--emerald);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    padding: 16px 24px;
    font-size: 0.95rem;
    background: linear-gradient(180deg, #FACC15, #EAB308);
    color: #0B0F1A;
    border: none;
}
.pricing-cta:hover {
    background: linear-gradient(180deg, #FCD34D, #F59E0B);
    box-shadow: 0 10px 30px rgba(234,179,8,.30);
    transform: translateY(-2px);
    color: #0B0F1A;
    border: none;
}

/* ============================
   ENTERPRISE SECTION
   ============================ */
.enterprise-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), #E8C56D);
    color: #0B0F1A;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.enterprise-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.enterprise-section > p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
    text-align: left;
}
.enterprise-feature {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s ease;
}
.enterprise-feature:hover {
    border-color: rgba(14,165,233,0.3);
}
.enterprise-feature i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}
.enterprise-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}
.enterprise-feature p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .enterprise-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .enterprise-features { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   INDUSTRY HUB CARDS
   ============================ */
.service-card-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

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

.hub-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--accent));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.hub-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.06);
}

.hub-card:hover::before {
    opacity: 1;
}

.hub-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.hub-card:hover .hub-card-icon {
    transform: scale(1.08);
    background: rgba(14, 165, 233, 0.14);
}

.hub-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.hub-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.hub-card-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hub-card-points li {
    font-size: 0.84rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hub-card-points li i {
    color: var(--emerald);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.hub-cta {
    width: 100%;
    justify-content: center;
}

/* Base Grids */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

/* ============================
   PORTFOLIO CARDS — Premium
   ============================ */
.portfolio-card-new {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    height: 100%;
}

.portfolio-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.12);
}

/* Image container — fixed aspect ratio, no stretch */
.portfolio-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-2);
    flex-shrink: 0;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.portfolio-card-new:hover .portfolio-card-image img {
    transform: scale(1.06);
}

/* Photo count badge */
.portfolio-card-photo-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
    z-index: 2;
}
.portfolio-card-photo-badge i {
    font-size: 0.65rem;
}

.portfolio-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--cyan-rgb), 0.04));
}

.portfolio-card-image-placeholder i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

/* Card body — flex-grow ensures equal heights */
.portfolio-card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    flex: 1;
}

/* Category badge */
.portfolio-card-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.12);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

/* Project title */
.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text);
}

/* Description */
.portfolio-card-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-dim);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Metrics */
.portfolio-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 0;
    margin-bottom: 16px;
    border-top: 1px solid var(--border);
}

.portfolio-card-metric-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.portfolio-card-metric-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.portfolio-card-metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    line-height: 1.3;
}

/* CTA button */
.portfolio-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-2);
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: auto;
    padding-top: 4px;
}

.portfolio-card-cta i {
    font-size: 0.75rem;
    transition: transform 0.4s ease;
}

.portfolio-card-cta:hover {
    gap: 12px;
    color: var(--cyan);
}

.portfolio-card-cta:hover i {
    transform: translateX(4px);
}

/* View All Projects wrapper */
.portfolio-view-all {
    text-align: center;
    margin-top: 48px;
}

.portfolio-view-all .btn {
    padding: 16px 40px;
    font-size: 0.95rem;
}

/* Portfolio card tech tags */
.portfolio-card-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0 0;
}
.portfolio-card-tech {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(14,165,233,0.07);
    border: 1px solid rgba(14,165,233,0.12);
}

/* Featured badge */
.portfolio-card-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F172A;
    background: linear-gradient(135deg, #D4AF37, #F0D68A);
    box-shadow: 0 2px 8px rgba(212,175,55,0.3);
}

/* ============================
   PORTFOLIO GALLERY VIEWER
   Premium Split Layout
   ============================ */
.portfolio-gallery {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.portfolio-gallery.open {
    opacity: 1;
    visibility: visible;
}

.portfolio-gallery-layout {
    display: flex;
    width: 100%;
    height: 100%;
}

/* ── Close button ── */
.portfolio-gallery-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100002;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.portfolio-gallery-close:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: scale(1.12);
}
.portfolio-gallery-close:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

/* ── Left: Image Panel ── */
.portfolio-gallery-image-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    padding: 60px 20px 20px;
}

.portfolio-gallery-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.portfolio-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    user-select: none;
    -webkit-user-drag: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Counter overlay on image */
.portfolio-gallery-counter {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    pointer-events: none;
    background: rgba(0,0,0,0.4);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Nav arrows */
.portfolio-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.portfolio-gallery-nav:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.08);
}
.portfolio-gallery-nav:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}
.portfolio-gallery-nav.prev { left: 16px; }
.portfolio-gallery-nav.next { right: 16px; }
.portfolio-gallery-nav:disabled {
    opacity: 0.2;
    cursor: default;
    transform: translateY(-50%) scale(1) !important;
}

/* ── Right: Info Panel ── */
.portfolio-gallery-info-panel {
    width: 380px;
    flex-shrink: 0;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.gi-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 40px 32px 32px;
    -webkit-overflow-scrolling: touch;
}
.gi-scroll::-webkit-scrollbar { width: 4px; }
.gi-scroll::-webkit-scrollbar-track { background: transparent; }
.gi-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

.gi-project-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}
.gi-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(14,165,233,0.4), transparent);
    margin: 14px 0 18px;
}
.gi-image-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
}
.gi-description {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Technologies */
.gi-section-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.gi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.gi-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.15);
}

/* Result badge */
.gi-result-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.15);
    margin-bottom: 24px;
    text-align: center;
}
.gi-result-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1.2;
}
.gi-result-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* Thumbnails in info panel */
.gi-thumbs-section {
    margin-top: 4px;
}
.portfolio-gallery-thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 4px 0 8px;
    -webkit-overflow-scrolling: touch;
}
.portfolio-gallery-thumbs::-webkit-scrollbar { height: 3px; }
.portfolio-gallery-thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 2px; }
.portfolio-gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.portfolio-gallery-thumb {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.45;
}
.portfolio-gallery-thumb:hover { opacity: 0.8; }
.portfolio-gallery-thumb.active {
    border-color: var(--cyan);
    opacity: 1;
}
.portfolio-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Gallery Responsive ── */
@media (max-width: 1024px) {
    .portfolio-gallery-info-panel { width: 320px; }
    .gi-scroll { padding: 28px 24px 24px; }
}

@media (max-width: 768px) {
    .portfolio-gallery-layout { flex-direction: column; }
    .portfolio-gallery-image-panel {
        flex: none;
        height: 50vh;
        padding: 50px 8px 8px;
    }
    .portfolio-gallery-info-panel {
        width: 100%;
        flex: 1;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .gi-scroll { padding: 20px 16px 16px; }
    .portfolio-gallery-nav { width: 36px; height: 36px; font-size: 0.85rem; }
    .portfolio-gallery-nav.prev { left: 8px; }
    .portfolio-gallery-nav.next { right: 8px; }
    .portfolio-gallery-counter { top: 14px; left: 14px; font-size: 0.75rem; }
    .portfolio-gallery-thumb { width: 48px; height: 36px; }
    .gi-project-name { font-size: 1rem; }
    .gi-result-value { font-size: 1.15rem; }
}

@media (max-width: 480px) {
    .portfolio-gallery-image-panel { height: 40vh; padding: 44px 4px 4px; }
    .portfolio-gallery-thumb { width: 40px; height: 30px; }
    .gi-scroll { padding: 16px 12px 12px; }
    .portfolio-gallery-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 1.1rem; }
}

/* Make card clickable */
.portfolio-card-new {
    cursor: pointer;
}

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

/* ============================
   RESPONSIVE — Comprehensive
   ============================ */

/* Tablet and below */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content { max-width: 100%; }
    .hero h1 { max-width: 100%; }
    .hero-sub { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: flex; justify-content: center; margin-top: 20px; }
    .hero-graphic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 400px; transform: none; }
    .metric-card { display: flex; }

    .nav-container { padding: 16px 24px; }
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card.featured { grid-row: span 1; }
    .sp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-subcats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .bento-grid,
    .portfolio-grid,
    .testimonials-grid,
    .results-grid,
    .process-grid,
    .why-grid,
    .sp-features-grid,
    .sp-industries-grid,
    .sp-benefits-grid,
    .sp-subcats-grid,
    .hub-grid,
    .enterprise-features,
    .trusted-logos,
    .awards-grid,
    .proof-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    
    .bento-card.featured { grid-column: span 1; }
    .why-card.featured { grid-row: span 1; }
    
    .site-footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-services { display: none; }
    .footer-social { justify-content: center; }
    .footer-contact ul li { justify-content: center; }
    .footer-newsletter { flex-direction: column; text-align: center; padding: 24px; margin: 16px 0; border-radius: 12px; background: rgba(var(--accent-rgb), 0.06); border: 1px solid rgba(var(--accent-rgb), 0.15); }
    .newsletter-form { width: 100%; justify-content: center; }
    
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .stat-item::after { display: none; }
    .stat-number { font-size: 1.8rem; }
    
    .lead-form { padding: 32px 24px; }
    
    .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .contact-grid > div { padding: 0 !important; }
    
    .portfolio-card-new { min-width: 0; }
    .portfolio-card-image { aspect-ratio: 16 / 9; }
    .portfolio-card-body { padding: 18px; }
    .portfolio-card-title { font-size: 1.05rem; }
    .portfolio-card-desc { font-size: 0.84rem; -webkit-line-clamp: 2; }
    .portfolio-card-metrics { gap: 4px; padding: 10px 0; }
    .portfolio-card-metric-value { font-size: 0.95rem; }
    
    .floating-cta { bottom: 20px; right: 20px; }
    .floating-cta .btn { padding: 14px 24px; font-size: 0.9rem; }
    
    .back-to-top { bottom: 100px; right: 20px; }
    
    .awards-grid { gap: 16px; }
    .award-item { padding: 10px 18px; font-size: 0.8rem; }
    
    .proof-grid { gap: 32px; }
    .proof-item::after { display: none; }
    
    .cta-premium .btn-group { flex-direction: column; }
    .cta-premium .btn-group .btn { width: 100%; justify-content: center; }
    
    .cursor, .cursor-dot { display: none !important; }
    
    .btn-lg { padding: 16px 32px; font-size: 0.95rem; }

    /* ── Result Cards Mobile Enhancement ── */
    .result-card {
        padding: 32px 20px;
        background: rgba(var(--surface-rgb), 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s var(--ease);
    }

    .result-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.6;
    }

    .result-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), transparent 50%, rgba(var(--cyan-rgb), 0.15));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .result-card:nth-child(1) { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(var(--accent-rgb), 0.06); }
    .result-card:nth-child(2) { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(var(--cyan-rgb), 0.06); }
    .result-card:nth-child(3) { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(var(--emerald-rgb), 0.06); }
    .result-card:nth-child(4) { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px rgba(var(--violet-rgb), 0.06); }

    .result-card:active {
        transform: scale(0.98);
        border-color: rgba(var(--accent-rgb), 0.3);
    }

    .result-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 1.4rem;
    }

    /* ── Proof/Social Bar Mobile Enhancement ── */
    .social-proof-bar {
        background: rgba(var(--surface-rgb), 0.5);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(var(--accent-rgb), 0.1);
        border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
    }

    .proof-item {
        padding: 20px;
        border-radius: 16px;
        background: rgba(var(--surface-rgb), 0.3);
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
    }

    .proof-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(var(--cyan-rgb), 0.5), transparent);
    }

    /* ── Hero Badge Mobile Pulse ── */
    .hero-badge {
        animation: badgeGlow 3s ease-in-out infinite;
    }

    @keyframes badgeGlow {
        0%, 100% { box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.1); }
        50% { box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.2); }
    }

    /* ── Hero Gradient Enhancement Mobile ── */
    .hero-gradient {
        background:
            radial-gradient(ellipse 500px 400px at 30% 30%, rgba(var(--cyan-rgb), 0.12) 0%, transparent 70%),
            radial-gradient(ellipse 400px 350px at 70% 60%, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%),
            radial-gradient(ellipse 350px 300px at 50% 90%, rgba(var(--violet-rgb), 0.08) 0%, transparent 70%);
    }

    /* ── Orb Adjustments Mobile ── */
    .orb-1 { width: 200px; height: 200px; top: -60px; right: -40px; opacity: 0.25; }
    .orb-2 { width: 150px; height: 150px; bottom: -30px; left: -50px; opacity: 0.2; }
    .orb-3 { width: 100px; height: 100px; opacity: 0.15; }

    .section-header h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .section-header p { font-size: 1rem; }
    
    .bento-card { padding: 32px 24px; }
    .bento-icon { width: 56px; height: 56px; font-size: 1.3rem; }
    
    .testimonial-card { padding: 32px 24px; }
    
    .team-grid-new { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing-card { min-height: auto; }
    
    .sp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-subcats-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-subcat-card { padding: 28px 22px 24px; }
    
    .service-hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .sp-hero-sub { font-size: 1rem; }
    .sp-hero-desc { font-size: 0.95rem; }
    
    .svc-primary-header { padding: 32px 24px; }
    .svc-primary-header h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    
    .marquee-track { gap: 40px; }
    .marquee-item { font-size: 1rem; }
    
    .review-modal-content { padding: 32px 24px; margin: 16px; max-width: calc(100% - 32px); }
    
    .service-hero { padding: 60px 0 40px; }
    .sp-features { padding: 80px 0; }
    .sp-benefits { padding: 80px 0; }
    .sp-industries { padding: 80px 0; }
    .sp-cta { padding: 80px 0; }

    .result-number { font-size: 2.2rem; }
    .proof-value { font-size: 2rem; }
    .process-number { width: 72px; height: 72px; font-size: 1.5rem; margin-bottom: 20px; }
    .process-step p { max-width: 100%; }
    .pricing-amount { font-size: 2.2rem; }
    .pricing-suffix { font-size: 0.95rem; }

    .footer-grid { gap: 20px; }
    .footer-links { text-align: left; }
    .footer-links h4, .footer-contact h4 { font-size: 0.8rem; margin-bottom: 12px; }
    .footer-links ul li { margin-bottom: 6px; }
    .footer-links ul li a { font-size: 0.82rem; }
    .footer-tagline { font-size: 0.8rem; margin-bottom: 14px; }
    .footer-logo { font-size: 1.1rem; margin-bottom: 14px; }
    .footer-social { gap: 8px; }
    .footer-social a { width: 32px; height: 32px; font-size: 0.8rem; }
    .footer-contact { text-align: left; }
    .footer-contact ul li { gap: 8px; font-size: 0.82rem; margin-bottom: 8px; }
    .footer-contact ul li i { font-size: 0.8rem; width: 14px; }
    .footer-newsletter { padding: 20px; gap: 12px; border-radius: 12px; background: rgba(var(--accent-rgb), 0.06); border: 1px solid rgba(var(--accent-rgb), 0.15); }
    .newsletter-content p { display: none; }
    .newsletter-content h4 { font-size: 0.85rem; margin-bottom: 0; }
    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-form input { padding: 10px 14px; font-size: 0.85rem; min-width: 0; width: 100%; box-sizing: border-box; }
    .newsletter-form button { padding: 10px 14px; font-size: 0.85rem; width: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-weight: 700; }
    .footer-bottom { padding: 14px 0; font-size: 0.75rem; }

    .why-card { padding: 32px 24px; }
    .why-card.featured { padding: 36px 28px; }
    .why-stat-value { font-size: 1.6rem; }

    .blog-filter { gap: 8px; }
    .blog-filter .btn { padding: 8px 16px; font-size: 0.8rem; }

    .hero-trust-avatars { flex-direction: column; align-items: center; gap: 12px; }
    .avatar-circle { width: 36px; height: 36px; font-size: 0.8rem; }
    .trust-text { font-size: 0.85rem; text-align: center; }

    .contact-form-wrapper { padding: 24px 16px; }

    .portfolio-card-body { padding: 16px; }
    .portfolio-card-title { font-size: 1rem; }

    .marquee-section { overflow: hidden; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    .hero { padding: 100px 0 40px; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; text-align: center; gap: 12px; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .stat-item { text-align: center; }
    
    .btn { padding: 14px 28px; font-size: 0.9rem; }
    .btn-lg { padding: 16px 32px; }
    
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 50px; }
    
    .bento-card { padding: 24px 20px; }
    .testimonial-card { padding: 24px 20px; }
    .team-grid-new { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    
    .floating-cta { bottom: 16px; right: 16px; }
    .floating-cta .btn { padding: 12px 20px; font-size: 0.85rem; }
    .back-to-top { bottom: 90px; right: 16px; width: 40px; height: 40px; }
    
    .marquee-track { gap: 24px; }
    .marquee-item { font-size: 0.9rem; gap: 8px; }
    
    .preloader-logo { font-size: 1.5rem; }
    .preloader-bar-track { width: 180px; }

    .result-number { font-size: 1.8rem; }
    .proof-value { font-size: 1.7rem; }
    .process-number { width: 60px; height: 60px; font-size: 1.25rem; margin-bottom: 16px; }
    .pricing-amount { font-size: 1.8rem; }
    .pricing-suffix { font-size: 0.85rem; }

    .why-card { padding: 24px 18px; }
    .why-card h3 { font-size: 1rem; }
    .why-stat-value { font-size: 1.4rem; }

    .footer-contact ul li { font-size: 0.85rem; gap: 10px; }
    .footer-contact ul li i { font-size: 0.9rem; }

    .blog-filter { flex-wrap: wrap; gap: 6px; }
    .blog-filter .btn { padding: 6px 12px; font-size: 0.75rem; }

    .hero-trust-avatars { gap: 8px; }
    .avatar-circle { width: 32px; height: 32px; font-size: 0.75rem; }

    .contact-form-wrapper { padding: 20px 12px; }

    .portfolio-card-body { padding: 12px; }
    .portfolio-card-title { font-size: 0.9rem; }
    .portfolio-card-desc { font-size: 0.82rem; }

    /* ── Small Mobile Result Cards ── */
    .result-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .result-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    /* ── Small Mobile Proof Items ── */
    .proof-item {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .proof-value { font-size: 1.5rem; }
    .proof-label { font-size: 0.85rem; }
    .proof-sublabel { font-size: 0.75rem; }
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-dot { display: none !important; }
    #cursorTrailContainer { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-graphic { animation: none; }
    .orb { animation: none; }
    .hero h1 .line-inner { animation: none; transform: translateY(0); }
    .preloader-bar { transition: none; }
}

/* Touch target improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; /* Prevents zoom on iOS */ }
    
    .btn, .btn-primary, .btn-ghost, .btn-link { min-height: 48px; }
    
    .navbar-menu > li > a { min-height: 48px; display: flex; align-items: center; }
    .dropdown li a { min-height: 44px; display: flex; align-items: center; }
    
    .footer-social a { width: 44px; height: 44px; }
    
    .card-hover, .hover-lift, .bento-card, .testimonial-card, .portfolio-card-new,
    .pricing-card, .sp-feature-card, .sp-industry-card, .hub-card,
    .enterprise-feature, .sp-subcat-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
}

/* ============================
   TEAM SECTION — Premium Agency
   ============================ */
.team-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    outline: none;
    text-align: center;
}

.team-card:hover,
.team-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border-color: rgba(var(--accent-rgb), 0.15);
}

.team-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.team-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface-2);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.team-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.02));
}

.team-card-content {
    padding: 28px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.team-card-position {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.team-card-bio {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 2px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 280px;
}

.team-card-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.team-social-icon:hover {
    background: var(--gold, #D4A843);
    border-color: var(--gold, #D4A843);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.team-social-icon.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

/* ============================
   TEAM POPUP — Premium Modal
   ============================ */
.team-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.team-popup-overlay.open {
    opacity: 1;
    visibility: visible;
}

.team-popup-content {
    background: var(--surface);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.team-popup-overlay.open .team-popup-content {
    transform: scale(1) translateY(0);
}

.team-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.team-popup-close:hover,
.team-popup-close:focus-visible {
    background: rgba(0, 0, 0, 0.8);
}

.team-popup-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.team-popup-inner {
    padding: 0;
}

.team-popup-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 400px;
}

.team-popup-left {
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06), transparent);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    border-right: 1px solid var(--border);
}

.team-popup-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.team-popup-photo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.03));
    border: 4px solid var(--border);
}

.team-popup-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-popup-meta h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.team-popup-position {
    font-size: 0.92rem;
    color: var(--accent);
    font-weight: 500;
}

.team-popup-role {
    display: inline-block;
    padding: 3px 14px;
    background: rgba(var(--accent-rgb), 0.08);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 4px auto 0;
}

.team-popup-section h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin: 0 0 12px;
}

.team-popup-right {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow-y: auto;
}

.team-popup-bio-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    white-space: pre-line;
}

.team-popup-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-popup-skill-tag {
    padding: 6px 14px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.12);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent-2);
}

.team-popup-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-popup-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.team-popup-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.team-popup-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-popup-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(var(--accent-rgb), 0.04);
    transition: background 0.2s ease;
}

.team-popup-contact-item i {
    width: 16px;
    color: var(--accent);
}

.team-popup-contact-item:hover {
    background: rgba(var(--accent-rgb), 0.08);
}

/* Admin featured badge */
.team-featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 0.85rem;
    margin-left: 6px;
}

.team-card-admin.featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.03);
}

/* ============================
   RESPONSIVE — Team Popup
   ============================ */
@media (max-width: 768px) {
    .team-popup-layout {
        grid-template-columns: 1fr;
    }
    .team-popup-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px 24px;
    }
    .team-popup-right {
        padding: 28px 24px;
    }
    .team-popup-photo,
    .team-popup-photo-placeholder {
        width: 140px;
        height: 140px;
    }
    .team-grid-new {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .team-popup-content {
        border-radius: 12px;
        max-height: 85vh;
    }
    .team-popup-left {
        padding: 24px 20px;
    }
    .team-popup-right {
        padding: 20px;
    }
    .team-popup-photo,
    .team-popup-photo-placeholder {
        width: 110px;
        height: 110px;
    }
    .team-popup-meta h2 {
        font-size: 1.2rem;
    }
    .team-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .team-card-content {
        padding: 16px 20px 20px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .team-card,
    .team-card-image img,
    .team-popup-content {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================
   PROFESSIONAL MOBILE DESIGN v2
   Premium mobile experience for all sections
   ============================ */

/* ── Tablet: 1024px – 769px ── */
@media (max-width: 1024px) and (min-width: 769px) {
    .team-grid-new { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .hero-graphic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 480px;
        margin: 30px auto 0;
        animation: none;
        transform: none;
    }
    .metric-card { margin-bottom: 0; padding: 20px 24px; }
    .metric-value { font-size: 1.4rem; }
    .metric-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .hero-visual { position: static; margin-top: 40px; }
    .process-grid::before { display: none; }
    .trusted-logos { gap: 36px; }
    .awards-grid { gap: 20px; }
}

/* ── Small Tablet / Large Phone: 768px – 560px ── */
@media (max-width: 768px) {
    /* Smooth scroll for iOS */
    html { -webkit-overflow-scrolling: touch; }
    
    /* ── Navbar Mobile ── */
    .navbar-menu {
        width: 100%;
        max-width: 100%;
        padding: 88px 24px 32px;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(24px) saturate(1.8);
        -webkit-backdrop-filter: blur(24px) saturate(1.8);
        border-left: none;
    }
    .navbar-menu.open { right: 0; }
    .navbar-menu > li { width: 100%; }
    .navbar-menu > li > a {
        padding: 16px 18px;
        font-size: 1.05rem;
        border-radius: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .navbar-menu > li > a::after { display: none; }
    .navbar-menu > li > a:hover,
    .navbar-menu > li > a.active {
        background: rgba(255,255,255,0.05);
        color: var(--accent-2);
    }
    .btn-cta-nav {
        margin-top: 20px;
        padding: 16px 28px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    .has-dropdown.open > a .fa-chevron-down { transform: rotate(180deg); }
    .has-dropdown .dropdown {
        background: rgba(0,0,0,0.25);
        border-radius: 12px;
        margin-top: 0;
    }
    .has-dropdown.open .dropdown {
        padding: 6px;
        margin-top: 4px;
    }
    .dropdown li a {
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        hyphens: auto;
    }
    .navbar-toggle { padding: 10px; }
    .navbar-toggle span { width: 24px; }

    /* ── Hero Mobile ── */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-inner { gap: 0; }
    .hero-visual {
        position: static;
        margin-top: 40px;
        display: block;
        perspective: none;
    }
    .hero-graphic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        margin: 0 auto;
        animation: none;
        transform: none;
    }
    .metric-card {
        margin-bottom: 0;
        padding: 16px 18px;
        gap: 14px;
        border-radius: 16px;
        background: rgba(var(--surface-rgb), 0.5);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.06);
    }
    .metric-card:hover {
        transform: translateY(-2px);
        border-color: rgba(var(--accent-rgb), 0.2);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .metric-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 12px; }
    .metric-value { font-size: 1.25rem; }
    .metric-info span { font-size: 0.75rem; }
    .hero h1 {
        font-size: clamp(1.8rem, 5.5vw, 2.4rem);
        max-width: 100%;
    }
    .hero-sub { font-size: 0.92rem; margin-bottom: 28px; }
    .hero-badge {
        font-size: 0.78rem;
        padding: 8px 16px;
        margin-bottom: 24px;
    }
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 0.95rem;
    }
    .hero-trust {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-top: 24px;
    }
    .hero-trust-avatars { flex-direction: column; align-items: center; gap: 10px; }
    .avatar-circle { width: 34px; height: 34px; font-size: 0.7rem; }
    .trust-text { font-size: 0.82rem; }
    .orb { display: none; }

    /* ── Sections ── */
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 48px; }
    .section-header h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 14px;
    }
    .section-header p { font-size: 0.95rem; }
    .section-tag { font-size: 0.72rem; padding: 6px 14px; }
    .results-section { padding: 64px 0; }
    .process-section { padding: 64px 0; }
    .why-section { padding: 64px 0; }
    .marquee-section { padding: 28px 0; }
    .trusted-section { padding: 40px 0; }
    .awards-section { padding: 40px 0; }
    .social-proof-bar { padding: 48px 0; }

    /* ── Buttons ── */
    .btn { padding: 14px 28px; font-size: 0.9rem; }
    .btn-lg { padding: 16px 32px; font-size: 0.95rem; }
    .btn-ghost { border-width: 1px; }

    /* ── Results Grid (2×2) ── */
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .result-card {
        padding: 20px 16px;
        border-radius: 16px;
        text-align: center;
    }
    .result-card::before { height: 1px; }
    .result-icon { margin: 0 auto 12px; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.2rem; }
    .result-number { font-size: 1.6rem; text-align: center; }
    .result-label { font-size: 0.78rem; }

    /* ── Proof Grid (2 columns) ── */
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .proof-item { padding: 16px; border-radius: 14px; text-align: center; }
    .proof-item::after { display: none; }
    .proof-value { font-size: 1.6rem; }
    .proof-label { font-size: 0.82rem; }
    .proof-sublabel { font-size: 0.72rem; }

    /* ── Process (2×2) ── */
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-grid::before { display: none; }
    .process-step { text-align: center; }
    .process-number {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
        margin-bottom: 12px;
        border-radius: 50%;
        border-width: 2px;
    }
    .process-step p { max-width: 100%; font-size: 0.82rem; }
    .process-step h3 { font-size: 0.92rem; margin-bottom: 8px; }

    /* ── Services / Bento (2 columns) ── */
    .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bento-card {
        padding: 20px 18px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .bento-card h3 { width: 100%; margin-bottom: 6px; font-size: 0.95rem; }
    .bento-card p { width: 100%; margin-bottom: 4px; font-size: 0.82rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .bento-card .btn-link { margin-top: 8px; font-size: 0.82rem; }
    .bento-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-bottom: 14px;
        flex-shrink: 0;
        border-radius: 12px;
    }
    .svc-primary-header {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .svc-primary-header h2 { font-size: clamp(1.3rem, 4vw, 1.6rem); }
    .svc-primary-header p { font-size: 0.85rem; }
    .svc-primary-header .btn { width: 100%; justify-content: center; }

    /* ── Portfolio (2 columns) ── */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .portfolio-card-new { border-radius: 12px; }
    .portfolio-card-image { aspect-ratio: 16 / 10; border-radius: 12px 12px 0 0; }
    .portfolio-card-body { padding: 12px 14px 16px; }
    .portfolio-card-title { font-size: 0.9rem; }
    .portfolio-card-desc { font-size: 0.78rem; -webkit-line-clamp: 2; }
    .portfolio-card-metrics { gap: 4px; padding: 8px 0; }
    .portfolio-card-metric-value { font-size: 0.85rem; }
    .portfolio-card-metric-label { font-size: 0.6rem; }
    .portfolio-view-all { margin-top: 28px; }

    /* ── Why Section (2×2) ── */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .why-card {
        padding: 22px 18px;
        border-radius: 16px;
    }
    .why-card.featured {
        grid-column: span 2;
        padding: 28px 24px;
    }
    .why-card h3 { font-size: 1rem; }
    .why-card.featured h3 { font-size: 1.15rem; margin-bottom: 10px; }
    .why-card p { font-size: 0.82rem; }
    .why-card.featured p { font-size: 0.88rem; }
    .why-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
    .why-stat { padding: 12px; }
    .why-stat-value { font-size: 1.3rem; }
    .why-stat-label { font-size: 0.65rem; }
    .why-icon { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 14px; }
    .why-card.featured .why-icon { width: 48px; height: 48px; font-size: 1.2rem; }

    /* ── Testimonials (2 columns) ── */
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .testimonial-card {
        padding: 22px 18px;
        border-radius: 16px;
    }
    .testimonial-card::before { font-size: 3rem; right: 18px; top: 12px; }
    .testimonial-card blockquote { font-size: 0.85rem; margin-bottom: 16px; }
    .testimonial-stars { font-size: 0.78rem; gap: 2px; margin-bottom: 12px; }
    .testimonial-card .btn { width: 100%; justify-content: center; }

    /* ── Team ── */
    .team-grid-new { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-card { border-radius: 16px; }
    .team-card-content { padding: 16px 14px 20px; gap: 6px; }
    .team-card-name { font-size: 1rem; }
    .team-card-position { font-size: 0.78rem; }
    .team-card-bio { display: none; }
    .team-social-icon { width: 36px; height: 36px; font-size: 0.85rem; }
    .team-popup-layout { grid-template-columns: 1fr; }
    .team-popup-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 28px 20px;
    }
    .team-popup-right { padding: 24px 20px; }
    .team-popup-photo,
    .team-popup-photo-placeholder { width: 120px; height: 120px; }

    /* ── Trusted Logos ── */
    .trusted-logos { gap: 16px; }
    .trusted-logo { font-size: 0.82rem; gap: 8px; }
    .trusted-logo-img { height: 22px; }
    .trusted-logo svg { width: 24px; height: 24px; }

    /* ── Awards ── */
    .awards-grid { gap: 10px; }
    .award-item {
        padding: 8px 14px;
        font-size: 0.75rem;
        gap: 8px;
        border-radius: 50px;
    }

    /* ── Marquee ── */
    .marquee-track { gap: 28px; animation-duration: 22s; }
    .marquee-item { font-size: 0.85rem; gap: 8px; }
    .marquee-item i { font-size: 0.45rem; }

    /* ── CTA Premium ── */
    .cta-premium { padding: 80px 0; }
    .cta-premium h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .cta-premium p { font-size: 0.95rem; margin-bottom: 28px; }
    .cta-premium .btn-group {
        flex-direction: column;
        gap: 12px;
    }
    .cta-premium .btn-group .btn { width: 100%; justify-content: center; }
    .cta-premium .trust-text { font-size: 0.78rem; }



    /* ── Back to Top ── */
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    /* ── Review Modal ── */
    .review-modal-content {
        padding: 28px 20px;
        margin: 16px;
        border-radius: 16px;
    }

    /* ── Contact ── */
    .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .contact-form-wrapper { padding: 24px 16px; border-radius: 16px; }
    .contact-form-wrapper input,
    .contact-form-wrapper select,
    .contact-form-wrapper textarea { padding: 12px 14px; font-size: 16px; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-brand { max-width: 100%; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-links h4 { margin-bottom: 14px; font-size: 0.88rem; }
    .footer-contact ul li { justify-content: center; font-size: 0.85rem; }
    .footer-newsletter { flex-direction: column; text-align: center; padding: 28px 0; }
    .newsletter-form input { min-width: 200px; }
    .footer-bottom { padding: 18px 0; }
    .footer-bottom p { font-size: 0.78rem; }

    /* ── Touch feedback on all interactive elements ── */
    .bento-card:active,
    .testimonial-card:active,
    .portfolio-card-new:active,
    .result-card:active,
    .proof-item:active,
    .why-card:active,
    .team-card:active,
    .hub-card:active,
    .pricing-card:active { transform: scale(0.98); }

    /* ── Hide custom cursor on touch ── */
    .cursor, .cursor-dot, #cursorTrailContainer { display: none !important; }

    /* ── iOS tap highlight ── */
    * { -webkit-tap-highlight-color: rgba(212, 175, 55, 0.15); }

    /* ── Font size fix for iOS inputs ── */
    input, select, textarea { font-size: 16px !important; }
}

/* ── Small Phones: 480px and below ── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 48px; }
    .hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .hero-cta { margin-bottom: 32px; }
    .hero-graphic { grid-template-columns: 1fr; max-width: 340px; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
    .hero-sub { font-size: 0.88rem; }
    .section { padding: 48px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: clamp(1.4rem, 4.5vw, 1.8rem); }
    .section-header p { font-size: 0.88rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .btn-lg { padding: 14px 28px; font-size: 0.9rem; }
    .result-card { padding: 20px 16px; gap: 14px; }
    .result-number { font-size: 1.6rem; }
    .result-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .proof-value { font-size: 1.6rem; }
    .proof-label { font-size: 0.82rem; }
    .metric-card { padding: 14px 16px; gap: 12px; }
    .metric-value { font-size: 1.1rem; }
    .metric-icon { width: 36px; height: 36px; font-size: 0.9rem; border-radius: 10px; }
    .process-number { width: 56px; height: 56px; font-size: 1.2rem; }
    .bento-card { padding: 22px 18px; }
    .bento-icon { width: 42px; height: 42px; font-size: 1rem; }
    .why-card { padding: 22px 18px; }
    .why-card.featured { padding: 26px 20px; }
    .why-stat-value { font-size: 1.3rem; }
    .why-icon { width: 42px; height: 42px; font-size: 1rem; }
    .testimonial-card { padding: 22px 18px; }
    .testimonial-card blockquote { font-size: 0.88rem; }
    .team-grid-new { grid-template-columns: 1fr 1fr; gap: 12px; }
    .team-card-content { padding: 12px 10px 16px; }
    .team-card-name { font-size: 0.88rem; }
    .team-card-position { font-size: 0.72rem; }
    .team-card-image { aspect-ratio: 1 / 1; }
    .portfolio-card-body { padding: 12px 14px 16px; }
    .portfolio-card-title { font-size: 0.9rem; }
    .portfolio-card-desc { font-size: 0.8rem; }
    .portfolio-card-metrics { padding: 8px 0; }
    .portfolio-card-metric-value { font-size: 0.85rem; }
    .cta-premium { padding: 60px 0; }
    .cta-premium h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .award-item { font-size: 0.7rem; padding: 6px 12px; }
    .marquee-track { gap: 20px; animation-duration: 18s; }
    .marquee-item { font-size: 0.78rem; gap: 6px; }

    .floating-social-group { gap: 3px; }
    .back-to-top { width: 36px; height: 36px; font-size: 0.8rem; bottom: 72px; right: 12px; }
    .review-modal-content { padding: 22px 16px; }
    .contact-form-wrapper { padding: 18px 12px; }
    .footer-grid { gap: 24px; }
    .footer-links ul li a { font-size: 0.85rem; }
    .svc-primary-header { padding: 22px 18px; }
    .svc-primary-header h2 { font-size: clamp(1.2rem, 4vw, 1.5rem); }
    .pricing-card { padding: 28px 22px 32px; }
    .pricing-amount { font-size: 2rem; }
    .hub-card { padding: 28px 22px; }
    .sp-subcat-card { padding: 24px 20px; }
    .sp-hero { padding: 100px 0 40px; }
    .sp-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .sp-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .sp-hero-icon { margin: 0 auto 16px; }
    .sp-section-title { font-size: clamp(1.4rem, 4vw, 1.8rem); }
}

/* ── Very Small Phones: 380px and below → 1 column ── */
@media (max-width: 380px) {
    .container { padding: 0 12px; }
    .hero { padding: 80px 0 40px; }
    .hero h1 { font-size: clamp(1.3rem, 4.5vw, 1.6rem); }
    .hero-badge { font-size: 0.68rem; padding: 5px 10px; }
    .hero-sub { font-size: 0.82rem; margin-bottom: 24px; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { padding: 14px 20px; font-size: 0.85rem; }
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 28px; }
    .section-tag { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 16px; }
    .section-header h2 { font-size: clamp(1.2rem, 4vw, 1.5rem); }
    .btn { padding: 10px 20px; font-size: 0.82rem; }
    .btn-lg { padding: 12px 24px; font-size: 0.85rem; }
    .result-number { font-size: 1.4rem; }
    .result-icon { width: 38px; height: 38px; font-size: 1rem; }
    .proof-value { font-size: 1.4rem; }
    .metric-card { padding: 12px 14px; gap: 10px; }
    .metric-value { font-size: 1rem; }
    .metric-icon { width: 32px; height: 32px; font-size: 0.82rem; }
    .process-number { width: 48px; height: 48px; font-size: 1rem; }

    /* ── All grids → 1 column ── */
    .results-grid,
    .proof-grid,
    .process-grid,
    .bento-grid,
    .portfolio-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .why-card.featured { grid-column: span 2 !important; }
    .hub-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .team-grid-new { grid-template-columns: 1fr 1fr; gap: 8px; }
    .team-card-content { padding: 10px 8px 14px; }
    .team-card-name { font-size: 0.8rem; }
    .portfolio-card-body { padding: 10px 12px 14px; }
    .portfolio-card-title { font-size: 0.85rem; }
    .bento-card { padding: 18px 16px; }
    .why-card { padding: 18px 16px; }
    .why-card.featured { padding: 22px 18px; }
    .testimonial-card { padding: 18px 16px; }
    .testimonial-card blockquote { font-size: 0.84rem; }
    .result-card { text-align: center; }
    .result-icon { margin: 0 auto 10px; }
    .result-number { text-align: center; }
    .cta-premium { padding: 48px 0; }
    .cta-premium h2 { font-size: clamp(1.3rem, 4.5vw, 1.6rem); }
    .floating-cta .btn { font-size: 0.72rem; padding: 8px 10px; }
    .floating-cta .floating-btn { width: 32px; height: 32px; font-size: 0.82rem; }
    .floating-social-group { gap: 2px; }
    .back-to-top { width: 32px; height: 32px; font-size: 0.75rem; bottom: 68px; }
    .award-item { font-size: 0.65rem; padding: 5px 10px; }
    .footer-contact ul li { font-size: 0.78rem; }
    .avatar-circle { width: 26px; height: 26px; font-size: 0.6rem; }
    .marquee-item { font-size: 0.72rem; }
}

/* ============================
   PREMIUM MOBILE DESIGN — Team Design Language
   ↓ Applied ≤ 991px only — Desktop unchanged ↑
   Every card mirrors .team-card styling
   ============================ */

@media (max-width: 991px) {
    .container { padding: 0 20px; }

    .hero { min-height: auto; padding: 110px 0 64px; }
    .hero-inner { gap: 0; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero h1 { max-width: 100%; }
    .hero-sub { max-width: 100%; margin: 0 auto 28px; }
    .hero-cta { justify-content: center; flex-direction: column; margin-bottom: 36px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { position: static; margin-top: 36px; perspective: none; }
    .hero-graphic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        margin: 0 auto;
        transform: none;
        animation: none;
    }
    .metric-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 20px 18px;
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 0;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .metric-card:hover { transform: translateY(-2px); border-color: rgba(var(--accent-rgb), 0.2); }
    .metric-icon { width: 44px; height: 44px; border-radius: 14px; font-size: 1.1rem; }
    .metric-value { font-size: 1.3rem; }
    .metric-info span { font-size: 0.78rem; }

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
    .section-header h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 14px; }
    .section-header p { font-size: 0.95rem; }
    .section-tag { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 18px; }
    .results-section { padding: 64px 0; }
    .process-section { padding: 64px 0; }
    .why-section { padding: 64px 0; }
    .marquee-section { padding: 28px 0; }
    .trusted-section { padding: 40px 0; }
    .awards-section { padding: 40px 0; }
    .social-proof-bar { padding: 48px 0; }

    .btn { padding: 14px 28px; font-size: 0.9rem; min-height: 48px; }
    .btn-lg { padding: 16px 32px; font-size: 0.95rem; min-height: 48px; }
    .btn-ghost { border-width: 1px; }

    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .result-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 24px 18px;
        text-align: center;
        backdrop-filter: none;
        box-shadow: none;
    }
    .result-card::before,
    .result-card::after { display: none; }
    .result-card:active { transform: scale(0.98); }
    .result-icon { width: 48px; height: 48px; border-radius: 14px; font-size: 1.2rem; margin: 0 auto 14px; }
    .result-number { font-size: 1.5rem; }
    .result-label { font-size: 0.78rem; }

    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .proof-item {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 20px 16px;
        text-align: center;
    }
    .proof-item::before,
    .proof-item::after { display: none; }
    .proof-value { font-size: 1.6rem; }
    .proof-label { font-size: 0.8rem; }
    .proof-sublabel { font-size: 0.72rem; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .process-grid::before { display: none; }
    .process-step {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px 20px;
        text-align: center;
    }
    .process-number {
        width: 56px; height: 56px; font-size: 1.2rem;
        border-radius: 50%; margin: 0 auto 14px;
        border-width: 2px;
    }
    .process-step:hover .process-number { transform: scale(1.08); }
    .process-step h3 { font-size: 1rem; margin-bottom: 8px; }
    .process-step p { font-size: 0.84rem; max-width: 100%; }

    .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bento-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px 24px;
        text-align: center;
        align-items: center;
    }
    .bento-card:active { transform: scale(0.98); }
    .bento-icon { width: 56px; height: 56px; border-radius: 16px; font-size: 1.3rem; margin: 0 auto 16px; }
    .bento-card h3 { font-size: 1.1rem; margin-bottom: 10px; width: 100%; }
    .bento-card p { font-size: 0.88rem; margin-bottom: 16px; width: 100%; -webkit-line-clamp: unset; }
    .bento-card .btn-link { justify-content: center; font-size: 0.88rem; }

    .svc-primary-header { padding: 28px 24px; border-radius: 20px; }
    .svc-primary-header h2 { font-size: clamp(1.3rem, 4vw, 1.6rem); }
    .svc-primary-header p { font-size: 0.88rem; }
    .svc-primary-header .btn { width: 100%; justify-content: center; }

    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .portfolio-card-new { border-radius: 20px; }
    .portfolio-card-image { aspect-ratio: 16 / 9; border-radius: 20px 20px 0 0; }
    .portfolio-card-body { padding: 20px; }
    .portfolio-card-title { font-size: 1.05rem; }
    .portfolio-card-desc { font-size: 0.85rem; }
    .portfolio-card-metrics { padding: 12px 0; gap: 6px; }
    .portfolio-card-metric-value { font-size: 0.95rem; }
    .portfolio-card-metric-label { font-size: 0.65rem; }
    .portfolio-view-all { margin-top: 28px; }

    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .why-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px 24px;
        text-align: center;
    }
    .why-card:active { transform: scale(0.98); }
    .why-card.featured { grid-column: span 2; padding: 28px 24px; background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--cyan-rgb), 0.04)); }
    .why-icon { margin: 0 auto 16px; width: 48px; height: 48px; font-size: 1.1rem; }
    .why-card.featured .why-icon { width: 56px; height: 56px; font-size: 1.3rem; }
    .why-card h3 { font-size: 1.05rem; }
    .why-card p { font-size: 0.88rem; }
    .why-card.featured h3 { font-size: 1.15rem; margin-bottom: 12px; }
    .why-card.featured p { font-size: 0.9rem; }
    .why-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; }
    .why-stat { padding: 14px; }
    .why-stat-value { font-size: 1.4rem; }
    .why-stat-label { font-size: 0.7rem; }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .testimonial-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px 24px;
        text-align: center;
    }
    .testimonial-card:active { transform: scale(0.98); }
    .testimonial-card::before { display: none; }
    .testimonial-stars { justify-content: center; font-size: 0.9rem; margin-bottom: 16px; }
    .testimonial-card blockquote { font-size: 0.92rem; margin-bottom: 20px; }
    .testimonial-author { flex-direction: column; gap: 8px; }
    .author-photo img,
    .photo-placeholder { width: 56px; height: 56px; }
    .author-info { text-align: center; }

    .team-grid-new { gap: 16px; }
    .team-card { border-radius: 20px; }
    .team-card-content { padding: 20px 18px 24px; gap: 8px; }
    .team-card-name { font-size: 1.05rem; }
    .team-card-position { font-size: 0.8rem; }
    .team-card-bio { font-size: 0.82rem; }
    .team-social-icon { width: 40px; height: 40px; font-size: 0.9rem; }

    .pricing-grid { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }
    .pricing-card { border-radius: 20px; padding: 32px 24px 36px; min-height: auto; }

    .cta-premium { padding: 80px 0; text-align: center; }
    .cta-premium h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .cta-premium p { font-size: 0.95rem; margin-bottom: 28px; }
    .cta-premium .btn-group { flex-direction: column; gap: 12px; }
    .cta-premium .btn-group .btn { width: 100%; justify-content: center; min-height: 48px; }
    .cta-premium .trust-text { font-size: 0.78rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand { max-width: 100%; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; gap: 14px; }
    .footer-social a { width: 44px; height: 44px; }
    .footer-links h4 { margin-bottom: 16px; font-size: 0.9rem; }
    .footer-links ul li a { font-size: 0.88rem; }
    .footer-contact ul li { justify-content: center; font-size: 0.88rem; }
    .footer-newsletter { flex-direction: column; text-align: center; padding: 32px 0; }
    .newsletter-form { width: 100%; justify-content: center; }
    .newsletter-form input { min-width: 0; width: 100%; }
    .footer-bottom { padding: 20px 0; }

    .awards-grid { gap: 12px; }
    .award-item { padding: 10px 18px; font-size: 0.78rem; border-radius: 100px; }
}

@media (max-width: 767px) {
    .hero { padding: 100px 0 56px; }
    .hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
    .hero-sub { font-size: 0.9rem; }
    .hero-badge { font-size: 0.75rem; padding: 7px 14px; }
    .hero-cta { gap: 10px; }
    .hero-graphic { gap: 10px; }
    .metric-card { padding: 16px 14px; gap: 14px; border-radius: 16px; }
    .metric-icon { width: 38px; height: 38px; font-size: 1rem; border-radius: 12px; }
    .metric-value { font-size: 1.15rem; }
    .metric-info span { font-size: 0.72rem; }

    .section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: clamp(1.4rem, 4.5vw, 1.8rem); }
    .section-header p { font-size: 0.9rem; }

    .btn { font-size: 0.85rem; padding: 12px 24px; }
    .btn-lg { font-size: 0.9rem; padding: 14px 28px; }

    .results-grid { gap: 10px; }
    .result-card { padding: 20px 16px; border-radius: 16px; }
    .result-icon { width: 42px; height: 42px; font-size: 1.1rem; margin-bottom: 10px; }
    .result-number { font-size: 1.3rem; }
    .result-label { font-size: 0.72rem; }

    .proof-grid { gap: 10px; }
    .proof-item { padding: 16px 14px; border-radius: 16px; }
    .proof-value { font-size: 1.4rem; }
    .proof-label { font-size: 0.78rem; }
    .proof-sublabel { font-size: 0.68rem; }

    .process-grid { gap: 12px; }
    .process-step { padding: 24px 18px; border-radius: 16px; }
    .process-number { width: 48px; height: 48px; font-size: 1rem; }
    .process-step h3 { font-size: 0.92rem; }
    .process-step p { font-size: 0.8rem; }

    .bento-grid { gap: 12px; }
    .bento-card { padding: 24px 20px; border-radius: 16px; }
    .bento-icon { width: 48px; height: 48px; font-size: 1.1rem; }
    .bento-card h3 { font-size: 1rem; }
    .bento-card p { font-size: 0.84rem; }

    .portfolio-grid { gap: 12px; }
    .portfolio-card-new { border-radius: 16px; }
    .portfolio-card-body { padding: 16px; }
    .portfolio-card-title { font-size: 0.95rem; }
    .portfolio-card-desc { font-size: 0.82rem; }

    .why-grid { gap: 12px; }
    .why-card { padding: 24px 20px; border-radius: 16px; }
    .why-card.featured { padding: 24px 20px; }
    .why-card h3 { font-size: 1rem; }
    .why-card p { font-size: 0.84rem; }
    .why-icon { width: 42px; height: 42px; font-size: 1rem; }
    .why-card.featured .why-icon { width: 48px; height: 48px; font-size: 1.15rem; }
    .why-stats { gap: 8px; }
    .why-stat { padding: 12px; }
    .why-stat-value { font-size: 1.25rem; }

    .testimonials-grid { gap: 12px; }
    .testimonial-card { padding: 24px 20px; border-radius: 16px; }
    .testimonial-stars { font-size: 0.85rem; }
    .testimonial-card blockquote { font-size: 0.88rem; }
    .author-photo img,
    .photo-placeholder { width: 48px; height: 48px; }

    .team-grid-new { gap: 12px; }
    .team-card { border-radius: 16px; }
    .team-card-content { padding: 16px 14px 20px; }
    .team-card-name { font-size: 0.95rem; }
    .team-card-position { font-size: 0.75rem; }

    .pricing-grid { gap: 12px; }
    .pricing-card { padding: 28px 22px 32px; border-radius: 16px; }

    .cta-premium { padding: 60px 0; }
    .cta-premium h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

    .footer-grid { gap: 28px; }
    .footer-links h4 { font-size: 0.88rem; }
    .footer-contact ul li { font-size: 0.85rem; }

    .svc-primary-header { padding: 24px 20px; border-radius: 16px; }
    .svc-primary-header h2 { font-size: clamp(1.2rem, 4vw, 1.5rem); }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 48px; }
    .hero h1 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .hero-sub { font-size: 0.85rem; margin-bottom: 24px; }
    .hero-cta { margin-bottom: 28px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
    .hero-graphic { grid-template-columns: 1fr; }

    .section { padding: 48px 0; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: clamp(1.25rem, 4.5vw, 1.6rem); }
    .section-header p { font-size: 0.85rem; }
    .section-tag { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 14px; }

    .btn { padding: 10px 20px; font-size: 0.82rem; }
    .btn-lg { padding: 12px 24px; font-size: 0.85rem; }

    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .result-card { padding: 24px 18px; border-radius: 20px; }
    .result-number { font-size: 1.6rem; }
    .result-label { font-size: 0.78rem; }

    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .proof-item { padding: 20px 16px; }
    .proof-value { font-size: 1.5rem; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .process-step { padding: 24px 20px; }

    .bento-grid { gap: 12px; }
    .bento-card { padding: 24px 20px; }

    .portfolio-grid { gap: 12px; }
    .portfolio-card-body { padding: 14px; }

    .why-grid { gap: 12px; }
    .why-card { padding: 24px 20px; }

    .testimonials-grid { gap: 12px; }
    .testimonial-card { padding: 24px 20px; }

    .team-grid-new { gap: 12px; }

    .pricing-grid { max-width: 400px; margin-left: auto; margin-right: auto; }

    .cta-premium { padding: 48px 0; }
    .cta-premium h2 { font-size: clamp(1.3rem, 4.5vw, 1.6rem); }
    .cta-premium p { font-size: 0.88rem; }
    .cta-premium .trust-text { font-size: 0.72rem; }

    .site-footer { padding: 32px 0 0; }
    .footer-grid { gap: 16px; }
    .footer-services { display: none; }
    .footer-logo { font-size: 1rem; }
    .footer-social a { width: 28px; height: 28px; font-size: 0.75rem; }
    .footer-links h4, .footer-contact h4 { font-size: 0.75rem; margin-bottom: 10px; }
    .footer-links ul li { margin-bottom: 4px; }
    .footer-links ul li a { font-size: 0.78rem; }
    .footer-tagline { font-size: 0.78rem; margin-bottom: 12px; }
    .footer-contact ul li { font-size: 0.78rem; margin-bottom: 6px; gap: 6px; }
    .footer-newsletter { padding: 16px; margin: 12px 0; border-radius: 12px; background: rgba(var(--accent-rgb), 0.06); border: 1px solid rgba(var(--accent-rgb), 0.15); }
    .newsletter-content h4 { font-size: 0.8rem; }
    .newsletter-form input { padding: 6px 10px; font-size: 0.78rem; min-width: 140px; }
    .newsletter-form button { padding: 6px 12px; font-size: 0.78rem; }
    .footer-bottom { padding: 12px 0; font-size: 0.7rem; }

    .marquee-track { gap: 20px; animation-duration: 20s; }
    .marquee-item { font-size: 0.78rem; gap: 6px; }



    .awards-grid { gap: 8px; }
    .award-item { padding: 8px 14px; font-size: 0.72rem; }
}

/* KPI Cards: Stacked layout on mobile */
@media (max-width: 768px) {
    .hero-visual {
        margin-bottom: 0;
    }
    .hero-graphic {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
        margin: 0;
    }
    .metric-card {
        width: 100%;
        margin-bottom: 0;
    }
    .metric-card:hover {
        transform: none;
        border-color: var(--border);
        box-shadow: none;
    }

    /* Service card titles */
    .bento-card h3 {
        font-size: clamp(1.125rem, 3.5vw, 1.25rem);
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.02em;
        text-align: center;
        color: #F4C542;
        text-shadow: 0 2px 10px rgba(0,0,0,.25);
        transition: transform 0.25s ease;
    }
    .bento-card:active {
        transform: none;
    }
    .bento-card:active h3 {
        transform: scale(1.02);
    }
    .svc-primary-header h2 {
        font-size: clamp(1.125rem, 3.5vw, 1.25rem);
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.02em;
        text-align: center;
        color: #F4C542;
        text-shadow: 0 2px 10px rgba(0,0,0,.25);
    }
}

@media (max-width: 380px) {
    .container { padding: 0 12px; }
    .hero { padding: 80px 0 40px; }
    .hero h1 { font-size: clamp(1.2rem, 4.5vw, 1.5rem); }
    .hero-sub { font-size: 0.82rem; }
    .hero-badge { font-size: 0.65rem; padding: 5px 10px; }

    .section { padding: 40px 0; }
    .section-header { margin-bottom: 24px; }
    .section-header h2 { font-size: clamp(1.1rem, 4vw, 1.4rem); }
    .section-header p { font-size: 0.82rem; }
    .section-tag { font-size: 0.65rem; padding: 4px 10px; }

    .btn { padding: 10px 18px; font-size: 0.8rem; }
    .btn-lg { padding: 12px 22px; font-size: 0.82rem; }

    .result-card { padding: 20px 16px; }
    .result-number { font-size: 1.4rem; }
    .proof-value { font-size: 1.3rem; }
    .process-step { padding: 20px 16px; }
    .bento-card { padding: 20px 16px; }
    .portfolio-card-body { padding: 12px; }
    .portfolio-card-title { font-size: 0.88rem; }
    .why-card { padding: 20px 16px; }
    .testimonial-card { padding: 20px 16px; }
    .team-card-content { padding: 12px 10px 16px; }
    .team-card-name { font-size: 0.85rem; }
    .pricing-card { padding: 24px 18px 28px; }
    .cta-premium { padding: 40px 0; }
    .cta-premium h2 { font-size: clamp(1.15rem, 4vw, 1.4rem); }
    .site-footer { padding: 20px 0 0; }
    .footer-grid { gap: 12px; }
    .footer-services { display: none; }
    .footer-links h4, .footer-contact h4 { font-size: 0.7rem; margin-bottom: 8px; }
    .footer-links ul li a { font-size: 0.72rem; }
    .footer-contact ul li { font-size: 0.72rem; gap: 4px; }
    .footer-tagline { font-size: 0.72rem; }
    .footer-logo { font-size: 0.9rem; margin-bottom: 10px; }
    .footer-social a { width: 24px; height: 24px; font-size: 0.65rem; }
    .footer-newsletter { padding: 8px 0; }
    .footer-bottom { font-size: 0.6rem; padding: 8px 0; }

    .marquee-item { font-size: 0.72rem; }
    .floating-cta .btn { font-size: 0.72rem; padding: 8px 10px; }
    .floating-cta .floating-btn { width: 32px; height: 32px; font-size: 0.82rem; }
}

/* Honeypot */
.hp-field { display: none !important; }

