/* =========================================================
   INNOVIDEA CONTENT SERVICES
   ULTRA-PREMIUM RESPONSIVE DESIGN & MOTION SYSTEM
========================================================= */

/* ---------------------------------------------------------
   FONTS IMPORT
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Fira+Code:wght@400;500&display=swap');

/* ---------------------------------------------------------
   DESIGN TOKENS (CSS VARIABLES)
--------------------------------------------------------- */
:root {
    /* Brand Palette */
    --color-navy-dark: #04091a;
    --color-navy: #08122c;
    --color-navy-card: #0d1a3a;
    --color-navy-surface: #11224d;
    --color-deep-blue: #0f2e74;
    --color-royal: #1e5bff;
    --color-royal-light: #3b74ff;
    --color-cyan: #00d2ff;
    --color-cyan-glow: rgba(0, 210, 255, 0.4);
    --color-emerald: #10b981;
    --color-amber: #f59e0b;

    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-surface-1: #f8faff;
    --bg-surface-2: #f0f4fc;
    --bg-surface-3: #e6eefc;

    /* Text Colors */
    --text-primary: #0a1128;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Borders */
    --border-subtle: rgba(30, 91, 255, 0.08);
    --border-medium: rgba(30, 91, 255, 0.16);
    --border-glow: rgba(0, 210, 255, 0.35);

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #08122c 0%, #0f2e74 50%, #1e5bff 100%);
    --gradient-hero: linear-gradient(135deg, #0a1128 0%, #1e3a8a 55%, #1e5bff 100%);
    --gradient-accent: linear-gradient(135deg, #1e5bff 0%, #00d2ff 100%);
    --gradient-dark-card: linear-gradient(145deg, #0d1a3a 0%, #08122c 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(8, 18, 44, 0.04);
    --shadow-md: 0 8px 24px rgba(8, 18, 44, 0.08);
    --shadow-lg: 0 16px 40px rgba(8, 18, 44, 0.12);
    --shadow-xl: 0 24px 60px rgba(8, 18, 44, 0.16);
    --shadow-blue: 0 12px 32px rgba(30, 91, 255, 0.28);
    --shadow-cyan: 0 12px 32px rgba(0, 210, 255, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Easing & Transition */
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    /* Max Width */
    --container-max: 1220px;
}

/* ---------------------------------------------------------
   GLOBAL RESET & DEFAULTS
--------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
    font-size: 16px; /* Prevents auto-zoom on iOS */
}

/* Utilities */
.w-100 { width: 100% !important; }
.mt-2 { margin-top: 8px !important; }
.text-light-muted { color: var(--text-light); font-size: 0.9rem; }

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    word-break: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(1.65rem, 4vw, 2.9rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

p {
    color: var(--text-secondary);
}

/* ---------------------------------------------------------
   CONTAINERS & AMBIENT GLOW
--------------------------------------------------------- */
.container {
    width: min(92%, var(--container-max));
    margin-left: auto;
    margin-right: auto;
}

.container-wide {
    width: min(94%, 1380px);
    margin-left: auto;
    margin-right: auto;
}

.ambient-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: pulseGlow 10s infinite alternate ease-in-out;
}

.glow-blue {
    top: -50px;
    left: -50px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(30, 91, 255, 0.25) 0%, transparent 70%);
}

.glow-cyan {
    top: 35%;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.15) translate(20px, -15px); opacity: 0.6; }
}

/* ---------------------------------------------------------
   SECTION HEADINGS & EYEBROWS
--------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 2;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(30, 91, 255, 0.08);
    border: 1px solid rgba(30, 91, 255, 0.16);
    color: var(--color-royal);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.15rem;
    backdrop-filter: blur(8px);
}

.eyebrow-badge.badge-cyan {
    background: rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.25);
    color: var(--color-cyan);
}

.eyebrow-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-royal);
    box-shadow: 0 0 8px var(--color-royal);
    animation: blinkDot 2s infinite ease-in-out;
}

.eyebrow-badge .badge-dot.dot-cyan {
    background: var(--color-cyan);
    box-shadow: 0 0 8px var(--color-cyan);
}

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

.section-header h2 {
    margin-bottom: 1.15rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------------------------------------------------------
   BUTTONS & CTAs
--------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    min-height: 46px; /* Touch target */
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(30, 91, 255, 0.35);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--color-navy);
    border: 1.5px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--color-royal);
    background: var(--bg-surface-1);
    transform: translateY(-3px);
}

.btn-glow {
    background: var(--gradient-accent);
    color: var(--color-navy-dark);
    font-weight: 800;
    box-shadow: var(--shadow-cyan);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0, 210, 255, 0.45);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.85rem;
    min-height: 38px;
}

.btn-icon {
    display: inline-flex;
    transition: transform var(--transition-fast);
}

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

/* ---------------------------------------------------------
   HEADER & RESPONSIVE NAVBAR
--------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 91, 255, 0.08);
    box-shadow: 0 10px 30px rgba(8, 18, 44, 0.06);
}

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

/* Brand Logo (Image-based) */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.brand-logo-img {
    height: 46px;
    width: auto;
    max-height: 46px;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.03);
}

/* Nav Menu Desktop Pill */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-links li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-navy);
    background: rgba(30, 91, 255, 0.08);
}

.mobile-drawer-cta {
    display: none;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Hamburger Toggle Button */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-medium);
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
    transition: var(--transition-fast);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 26, 0.6);
    backdrop-filter: blur(6px);
    z-index: 999;
}

.nav-backdrop.active {
    display: block;
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 150px 0 90px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(120% 100% at 50% 0%, #f0f5ff 0%, #ffffff 70%);
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    max-width: 640px;
    min-width: 0;
}

.hero-title {
    margin-bottom: 1.25rem;
}

.hero-title .highlight-gradient {
    background: linear-gradient(135deg, #0a1128 0%, #1e5bff 70%, #00d2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-medium);
}

.trust-avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-chip {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: var(--gradient-brand);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    box-shadow: var(--shadow-sm);
}

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

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

.trust-rating-text strong {
    color: var(--color-navy);
    font-weight: 700;
}

.star-rating {
    color: #f59e0b;
    font-size: 0.9rem;
    display: inline-block;
    margin-right: 4px;
}

/* ---------------------------------------------------------
   HERO INTELLIGENCE CONSOLE
--------------------------------------------------------- */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    min-width: 0;
}

.intelligence-console {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(4, 9, 26, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    color: #ffffff;
    position: relative;
    backdrop-filter: blur(16px);
    transition: transform var(--transition-normal);
}

.intelligence-console:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(4, 9, 26, 0.4);
}

.console-header {
    padding: 12px 18px;
    background: rgba(4, 9, 26, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.console-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.console-status {
    font-size: 0.72rem;
    font-family: 'Fira Code', monospace;
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.console-status .pulse-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-cyan);
    box-shadow: 0 0 8px var(--color-cyan);
    animation: blinkDot 1.5s infinite;
}

/* Console Nav Tabs */
.console-tabs {
    display: flex;
    padding: 6px 8px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.console-tab-btn {
    flex: 1 1 auto;
    padding: 8px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    white-space: nowrap;
}

.console-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.console-tab-btn.active {
    color: #ffffff;
    background: rgba(30, 91, 255, 0.25);
    border-color: rgba(30, 91, 255, 0.4);
    box-shadow: 0 2px 10px rgba(30, 91, 255, 0.2);
}

.console-body {
    padding: 20px;
    min-height: 280px;
    position: relative;
}

.console-tab-pane {
    display: none;
    animation: fadeIn 0.35s ease forwards;
}

.console-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.metric-mini-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 0;
}

.metric-mini-card small {
    display: block;
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.metric-mini-card .metric-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.metric-badge-green {
    font-size: 0.72rem;
    color: #10b981;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 5px;
    border-radius: 4px;
}

.console-sparkline {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
}

.spark-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--color-cyan) 0%, rgba(30, 91, 255, 0.3) 100%);
    border-radius: 3px 3px 0 0;
    transition: height 0.6s var(--ease-smooth);
    min-width: 8px;
}

.console-terminal-lines {
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-family: 'Fira Code', monospace;
    font-size: 0.74rem;
    line-height: 1.6;
    color: #a5b4fc;
    word-break: break-word;
}

.console-terminal-lines .line-accent { color: var(--color-cyan); }
.console-terminal-lines .line-success { color: #34d399; }

/* Floating Glass Badges (Desktop) */
.floating-glass-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: 0 14px 32px rgba(4, 9, 26, 0.12);
    backdrop-filter: blur(12px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-navy);
    animation: floatLevitate 5s infinite ease-in-out;
}

.badge-top-right {
    top: -20px;
    right: -20px;
}

.badge-bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 2.5s;
}

.glass-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-brand);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.glass-badge-text h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.glass-badge-text p {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

/* ---------------------------------------------------------
   TRUST METRICS STRIP
--------------------------------------------------------- */
.trust-strip-section {
    padding: 60px 0;
    background: var(--gradient-brand);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.trust-strip-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
}

.stats-grid-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.stat-metric-box {
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-metric-box:last-child {
    border-right: none;
}

.stat-number-wrap {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.stat-number-wrap .stat-suffix {
    color: var(--color-cyan);
}

.stat-metric-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tech Ribbon */
.tech-ribbon {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    position: relative;
    z-index: 2;
}

.tech-ribbon-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    margin-bottom: 16px;
}

.tech-pill-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-pill {
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
}

/* ---------------------------------------------------------
   SERVICES BENTO GRID
--------------------------------------------------------- */
.services-section {
    padding: 100px 0;
    background: var(--bg-surface-1);
    position: relative;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 91, 255, 0.35);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(30, 91, 255, 0.08);
    border: 1px solid rgba(30, 91, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-royal);
}

.service-num-badge {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-royal);
    padding: 4px 8px;
    background: rgba(30, 91, 255, 0.06);
    border-radius: var(--radius-full);
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--color-navy);
}

.service-card-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
}

.service-deliverables-list {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.service-deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.check-icon {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 8px;
    background: var(--bg-surface-2);
    color: var(--text-muted);
    border-radius: var(--radius-full);
}

.service-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-royal);
    transition: gap var(--transition-fast);
}

.service-action-link:hover {
    gap: 10px;
}

/* ---------------------------------------------------------
   INTERACTIVE ESTIMATOR & SCOPE BUILDER
--------------------------------------------------------- */
.estimator-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.estimator-box {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
    position: relative;
    min-width: 0;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.estimator-controls {
    min-width: 0;
}

.estimator-controls h3 {
    color: #ffffff;
    margin-bottom: 6px;
}

.estimator-controls p {
    color: var(--text-light);
    margin-bottom: 22px;
    font-size: 0.92rem;
}

.control-group-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-cyan);
    margin-bottom: 10px;
    display: block;
}

.service-choice-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.choice-chip {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.choice-chip.selected {
    background: rgba(30, 91, 255, 0.3);
    border-color: var(--color-cyan);
    box-shadow: 0 0 14px rgba(0, 210, 255, 0.25);
}

.urgency-slider-wrap {
    margin-bottom: 24px;
}

.scope-range-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    -webkit-appearance: none;
}

.scope-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-cyan);
    cursor: pointer;
    box-shadow: 0 0 12px var(--color-cyan);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 600;
}

.active-slider-label {
    color: var(--color-cyan);
}

/* Estimator Summary Output Box */
.estimator-summary-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(14px);
    min-width: 0;
}

.summary-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.summary-header h4 {
    color: #ffffff;
    font-size: 1.1rem;
}

.summary-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.summary-items-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-light);
    gap: 8px;
}

.summary-items-list li strong {
    color: #ffffff;
    text-align: right;
}

.summary-estimated-badge {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.summary-estimated-badge small {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-cyan);
    margin-bottom: 4px;
    font-weight: 700;
}

.summary-estimated-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.estimator-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---------------------------------------------------------
   PROCESS TIMELINE
--------------------------------------------------------- */
.process-section {
    padding: 100px 0;
    background: var(--bg-surface-1);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-royal) 0%, var(--color-cyan) 100%);
    z-index: 0;
    opacity: 0.3;
}

.process-step-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
    min-width: 0;
}

.process-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-royal);
}

.step-number-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 14px rgba(30, 91, 255, 0.3);
    border: 3px solid #ffffff;
}

.process-step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.process-step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------------------------------------------------------
   WHY CHOOSE US & COMPARISON TABLE
--------------------------------------------------------- */
.why-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.why-grid-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 45px;
    align-items: center;
}

.why-content-col, .why-comparison-col {
    min-width: 0;
}

.why-lead-desc {
    margin-bottom: 1.75rem;
    font-size: 1.02rem;
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-surface-1);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.why-feature-item:hover {
    background: var(--bg-primary);
    border-color: var(--color-royal);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.why-icon-bubble {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(30, 91, 255, 0.1);
    color: var(--color-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--color-navy);
}

.why-feature-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Comparison Table Wrapper for Responsive Scrolling */
.comparison-card {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 30px;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
    width: 100%;
    min-width: 0;
}

.comparison-card h3 {
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.table-scroll-hint {
    display: none;
    font-size: 0.75rem;
    color: var(--color-cyan);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 460px;
}

.comparison-table th, .comparison-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
    text-align: left;
}

.comparison-table th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.comparison-table th:last-child {
    color: var(--color-cyan);
}

.comparison-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .td-generic {
    color: #f87171;
    font-weight: 500;
}

.comparison-table .td-innovidea {
    color: #34d399;
    font-weight: 700;
}

/* ---------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-surface-1);
    position: relative;
}

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

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 91, 255, 0.3);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 0.94rem;
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: 18px;
}

.testimonial-outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    align-self: flex-start;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.client-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.client-info h4 {
    font-size: 0.9rem;
    color: var(--color-navy);
    margin-bottom: 1px;
}

.client-info p {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ---------------------------------------------------------
   FAQ ACCORDION
--------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.faq-accordion-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-surface-1);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item.active {
    border-color: var(--color-royal);
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question-btn {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(30, 91, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-royal);
    font-size: 1rem;
    font-weight: 700;
    transition: transform var(--transition-fast), background var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--color-royal);
    color: #ffffff;
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-smooth), padding 0.35s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer-content {
    padding: 0 20px 20px;
}

.faq-answer-content p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ---------------------------------------------------------
   HIGH-CONVERSION CONTACT HUB
--------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background: radial-gradient(100% 100% at 50% 0%, #08122c 0%, #04091a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-hub-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info-col, .contact-form-card {
    min-width: 0;
}

.contact-info-col h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-col p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.direct-channels-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2rem;
}

.direct-channel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all var(--transition-fast);
}

.direct-channel-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-cyan);
    transform: translateX(4px);
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.channel-whatsapp .channel-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.channel-email .channel-icon {
    background: rgba(30, 91, 255, 0.2);
    color: var(--color-royal-light);
}

.channel-text small {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.channel-text strong {
    font-size: 0.95rem;
    color: #ffffff;
}

.response-pledge-badge {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pledge-dot {
    color: #10b981;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 34px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.contact-form-card h3 {
    color: #ffffff;
    margin-bottom: 6px;
}

.contact-form-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px; /* Prevents auto-zoom on mobile */
    transition: all var(--transition-fast);
}

.form-select-custom {
    background-color: #0d1a3a !important;
    color: #ffffff !important;
}

.form-control:focus {
    border-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 14px rgba(0, 210, 255, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

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

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.site-footer {
    background: var(--color-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 70px 0 25px;
    position: relative;
    z-index: 2;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-info, .footer-col {
    min-width: 0;
}

/* Footer Logo Card */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-logo-card {
    background: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition-fast);
}

.footer-logo-card:hover {
    transform: translateY(-2px);
}

.footer-logo-img {
    height: 42px;
    width: auto;
    max-height: 42px;
    object-fit: contain;
    display: block;
}

.footer-brand-info p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 280px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background: var(--color-royal);
    color: #ffffff;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    color: var(--text-light);
    font-size: 0.86rem;
    transition: all var(--transition-fast);
}

.footer-nav-list a:hover {
    color: var(--color-cyan);
    padding-left: 3px;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------------------------------------------------------
   SCROLL TO TOP & TOAST NOTIFICATION
--------------------------------------------------------- */
.back-to-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-blue);
    cursor: pointer;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.toast-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f172a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-cyan);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s var(--ease-spring);
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(90%, 420px);
}

.toast-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ---------------------------------------------------------
   SCROLL REVEAL (INTERSECTION OBSERVER)
--------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* =========================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
========================================================= */

/* Tablet & Smaller Desktops (Max 1100px) */
@media (max-width: 1100px) {
    .services-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-card {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-metric-box:nth-child(2) {
        border-right: none;
    }
    
    .stat-metric-box:nth-child(1),
    .stat-metric-box:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .process-timeline::before {
        display: none;
    }

    .why-grid-layout,
    .estimator-grid,
    .contact-hub-grid,
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .hero-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-actions-row {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-visual-wrapper {
        max-width: 580px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Tablets (Max 860px) */
@media (max-width: 860px) {
    .nav-hide-mobile {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    .brand-logo-img {
        height: 38px;
        max-height: 38px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 12px;
        right: 12px;
        background: rgba(8, 18, 44, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-lg);
        flex-direction: column;
        padding: 20px 16px;
        gap: 6px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        z-index: 10000;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        max-height: calc(100vh - 84px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s var(--ease-spring);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        padding: 12px 18px;
        font-size: 0.98rem;
        color: #ffffff;
        border-radius: var(--radius-md);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(30, 91, 255, 0.25);
        color: var(--color-cyan);
    }

    .mobile-drawer-cta {
        display: block !important;
        padding-top: 10px;
        margin-top: 6px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .floating-glass-badge {
        display: none !important; /* Prevents overflow on mobile */
    }

    .table-scroll-hint {
        display: block;
    }
}

/* Small Mobile Screens (Max 600px) */
@media (max-width: 600px) {
    .site-header {
        padding: 12px 0;
    }

    .brand-logo-img {
        height: 35px;
        max-height: 35px;
    }

    .footer-logo-img {
        height: 36px;
        max-height: 36px;
    }

    .hero-section {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.75rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions-row .btn {
        width: 100%;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .services-section,
    .estimator-section,
    .process-section,
    .why-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }

    .services-bento-grid,
    .testimonials-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .stat-metric-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        padding: 14px 8px;
    }

    .stat-metric-box:nth-child(3),
    .stat-metric-box:nth-child(4) {
        border-bottom: none !important;
    }

    .estimator-box {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }

    .estimator-summary-panel {
        padding: 20px 16px;
    }

    .summary-items-list li {
        flex-direction: column;
        gap: 2px;
    }

    .summary-items-list li strong {
        text-align: left;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }

    .comparison-card {
        padding: 20px 14px;
        border-radius: var(--radius-lg);
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .back-to-top-btn {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* Extra Small Phones (Max 380px) */
@media (max-width: 380px) {
    .container {
        width: 92%;
    }

    .brand-logo-img {
        height: 28px;
        max-height: 28px;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .console-tab-btn {
        font-size: 0.72rem;
        padding: 6px 8px;
    }

    .service-card {
        padding: 24px 16px;
    }

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