/* ===================================================
   Quick Solution IT — Style System
   =================================================== */

:root {
    /* Brand Colors (Option A: The Dark Tech Cinematic - Default) */
    --primary: #FFFFFF;        /* Absolute white for headings */
    --secondary: #2F6FEB;      /* Electric Blue accent */
    --accent: #2563EB;         /* Blue hover state */
    --accent-emerald: #00F5A0; /* Cyber Green success accents */
    --text-dark: #FFFFFF;      /* Headings text color */
    --text-body: #94A3B8;      /* Slate-400 for high readability */
    --text-muted: #64748B;     /* Slate-500 for captions */
    --white: #FFFFFF;          /* Absolute white for utility */
    --bg-page: #080C14;        /* Dark Slate Base */
    --bg-alt: #0C111C;         /* Deep Graphite Contrast */
    --bg-card: #0E1524;        /* Dark card face background */
    --bg-navbar: rgba(8, 12, 20, 0.95); /* Transparent scrolled nav bg */
    --bg-mobile-nav: rgba(8, 12, 20, 0.98); /* Mobile fullscreen menu - almost solid */

    /* Gradients */
    --gradient: linear-gradient(135deg, #2F6FEB, #6366F1, #00F5A0);
    --gradient-btn: linear-gradient(135deg, #2F6FEB, #4F46E5);
    --gradient-light: linear-gradient(135deg, rgba(47, 111, 235, 0.04), rgba(0, 245, 160, 0.02));

    /* Dynamic colors for opacities */
    --secondary-bg-light: rgba(47, 111, 235, 0.08);
    --secondary-bg-hover: rgba(47, 111, 235, 0.15);
    --secondary-glow: rgba(47, 111, 235, 0.25);
    --shadow-featured-glow: 0 10px 40px rgba(47, 111, 235, 0.25);
    --shadow-badge-glow: 0 4px 16px rgba(47, 111, 235, 0.3);

    /* Comparison Backgrounds */
    --bg-comp-bad: rgba(239, 68, 68, 0.05);
    --bg-comp-good: rgba(0, 245, 160, 0.03);
    --bg-comp-good-td: rgba(0, 245, 160, 0.015);
    --bg-urgency: rgba(240, 192, 64, 0.08);
    --border-urgency: rgba(240, 192, 64, 0.3);
    --text-urgency: #F59E0B;
    --bg-error: rgba(239, 68, 68, 0.1);
    --border-error: rgba(239, 68, 68, 0.3);
    --text-error: #EF4444;
    --bg-success: rgba(16, 185, 129, 0.1);
    --border-success: rgba(16, 185, 129, 0.3);
    --text-success: #10B981;
    --bg-muted-light: rgba(255, 255, 255, 0.03);

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.05);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 40px rgba(47, 111, 235, 0.15); /* Soft electric blue glow */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 0.2s var(--ease);
    --t-base: 0.3s var(--ease);
    --t-smooth: 0.5s var(--ease);
}

/* Light Theme Variables */
html.light-theme {
    --primary: #09090B;        /* Slate-950 headings */
    --secondary: #3A00E5;      /* Royal Indigo accent */
    --accent: #2563EB;         /* Indigo/cobalt hover state */
    --accent-emerald: #0D9488; /* Emerald green for positive accents */
    --text-dark: #09090B;
    --text-body: #27272A;      /* Slate-800 body text */
    --text-muted: #71717A;
    --bg-page: #FBFBFD;        /* Cool Chalk White */
    --bg-alt: #F5F5F7;         /* Soft Gray Contrast */
    --bg-card: #FFFFFF;        /* White card backgrounds */
    --bg-navbar: rgba(255, 255, 255, 0.95); /* Translucent light nav bg */
    --bg-mobile-nav: rgba(251, 251, 253, 0.99); /* Mobile fullscreen menu - almost solid */
    --border: rgba(9, 9, 11, 0.06);
    --border-card: rgba(9, 9, 11, 0.04);
    --gradient: linear-gradient(135deg, #3A00E5, #6366F1, #4F46E5);
    --gradient-btn: linear-gradient(135deg, #3A00E5, #4F46E5);
    --gradient-light: linear-gradient(135deg, rgba(58, 0, 229, 0.02), rgba(99, 102, 241, 0.04));
    --secondary-bg-light: rgba(58, 0, 229, 0.06);
    --secondary-bg-hover: rgba(58, 0, 229, 0.12);
    --secondary-glow: rgba(58, 0, 229, 0.08);
    --shadow-featured-glow: 0 10px 40px rgba(58, 0, 229, 0.12);
    --shadow-badge-glow: 0 4px 16px rgba(58, 0, 229, 0.25);
    --bg-comp-bad: #FFF0F0;
    --bg-comp-good: rgba(58, 0, 229, 0.015);
    --bg-comp-good-td: rgba(58, 0, 229, 0.008);
    --bg-urgency: #FFF9E6;
    --border-urgency: #F0C040;
    --text-urgency: #7A5C00;
    --bg-error: #FFEBEE;
    --border-error: #FFCDD2;
    --text-error: #C62828;
    --bg-success: #E8F5E9;
    --border-success: #A5D6A7;
    --text-success: #1a7a3a;
    --bg-muted-light: #F4F4F5;
    --shadow-sm: 0 2px 8px rgba(9, 9, 11, 0.03);
    --shadow-md: 0 4px 20px rgba(9, 9, 11, 0.05);
    --shadow-lg: 0 10px 30px rgba(9, 9, 11, 0.06);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 16px 40px rgba(58, 0, 229, 0.08); /* Soft indigo hover glow */
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 100%; }
body { font-family: var(--font-body); background: var(--bg-page); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; font-size: 16px; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* === UTILITY === */
.pb-0 {
    padding-bottom: 0 !important;
}
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-white-gradient {
    background: linear-gradient(135deg, #93BFFF, #D4E4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === HEADING SCALE === */
h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; line-height: 1.2; }
h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; line-height: 1.25; }
h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
h4 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; line-height: 1.4; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.25rem; }
}

/* === PARAGRAPH READABILITY === */
p { max-width: 65ch; line-height: 1.7; margin-bottom: 1rem; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 12px 0; background: transparent; transition: var(--t-base);
}
.navbar.scrolled {
    padding: 8px 0;
    background: var(--bg-navbar);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 55px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    padding: 8px 16px; font-family: var(--font-heading); font-size: 1rem; font-weight: 500; letter-spacing: 0.2px;
    color: var(--text-dark); border-radius: var(--radius-full); transition: var(--t-fast);
}

.nav-links a:hover { color: var(--secondary); background: var(--secondary-bg-light); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
    padding: 10px 22px; font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600;
    background: var(--gradient-btn); color: white; border-radius: 10px; transition: var(--t-base);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--secondary-glow); }
.nav-whatsapp {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; font-size: 0.875rem; font-weight: 600; font-family: var(--font-heading);
    color: white; background: #25D366; border: 2px solid #25D366; border-radius: 10px;
}
.nav-whatsapp:hover { background: #1fb855; border-color: #1fb855; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.nav-whatsapp svg { stroke: white; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--t-fast); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 22px; font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    border-radius: 8px; border: none; cursor: pointer; transition: var(--t-base);
    position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary { background: var(--gradient-btn); color: white; box-shadow: 0 4px 16px rgba(58, 0, 229, 0.12); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58, 0, 229, 0.2); filter: brightness(1.08); }

.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
.btn-outline {
    background: transparent; color: var(--secondary); border: 2px solid var(--secondary);
}
.btn-outline:hover { background: var(--gradient-btn); color: white; border-color: transparent; transform: translateY(-2px); }
.btn-outline-wa {
    background: rgba(37,211,102,0.08); color: #1a9e4a; border: 2px solid #25D366;
}
.btn-outline-wa:hover { background: rgba(37,211,102,0.14); color: #148a3c; border-color: #1fb855; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.18); }
.btn-outline-wa .btn-sub { color: #5ab87a; }
.btn-outline-wa:hover .btn-sub { color: #148a3c; }
.btn-cta-main {
    background: #FFFFFF;
    color: #09090B !important;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.8);
    -webkit-text-fill-color: #09090B !important;
}
.btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,255,255,0.5); background: #F0F0F0; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.95rem; font-weight: 500; }
.btn-block { width: 100%; text-align: center; }
.btn-sub { display: block; font-size: 0.75rem; opacity: 0.7; font-weight: 400; }
.btn-icon { font-size: 1.15em; }
@keyframes shimmer { 0% { left: -100%; } 50% { left: 150%; } 100% { left: 150%; } }

/* ===================================================
   HERO
   =================================================== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--bg-page); padding-top: 80px; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape { position: absolute; border-radius: 50%; }

.hero-shape-1 { width: 600px; height: 600px; background: rgba(58, 0, 229, 0.03); top: -15%; right: -10%; animation: floatShape 10s ease-in-out infinite; }
.hero-shape-2 { width: 450px; height: 450px; background: rgba(99, 102, 241, 0.04); bottom: -10%; left: -5%; filter: blur(80px); animation: floatShape 12s ease-in-out infinite reverse; }
.hero-shape-3 { width: 300px; height: 300px; background: rgba(58, 0, 229, 0.02); top: 50%; left: 40%; filter: blur(60px); animation: floatShape 8s ease-in-out infinite 1s; }
@keyframes floatShape { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-15px) scale(1.03); } }

.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 620px; color: var(--text-dark); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; background: var(--secondary-bg-light); border: 1px solid var(--secondary-glow);
    border-radius: var(--radius-full); font-size: 13px; font-weight: 600; font-family: var(--font-heading);
    color: var(--secondary); margin-bottom: 24px; animation: fadeInUp 0.8s ease both;
}
.hero-badge svg { stroke: var(--secondary); }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.2rem,4.5vw,48px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--primary); animation: fadeInUp 0.8s 0.1s ease both; }
.hero-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle { font-size: 17px; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; animation: fadeInUp 0.8s 0.2s ease both; }
.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; animation: fadeInUp 0.8s 0.3s ease both; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; background: var(--secondary-bg-light); border: 1px solid var(--secondary-glow);
    border-radius: var(--radius-full); font-size: 13px; font-weight: 500; color: var(--text-dark);
}
.trust-badge svg { stroke: var(--secondary); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; animation: fadeInUp 0.8s 0.4s ease both; }
.hero-serving { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); animation: fadeInUp 0.8s 0.5s ease both; }
.hero-serving svg { stroke: var(--secondary); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Illustration */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; animation: fadeInUp 1s 0.3s ease both; }
.hero-illustration { position: relative; width: 100%; max-width: 560px; }
.hero-dashboard-svg {
    width: 100%; height: auto;
    filter: drop-shadow(0 20px 50px rgba(15, 23, 42, 0.1));
}

/* Chart bar grow animation */
.chart-bar { animation: barGrow 1.2s ease-out forwards; animation-delay: 1s; }
.bar-1 { --bar-h: 30; animation-delay: 1.0s; }
.bar-2 { --bar-h: 45; animation-delay: 1.1s; }
.bar-3 { --bar-h: 55; animation-delay: 1.2s; }
.bar-4 { --bar-h: 65; animation-delay: 1.3s; }
.bar-5 { --bar-h: 75; animation-delay: 1.4s; }
.bar-6 { --bar-h: 85; animation-delay: 1.5s; }
.bar-7 { --bar-h: 95; animation-delay: 1.6s; }
.bar-8 { --bar-h: 110; animation-delay: 1.7s; }

@keyframes barGrow {
    0% { height: 0; y: 340; }
    100% { height: calc(var(--bar-h) * 1px); y: calc((340 - var(--bar-h)) * 1px); }
}

/* Growth line draw animation */
.chart-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: lineReveal 1.5s ease-out 1.3s forwards;
}
.line-dot {
    opacity: 0;
    animation: dotAppear 0.4s ease 2.6s forwards;
}
@keyframes lineReveal { to { stroke-dashoffset: 0; } }
@keyframes dotAppear { to { opacity: 1; } }

/* Floating cards repositioned for illustration */
.floating-card { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--bg-card); border-radius: var(--radius-md); font-size: 12px; font-weight: 600; font-family: var(--font-heading); color: var(--primary); box-shadow: var(--shadow-md); border: 1px solid var(--border-card); z-index: 4; white-space: nowrap; }
.card-fb { top: 8%; right: -8%; animation: floatCard 4s ease-in-out infinite; }
.card-bkash { bottom: 18%; left: -6%; animation: floatCard 5s ease-in-out infinite 0.5s; }
.card-ads { top: 48%; right: -10%; animation: floatCard 4.5s ease-in-out infinite 1s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: var(--section-padding); position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; padding: 4px 10px;
    background: var(--secondary-bg-light); border-radius: 999px;
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    color: var(--secondary); margin-bottom: 12px; letter-spacing: 1px;
    text-transform: uppercase;
}
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,36px); font-weight: 600; line-height: 1.2; margin-bottom: 16px; color: var(--primary); }
.section-desc { font-size: 16px; color: var(--text-body); line-height: 1.8; }

/* --- STATS BAR --- */
.stats-bar { padding: 48px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); position: relative; z-index: 3; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 24px 16px; background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--t-base); }
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stat-icon-wrap { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--secondary-bg-light); border-radius: 12px; color: var(--secondary); margin-bottom: 4px; }
.stat-counter-row { display: flex; align-items: baseline; gap: 2px; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-suffix { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* --- SERVICES --- */
.section-services { background: var(--bg-alt); }
.services-header { max-width: 620px; }
.services-header .section-desc { margin-bottom: 0; }

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

.service-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(58, 0, 229, 0.15);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg-light);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: background 0.3s var(--ease);
}
.service-card:hover .service-icon-wrap {
    background: var(--secondary-bg-hover);
}

.service-svg {
    transition: stroke 0.3s var(--ease);
}
.service-card:hover .service-svg path,
.service-card:hover .service-svg line,
.service-card:hover .service-svg circle,
.service-card:hover .service-svg rect {
    stroke: var(--secondary);
}
.service-card:hover .service-svg .svg-keyhole {
    fill: var(--secondary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.service-link:hover {
    color: var(--accent);
    gap: 8px;
}

/* ── SVG Animation Keyframes ── */

/* Card 1: Code Brackets - typing draw animation */
.svg-bracket-left,
.svg-bracket-right,
.svg-slash {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}
.service-card.animated .svg-bracket-left {
    animation: svgDraw 2s ease forwards infinite;
}
.service-card.animated .svg-bracket-right {
    animation: svgDraw 2s 0.3s ease forwards infinite;
}
.service-card.animated .svg-slash {
    animation: svgDraw 2s 0.6s ease forwards infinite;
}

@keyframes svgDraw {
    0% { stroke-dashoffset: 60; }
    40% { stroke-dashoffset: 0; }
    80% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 60; }
}

/* Card 2: Headset Pulse - expanding signal rings */
.service-card.animated .svg-pulse-1 {
    animation: svgPulse 2.5s ease-out infinite;
}
.service-card.animated .svg-pulse-2 {
    animation: svgPulse 2.5s 0.4s ease-out infinite;
}
.service-card.animated .svg-pulse-3 {
    animation: svgPulse 2.5s 0.8s ease-out infinite;
}

@keyframes svgPulse {
    0% { opacity: 0.8; r: 2; }
    50% { opacity: 0.3; }
    100% { opacity: 0; r: 12; }
}

/* Card 3: Cloud Sync - vertical bounce loop */
.service-card.animated .svg-sync-up,
.service-card.animated .svg-sync-line-up {
    animation: svgSyncUp 2.5s ease-in-out infinite;
}
.service-card.animated .svg-sync-down,
.service-card.animated .svg-sync-line-down {
    animation: svgSyncDown 2.5s ease-in-out infinite;
}

@keyframes svgSyncUp {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-3px); opacity: 0.6; }
}
@keyframes svgSyncDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(3px); opacity: 0.6; }
}

/* Card 4: Automation Gear - rotation */
.service-card.animated .svg-gear-outer,
.service-card.animated .svg-gear-inner,
.service-card.animated .svg-tooth {
    transform-origin: 24px 24px;
    animation: svgGearSpin 3s linear infinite;
}
.service-card.animated .svg-node {
    animation: svgNodePulse 2s ease-in-out infinite;
}
.service-card.animated .svg-conn {
    animation: svgConnFlash 2.5s ease-in-out infinite;
}

@keyframes svgGearSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes svgNodePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
@keyframes svgConnFlash {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* Card 5: Shield Lock - draw-in animation */
.svg-shield {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}
.svg-lock-body {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}
.svg-lock-shackle {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
}
.svg-keyhole { opacity: 0; }

.service-card.animated .svg-shield {
    animation: svgShieldDraw 2.5s ease forwards infinite;
}
.service-card.animated .svg-lock-body {
    animation: svgLockDraw 2.5s 0.5s ease forwards infinite;
}
.service-card.animated .svg-lock-shackle {
    animation: svgShackleDraw 2.5s 0.8s ease forwards infinite;
}
.service-card.animated .svg-keyhole {
    animation: svgKeyholeFade 2.5s 1.2s ease forwards infinite;
}

@keyframes svgShieldDraw {
    0% { stroke-dashoffset: 200; }
    40% { stroke-dashoffset: 0; }
    80% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 200; }
}
@keyframes svgLockDraw {
    0% { stroke-dashoffset: 60; }
    40% { stroke-dashoffset: 0; }
    75% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 60; }
}
@keyframes svgShackleDraw {
    0% { stroke-dashoffset: 40; }
    40% { stroke-dashoffset: 0; }
    70% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 40; }
}
@keyframes svgKeyholeFade {
    0% { opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Card 6: Refresh Loop - rotation animation */
.service-card.animated .svg-refresh-arc-1,
.service-card.animated .svg-refresh-arrow-1 {
    transform-origin: 24px 24px;
    animation: svgRefreshSpin 3s linear infinite;
}
.service-card.animated .svg-refresh-arc-2,
.service-card.animated .svg-refresh-arrow-2 {
    transform-origin: 24px 24px;
    animation: svgRefreshSpin 3s linear infinite;
}
.service-card.animated .svg-center-dot {
    animation: svgCenterPulse 2s ease-in-out infinite;
}

@keyframes svgRefreshSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes svgCenterPulse {
    0%, 100% { r: 3; opacity: 0.7; }
    50% { r: 4; opacity: 1; }
}

/* Hover stroke highlight for all SVG icons */
.service-card:hover .service-svg path,
.service-card:hover .service-svg line,
.service-card:hover .service-svg rect {
    stroke-width: 2.5;
    transition: stroke-width 0.3s var(--ease), stroke 0.3s var(--ease);
}

/* ── Services CTA Strip ── */
.services-cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 50px 40px;
    background: var(--gradient);
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.services-cta-strip.visible {
    opacity: 1;
    transform: translateY(0);
}
.services-cta-strip::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: var(--gradient);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}
.services-cta-strip.visible::before {
    animation: ctaGlow 3s 1s ease-in-out forwards;
}

@keyframes ctaGlow {
    0% { opacity: 0; }
    50% { opacity: 0.35; }
    100% { opacity: 0.2; }
}

.services-cta-text {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    color: white;
}
.services-cta-strip .btn-cta-main {
    font-size: 15px;
    padding: 14px 32px;
}
/* --- PROBLEM --- */
.section-problem { background: var(--bg-page); }
.problem-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 900px; margin: 0 auto 48px; }
.problem-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--t-base); }
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.problem-icon { color: var(--secondary); margin-bottom: 12px; }
.problem-card p { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.problem-card strong { color: #D32F2F; }
.problem-conclusion { text-align: center; }
.problem-familiar { font-size: 18px; color: var(--text-body); margin-bottom: 8px; font-style: italic; }
.problem-punchline { font-family: var(--font-heading); font-size: clamp(1.5rem,3vw,32px); font-weight: 600; color: var(--primary); }

/* --- SOLUTION --- */
.section-solution { background: var(--bg-alt); }
.solution-subtitle { text-align: center; font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 32px; color: var(--primary); }
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 900px; margin: 0 auto 48px; }
.solution-item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--bg-card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); font-size: 15px; color: var(--text-dark); transition: var(--t-base); }
.solution-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.sol-icon { width: 42px; height: 42px; min-width: 42px; display: flex; align-items: center; justify-content: center; background: var(--secondary-bg-light); border-radius: 10px; color: var(--secondary); }
.solution-bottom { text-align: center; }
.solution-tagline { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 24px; color: var(--primary); }

/* --- COMPARISON --- */
.section-comparison { background: var(--bg-page); }
.comparison-table-wrap { max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { padding: 18px 24px; font-family: var(--font-heading); font-size: 15px; font-weight: 600; text-align: left; }
.th-bad { background: var(--bg-comp-bad); color: #D32F2F; border-right: 1px solid var(--border); }
.th-good { background: var(--bg-comp-good); color: var(--secondary); }
.comparison-table td { padding: 16px 24px; font-size: 14px; border-top: 1px solid var(--border); }
.comparison-table td:first-child { color: var(--text-muted); border-right: 1px solid var(--border); background: var(--bg-card); }
.comparison-table td:last-child { color: var(--text-dark); font-weight: 500; background: var(--bg-comp-good-td); }
.comparison-table tbody tr:hover td { background: var(--border-card); }

/* --- PACKAGES --- */
.section-packages { background: var(--bg-alt); }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 64px; align-items: start; }
.package-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); padding: 36px 28px; box-shadow: var(--shadow-sm); transition: var(--t-base); position: relative; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.package-card.featured { border-color: var(--secondary); box-shadow: var(--shadow-featured-glow); transform: scale(1.03); z-index: 2; }
.package-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 20px; background: var(--gradient-btn); color: white; font-family: var(--font-heading); font-size: 12px; font-weight: 700; border-radius: var(--radius-full); white-space: nowrap; box-shadow: var(--shadow-badge-glow); }
.package-tier { font-family: var(--font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; color: var(--text-muted); }r(--text-muted); }
.package-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.price-currency { font-size: 20px; font-weight: 700; color: var(--text-muted); }
.price-amount { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--primary); line-height: 1; }
.price-to { font-size: 14px; color: var(--text-muted); }
.package-for { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; font-style: italic; line-height: 1.6; }
.package-features { margin-bottom: 24px; }
.package-features li { padding: 9px 0; font-size: 14px; color: var(--text-body); border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.package-features li:last-child { border-bottom: none; }
.package-features li::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; }
.package-meta { margin-bottom: 24px; padding: 16px; background: var(--bg-alt); border-radius: var(--radius-md); }
.meta-item { font-size: 13px; color: var(--text-body); margin-bottom: 6px; }
.meta-item:last-child { margin-bottom: 0; }
.meta-item strong { color: var(--primary); }
.addons-section { max-width: 800px; margin: 0 auto; }
.addons-title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; text-align: center; margin-bottom: 28px; color: var(--primary); }
.addons-title span { color: var(--text-muted); font-weight: 400; }
.addons-grid { display: grid; gap: 10px; }
.addon-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--t-fast); }
.addon-item:hover { border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.addon-name { font-size: 14px; color: var(--text-body); }
.addon-price { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--secondary); white-space: nowrap; }

/* --- AUDIENCE --- */
.section-audience { background: var(--bg-page); }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.audience-card { padding: 36px 28px; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-sm); transition: var(--t-base); }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.audience-icon { width: 72px; height: 72px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: var(--secondary-bg-light); border-radius: 18px; color: var(--secondary); }
.audience-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--primary); }
.audience-card p { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* --- PROCESS --- */
.section-process { background: var(--bg-alt); }
.process-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.process-timeline::before { content: ''; position: absolute; left: 70px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--secondary), var(--accent)); opacity: 0.3; }
.process-step { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 40px; position: relative; }
.process-step:last-child { margin-bottom: 0; }
.step-day { flex-shrink: 0; width: 80px; padding: 10px 0; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--secondary); text-align: center; position: relative; }
.step-day::after { content: ''; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--gradient-btn); box-shadow: 0 0 12px var(--secondary-glow); }
.step-content { flex: 1; padding: 20px 24px; background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--t-base); border: 1px solid var(--border-card); }
.step-content:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.step-content h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--primary); }
.step-content p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* --- TESTIMONIALS --- */
.section-testimonials { background: var(--bg-page); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.testimonial-card { padding: 32px 24px; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); transition: var(--t-base); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars { margin-bottom: 16px; font-size: 14px; color: #F59E0B; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 1.0625rem; color: var(--text-body); line-height: 1.7; font-style: italic; margin-bottom: 24px; padding-left: 16px; border-left: 3px solid var(--secondary); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-btn); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.author-info strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.author-info span { font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; }
.testimonials-cta { text-align: center; }

/* --- GUARANTEES --- */
.section-guarantees { background: var(--bg-alt); }
.guarantees-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.guarantee-card { padding: 32px 24px; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-sm); transition: var(--t-base); }
.guarantee-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.guarantee-icon { width: 56px; height: 56px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: var(--secondary-bg-light); border-radius: 14px; color: var(--secondary); }
.guarantee-card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--primary); }
.guarantee-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* --- FAQ --- */
.section-faq { background: var(--bg-page); }
.faq-list { max-width: 800px; margin: 0 auto 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 4px; background: none; border: none; cursor: pointer; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--primary); text-align: left; transition: var(--t-fast); }
.faq-question:hover { color: var(--secondary); }
.faq-toggle { color: var(--text-muted); transition: var(--t-fast); flex-shrink: 0; }
.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--secondary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 4px 28px; font-size: 1rem; color: var(--text-body); line-height: 1.75; }
.faq-cta { text-align: center; }

/* --- DEMOS --- */
.section-demos { background: var(--bg-alt); }
.demos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.demo-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--t-base); }
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.demo-preview { height: 200px; position: relative; overflow: hidden; }
.demo-clothing { background: linear-gradient(135deg, #2D1520, #241018); }
.demo-cosmetics { background: linear-gradient(135deg, #2D1A10, #251510); }
.demo-electronics { background: linear-gradient(135deg, #0E1D35, #0B1828); }

/* Light theme - restore original pastels */
html.light-theme .demo-clothing { background: linear-gradient(135deg, #f8e1e8, #fce4ec); }
html.light-theme .demo-cosmetics { background: linear-gradient(135deg, #fce4ec, #fff3e0); }
html.light-theme .demo-electronics { background: linear-gradient(135deg, #e3f2fd, #e8eaf6); }

.demo-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.2); }
.demo-badge { padding: 8px 20px; background: var(--bg-card); border-radius: var(--radius-full); font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--primary); box-shadow: var(--shadow-sm); letter-spacing: 1px; }
.demo-mockup-mini { position: absolute; inset: 16px; background: var(--bg-card); border-radius: var(--radius-sm); padding: 10px; z-index: 0; opacity: 0.85; }
.mini-nav { height: 10px; background: var(--border); border-radius: 3px; margin-bottom: 8px; }
.mini-banner { height: 50px; background: var(--secondary-bg-light); border-radius: 4px; margin-bottom: 10px; }
.mini-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.mini-products span { height: 45px; background: var(--border); border-radius: 3px; }
.demo-info { padding: 24px; }
.demo-info h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--primary); }
.demo-info p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; }
.demos-tagline { text-align: center; font-family: var(--font-heading); font-size: 16px; font-weight: 500; color: var(--text-muted); font-style: italic; }

/* --- FINAL CTA --- */
/* Final CTA redesign applied - see CONTACT & FOOTER REDESIGN section */

/* --- FOOTER --- */
/* Footer redesign applied - see CONTACT & FOOTER REDESIGN section */

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: var(--t-base); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* --- BACK TO TOP --- */
.back-to-top { position: fixed; bottom: 28px; left: 28px; width: 44px; height: 44px; background: var(--bg-card); color: var(--secondary); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 998; opacity: 0; pointer-events: none; transform: translateY(10px); transition: var(--t-base); box-shadow: var(--shadow-sm); }
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--secondary); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 16px var(--secondary-glow); }

/* --- THEME SWITCHER --- */
.theme-switcher {
    position: fixed;
    bottom: 98px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.theme-switcher:hover {
    transform: translateY(-2px) rotate(15deg);
    box-shadow: var(--shadow-hover);
    color: var(--accent-emerald);
}
.theme-switcher svg {
    transition: transform 0.3s var(--ease);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-trust-badges, .hero-ctas { justify-content: center; }
    .hero-serving { justify-content: center; }
    .hero-visual { display: none; }
    .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-6px); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .guarantees-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }
    .nav-links { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-mobile-nav); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; pointer-events: none; transition: var(--t-base); z-index: 999; }
    .nav-links.active { opacity: 1; pointer-events: all; }
    .nav-links a { font-size: 1.05rem; line-height: 1.6; padding: 12px 32px; color: var(--primary); }
    .nav-actions { display: none; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero { padding-top: 100px; min-height: auto; padding-bottom: 100px; }
    .hero-title { font-size: clamp(1.8rem,6vw,32px); }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 340px; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .services-cta-strip { padding: 36px 24px; flex-direction: column; gap: 16px; }
    .problem-grid, .solution-grid { grid-template-columns: 1fr; }
    .comparison-table-wrap { overflow-x: auto; }
    .comparison-table { min-width: 500px; }
    .audience-grid, .demos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .guarantees-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .stat-number { font-size: 2rem; }
    .process-timeline::before { left: 14px; }
    .step-day { width: auto; min-width: 60px; font-size: 12px; }
    .step-day::after { right: -18px; width: 10px; height: 10px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .back-to-top { bottom: 20px; left: 20px; width: 40px; height: 40px; }
    .theme-switcher { bottom: 84px; right: 20px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    :root { --section-padding: 48px 0; }
    .container { padding: 0 16px; }
    .hero-trust-badges { flex-direction: column; align-items: center; }
    .section-title { font-size: clamp(1.5rem,6vw,26px); }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    body { font-size: 14px; }
}

/* ===================================================
   SVG ANIMATION ENHANCEMENTS
   =================================================== */

/* ─── Accessibility: Focus Styles ─── */
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ─── Section A: Stats Ring ─── */
.stat-ring-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}
.stat-ring-svg {
    display: block;
    overflow: visible;
}
.stat-ring-fill {
    transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stats-connector {
    grid-column: 1 / -1;
    width: 100%;
    height: 8px;
    margin-top: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease 1.2s;
}
.stats-bar.animated .stats-connector { opacity: 1; }
@media (max-width: 768px) { .stats-connector { display: none; } }
@media (prefers-reduced-motion: no-preference) {
    .stats-dot { animation: statsDotFloat 3s ease-in-out infinite; }
    .stats-dot:nth-child(2) { animation-delay: 0.6s; }
    .stats-dot:nth-child(3) { animation-delay: 1.2s; }
}
@keyframes statsDotFloat {
    0%, 100% { opacity: 0.35; transform: translateY(0); }
    50%       { opacity: 0.9;  transform: translateY(-3px); }
}

/* ─── Section B: Problem Warning Badges ─── */
.problem-card { position: relative; overflow: visible; }
.problem-warn-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(211,47,47,0.2));
}
.problem-card.animated .warn-triangle {
    animation: warnTriangleDraw 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.problem-card.animated .warn-exclaim-stem {
    animation: warnExclaimFade 0.35s 0.95s ease forwards;
}
.problem-card.animated .warn-exclaim-dot {
    animation: warnExclaimFade 0.3s 1.15s ease forwards;
}
@media (prefers-reduced-motion: no-preference) {
    .problem-card.animated .warn-pulse-ring {
        animation: warnPulseRing 2.8s 1.3s ease-out infinite;
    }
}
@keyframes warnTriangleDraw {
    0%   { stroke-dashoffset: 90; }
    100% { stroke-dashoffset: 0; }
}
@keyframes warnExclaimFade {
    to { opacity: 1; }
}
@keyframes warnPulseRing {
    0%   { r: 13; opacity: 0.6; }
    70%  { r: 22; opacity: 0; }
    100% { r: 22; opacity: 0; }
}

/* ─── Section C: Solution Micro-SVG Icons ─── */
.sol-animated-svg { color: var(--secondary); display: block; }

/* Default hidden states */
.sol-bar-1 { stroke-dasharray: 6;  stroke-dashoffset: 6; }
.sol-bar-2 { stroke-dasharray: 12; stroke-dashoffset: 12; }
.sol-bar-3 { stroke-dasharray: 9;  stroke-dashoffset: 9; }

/* Globe draw */
.solution-item.animated .sol-globe-outer {
    animation: solPathDraw 1.2s ease forwards;
}
.solution-item.animated .sol-globe-meridian {
    animation: solPathDraw 0.9s 0.5s ease forwards;
}
.solution-item.animated .sol-globe-h {
    animation: solFadeIn 0.3s 0.85s ease forwards;
}
/* Facebook F */
.solution-item.animated .sol-fb-path {
    animation: solPathDraw 1.1s ease forwards;
}
/* Branding circle + check */
.solution-item.animated .sol-brand-circle {
    animation: solPathDraw 1s ease forwards;
}
.solution-item.animated .sol-brand-check {
    animation: solPathDraw 0.5s 0.8s ease forwards;
}
/* Ads bars — grow from baseline */
.solution-item.animated .sol-bar-1 {
    animation: solPathDraw 0.7s ease forwards;
}
.solution-item.animated .sol-bar-2 {
    animation: solPathDraw 0.7s 0.12s ease forwards;
}
.solution-item.animated .sol-bar-3 {
    animation: solPathDraw 0.7s 0.25s ease forwards;
}
/* Payment card */
.solution-item.animated .sol-card-body {
    animation: solPathDraw 1s ease forwards;
}
.solution-item.animated .sol-card-stripe {
    animation: solPathDraw 0.6s 0.75s ease forwards;
}
/* Box body */
.solution-item.animated .sol-box-body {
    animation: solPathDraw 1s ease forwards;
}
.solution-item.animated .sol-box-seam {
    animation: solPathDraw 0.5s 0.7s ease forwards;
}
.solution-item.animated .sol-box-stem {
    animation: solPathDraw 0.4s 1s ease forwards;
}
.solution-item.animated .sol-box-dot {
    animation: solFadeIn 0.3s 1.1s ease forwards;
}
/* Email envelope */
.solution-item.animated .sol-env-body {
    animation: solPathDraw 1s ease forwards;
}
.solution-item.animated .sol-env-flap {
    animation: solPathDraw 0.6s 0.7s ease forwards;
}
/* Training video */
.solution-item.animated .sol-video-rect {
    animation: solPathDraw 0.9s ease forwards;
}
.solution-item.animated .sol-play-tri {
    animation: solPathDraw 0.6s 0.7s ease forwards;
}
/* WhatsApp bubble + typing dots */
.solution-item.animated .sol-wa-bubble {
    animation: solPathDraw 1.2s ease forwards;
}
.solution-item.animated .sol-typing-dot-1 {
    animation: solFadeIn 0.2s 1s ease forwards;
}
.solution-item.animated .sol-typing-dot-2 {
    animation: solFadeIn 0.2s 1.1s ease forwards;
}
.solution-item.animated .sol-typing-dot-3 {
    animation: solFadeIn 0.2s 1.2s ease forwards;
}
@media (prefers-reduced-motion: no-preference) {
    .solution-item.animated .sol-typing-dot {
        animation: solTypingBounce 1.8s 1.3s ease-in-out infinite !important;
    }
    .solution-item.animated .sol-typing-dot-2 { animation-delay: 1.5s !important; }
    .solution-item.animated .sol-typing-dot-3 { animation-delay: 1.7s !important; }
}
@keyframes solPathDraw { to { stroke-dashoffset: 0; } }
@keyframes solFadeIn { to { opacity: 1; } }
@keyframes solTypingBounce {
    0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
    30%            { opacity: 1;   transform: translateY(-2px); }
}

/* ─── Section D: Comparison Visual ─── */
.comparison-visual {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    max-width: 920px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border, #E8ECF2);
    border-radius: var(--radius-lg, 16px);
    box-shadow: var(--shadow-lg, 0 8px 40px rgba(15, 23, 42,0.10));
    overflow: hidden;
}
.comp-col { padding: 0 28px 28px; }
.comp-col-bad  { background: var(--bg-comp-bad); }
.comp-col-good { background: var(--bg-comp-good); }
.comp-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 0 16px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.comp-col-bad  .comp-col-header { color: #D32F2F; }
.comp-col-good .comp-col-header { color: var(--secondary); }
.comp-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.comp-col-good .comp-row { transform: translateX(10px); }
.comp-row.visible { opacity: 1; transform: translateX(0); }
.comp-row:last-child { border-bottom: none; }
.comp-col-bad  .comp-row { color: var(--text-muted); }
.comp-col-good .comp-row { color: var(--text-dark); font-weight: 500; }
.comp-icon { flex-shrink: 0; margin-top: 1px; }
.comp-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.comp-divider-svg {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
}
.comp-vs-badge {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    background: var(--gradient-btn);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(58, 0, 229, 0.15);
    letter-spacing: 0.5px;
}
.comparison-visual.animated .comp-divider-line {
    animation: compLineDraw 0.8s ease forwards;
}
.comparison-visual.animated .comp-x-line1 {
    animation: compLineDraw 0.3s ease forwards;
}
.comparison-visual.animated .comp-x-line2 {
    animation: compLineDraw 0.3s 0.15s ease forwards;
}
.comparison-visual.animated .comp-check-path {
    animation: compLineDraw 0.45s ease forwards;
}
@keyframes compLineDraw { to { stroke-dashoffset: 0; } }
@media (max-width: 768px) {
    .comparison-visual {
        grid-template-columns: 1fr;
        border-radius: var(--radius-md, 12px);
    }
    .comp-divider { display: none; }
    .comp-col-bad {
        border-bottom: 2px solid var(--border, #E8ECF2);
        padding-bottom: 16px;
    }
    .comp-col-good { padding-top: 16px; }
}

/* ─── Section E: Process Timeline Enhanced ─── */
.process-timeline { position: relative; }
.process-timeline--enhanced::before { display: none !important; }
.process-path-svg {
    position: absolute;
    left: 60px;
    top: 0;
    width: 20px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
@media (prefers-reduced-motion: no-preference) {
    .process-path-fill {
        transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
.process-node {
    transition: fill 0.4s ease, filter 0.4s ease;
}
.process-node.active { fill: var(--secondary, #3A00E5); }
@media (prefers-reduced-motion: no-preference) {
    .process-node.active {
        animation: processNodeGlow 2.5s ease-in-out infinite;
    }
}
@keyframes processNodeGlow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(58, 0, 229, 0.3)); }
    50%       { filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.75)); }
}
.process-step.step-active .step-content {
    border-color: rgba(58, 0, 229, 0.2);
    box-shadow: 0 4px 16px rgba(58, 0, 229, 0.08);
}
.process-step.step-active .step-day {
    color: var(--accent, #2563EB);
}
@media (max-width: 768px) {
    .process-path-svg { left: 4px; }
}

/* ─── Section F: Guarantee Shield Badges ─── */
.guarantee-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}
.guarantee-badge-svg {
    overflow: visible;
    transition: transform 0.3s ease;
}
.guarantee-card:hover .guarantee-badge-svg { transform: scale(1.06); }

.guarantee-card.animated .gshield-outline {
    animation: gShieldDraw 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.guarantee-card.animated .gclock-face {
    animation: gShieldDraw 1s 0.6s ease forwards;
}
.guarantee-card.animated .gclock-hour {
    animation: solFadeIn 0.3s 1.3s ease forwards;
}
.guarantee-card.animated .gclock-dot {
    animation: solFadeIn 0.25s 1.35s ease forwards;
}
@media (prefers-reduced-motion: no-preference) {
    .guarantee-card.animated .gclock-min {
        animation: solFadeIn 0.3s 1.4s ease forwards, gClockSpin 4s 1.7s linear infinite;
    }
}
.guarantee-card.animated .gshield-inner {
    animation: solFadeIn 0.4s 0.9s ease forwards;
}
.guarantee-card.animated .gmoney-path {
    animation: gShieldDraw 1s 0.7s ease forwards;
}
.guarantee-card.animated .gsupport-arc1 {
    animation: gShieldDraw 0.8s 0.6s ease forwards;
}
.guarantee-card.animated .gsupport-arc2 {
    animation: gShieldDraw 0.7s 0.9s ease forwards;
}
.guarantee-card.animated .gsupport-stem {
    animation: solFadeIn 0.3s 1.2s ease forwards;
}
.guarantee-card.animated .gsupport-dot {
    animation: solFadeIn 0.3s 1.4s ease forwards;
}
.guarantee-card.animated .gkey-bow {
    animation: gShieldDraw 0.9s 0.6s ease forwards;
}
.guarantee-card.animated .gkey-shaft {
    animation: solFadeIn 0.35s 1.1s ease forwards;
}
.guarantee-card.animated .gkey-tooth1 {
    animation: solFadeIn 0.25s 1.3s ease forwards;
}
.guarantee-card.animated .gkey-tooth2 {
    animation: solFadeIn 0.25s 1.45s ease forwards;
}
@keyframes gShieldDraw { to { stroke-dashoffset: 0; } }
@keyframes gClockSpin {
    0%   { transform: rotate(0deg);   transform-origin: 40px 46px; }
    100% { transform: rotate(360deg); transform-origin: 40px 46px; }
}

/* ─── Section G: Demo Browser Mockups ─── */
.demo-browser-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.demo-card.animated .demo-loading-bar {
    animation: demoLoadBar 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.demo-card.animated .demo-block-1 { animation: demoBlockIn 0.5s 0.85s ease forwards; }
.demo-card.animated .demo-block-2 { animation: demoBlockIn 0.5s 1.1s  ease forwards; }
.demo-card.animated .demo-block-3 { animation: demoBlockIn 0.5s 1.35s ease forwards; }
.demo-card.animated .demo-notif-badge {
    animation: demoBadgePop 0.4s 1.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.demo-card.animated .demo-chat-bubble {
    animation: demoChatSlide 0.5s 1.8s ease forwards;
}
.demo-card.animated .demo-typing-d1 {
    animation: solFadeIn 0.2s 2.1s ease forwards;
}
.demo-card.animated .demo-typing-d2 {
    animation: solFadeIn 0.2s 2.2s ease forwards;
}
.demo-card.animated .demo-typing-d3 {
    animation: solFadeIn 0.2s 2.3s ease forwards;
}
@media (prefers-reduced-motion: no-preference) {
    .demo-card.animated .demo-typing-d1 {
        animation: solFadeIn 0.2s 2.1s ease forwards, solTypingBounce 1.8s 2.3s ease-in-out infinite;
    }
    .demo-card.animated .demo-typing-d2 {
        animation: solFadeIn 0.2s 2.2s ease forwards, solTypingBounce 1.8s 2.5s ease-in-out infinite;
    }
    .demo-card.animated .demo-typing-d3 {
        animation: solFadeIn 0.2s 2.3s ease forwards, solTypingBounce 1.8s 2.7s ease-in-out infinite;
    }
}
@keyframes demoLoadBar {
    0%   { width: 0;     opacity: 1; }
    70%  { width: 264px; opacity: 1; }
    100% { width: 264px; opacity: 0; }
}
@keyframes demoBlockIn {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes demoBadgePop {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes demoChatSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   HERO CHECKLIST (replaces fake dashboard)
   =================================================== */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-checklist-wrap { position: relative; width: 100%; max-width: 460px; }
.hero-checklist-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 28px 32px 24px;
    border: 1px solid var(--border);
}
.checklist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.checklist-label { font-size: 0.85rem; font-weight: 600; color: var(--primary); letter-spacing: 0.02em; }
.checklist-days-badge {
    background: var(--gradient-btn);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.hero-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.hc-item.checked { opacity: 1; transform: translateX(0); }
.hc-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary-bg-light);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    transition: background 0.3s ease;
}
.hc-item.checked .hc-check { background: var(--secondary); color: white; }
.hc-text { font-size: 0.92rem; color: var(--text-dark); font-weight: 500; }
.checklist-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.checklist-price-note { font-size: 0.8rem; color: var(--text-muted); }
.checklist-see-pricing { font-size: 0.85rem; font-weight: 600; color: var(--secondary); }
.checklist-see-pricing:hover { color: var(--accent); }

.checklist-floating-badge {
    position: absolute;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.checklist-floating-badge.visible { opacity: 1; transform: translateY(0); }
.badge-live { bottom: -16px; left: -16px; color: var(--accent-emerald); }
.badge-order { top: -16px; right: -16px; color: var(--secondary); }

@media (max-width: 900px) {
    .hero-checklist-card { padding: 20px 20px 18px; }
    .badge-live, .badge-order { display: none; }
}

/* ===================================================
   WHAT'S INCLUDED SECTION
   =================================================== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.included-category {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}
.included-category:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(58, 0, 229, 0.15);
}

@media (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
    .included-category:nth-child(1) {
        grid-column: span 1;
    }
}

.included-cat-icon {
    width: 52px; height: 52px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    border: 1px solid var(--border);
}
.included-cat-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.included-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.included-list li { font-size: 0.875rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 7px; }
.inc-check { color: var(--secondary); font-weight: 700; flex-shrink: 0; }

/* ===================================================
   ABOUT / FOUNDER SECTION
   =================================================== */
.section-about { background: var(--bg-alt); }
.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}
.founder-avatar-wrap { margin-bottom: 24px; }
.founder-avatar-initials {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: white;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}
.founder-photo {
    width: 180px; height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}
.founder-trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.founder-trust-stat {
    display: flex; flex-direction: column; align-items: center;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
}
.founder-trust-stat strong { font-size: 1.1rem; font-weight: 800; color: var(--secondary); }
.founder-trust-stat span { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.about-title { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: 12px 0 16px; line-height: 1.2; }
.about-founder-name { font-size: 0.95rem; font-weight: 600; color: var(--secondary); margin-bottom: 16px; }
.about-founder-title { font-weight: 400; color: var(--text-muted); }
.about-bio { color: var(--text-body); line-height: 1.75; margin-bottom: 12px; font-size: 0.95rem; }
.about-quote {
    border-left: 3px solid var(--secondary);
    padding-left: 16px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
}
.about-quote cite { display: block; margin-top: 8px; font-size: 0.82rem; font-style: normal; color: var(--text-muted); }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-photo-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .about-title { font-size: 1.5rem; }
    .founder-trust-row { justify-content: center; }
}

/* ===================================================
   PORTFOLIO SECTION
   =================================================== */
.section-portfolio {
    background: var(--bg-alt);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(58, 0, 229, 0.15);
}
.portfolio-visual-container {
    height: 220px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Custom background graphics matching the brands */
.p-4x4 { background: linear-gradient(135deg, #18181B, #27272A); }
.p-dmbath { background: linear-gradient(135deg, #2A2520, #1E1A16); }
.p-pporganic { background: linear-gradient(135deg, #0D2B22, #0A2018); }

/* Light theme - restore original brand colors */
html.light-theme .p-dmbath { background: linear-gradient(135deg, #FAF7F2, #EFEAE2); }
html.light-theme .p-pporganic { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }

/* Browser Mockup inside Visuals - always shows light browser chrome (realistic website preview) */
.browser-mockup {
    width: 100%;
    height: 100%;
    background: #F8F9FA;
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(12px);
    transition: transform 0.4s var(--ease);
}
.portfolio-card:hover .browser-mockup {
    transform: translateY(4px);
}
.browser-bar {
    height: 24px;
    background: #EEEEEF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 4px;
}
.browser-bar .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #BBBBBB;
}
.browser-url {
    margin-left: auto;
    margin-right: auto;
    font-size: 9px;
    color: #888888;
    font-weight: 500;
}
.browser-body {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #FFFFFF;
}
.mock-nav {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    width: 40%;
}
.mock-nav.text-center { margin: 0 auto; }
.mock-hero {
    height: 50px;
    background: rgba(58, 0, 229, 0.07);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 8px;
}
.mock-box {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: #1C1C1E;
}
.mock-grid-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.mock-grid-products span {
    height: 30px;
    background: #E5E7EB;
    border-radius: 4px;
}
.mock-hero-clean {
    display: flex;
    gap: 8px;
    flex: 1;
    align-items: center;
}
.mock-box-tall {
    width: 40px;
    height: 80px;
    background: #D4AF37;
    border-radius: 4px;
}
.mock-side-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.mock-side-lines span {
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
}
.mock-side-lines span:nth-child(1) { width: 80%; }
.mock-side-lines span:nth-child(2) { width: 60%; }
.mock-side-lines span:nth-child(3) { width: 40%; }
.mock-hero-organic {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 4px;
    padding: 8px;
}
.mock-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10B981;
}
.mock-organic-lines {
    height: 6px;
    background: var(--bg-alt);
    border-radius: 3px;
    width: 50%;
}

/* Portfolio Content */
.portfolio-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.portfolio-badge-tech {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.portfolio-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.portfolio-info p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.portfolio-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.portfolio-tags li {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
}
.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    background: var(--gradient-btn);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: filter 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    text-align: center;
    border: none;
    cursor: pointer;
}
.portfolio-link-btn:hover {
    filter: brightness(1.15);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.portfolio-link-btn svg {
    transition: transform 0.2s var(--ease);
}
.portfolio-link-btn:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   USD PRICE + URGENCY SIGNAL
   =================================================== */
.price-usd {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    margin-bottom: 8px;
    font-weight: 400;
}
.urgency-signal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-urgency);
    border: 1px solid var(--border-urgency);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin: 28px 0;
    font-size: 0.9rem;
    color: var(--text-urgency);
    text-align: center;
    flex-wrap: wrap;
}
.urgency-signal svg { flex-shrink: 0; stroke: var(--text-urgency); }

/* ===================================================
   CONTACT SECTION — Two-Column Layout
   =================================================== */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
    align-items: start;
}
.contact-channels-col { display: flex; flex-direction: column; gap: 24px; }
.contact-sla {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 0;
}
.cta-channels { display: flex; flex-direction: column; gap: 12px; }
.cta-channel-card { gap: 12px; }

/* Inquiry Form */
.contact-form-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}
.form-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.req { color: #D32F2F; }
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-alt);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px var(--secondary-glow);
    background: var(--bg-card);
}
.form-group input.field-invalid,
.form-group select.field-invalid {
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.08);
}
.field-error { font-size: 0.8rem; color: #D32F2F; min-height: 16px; }
.form-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-error);
    border: 1px solid var(--border-error);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--text-error);
    margin-bottom: 16px;
}
.form-error svg { flex-shrink: 0; }
.form-submit-btn { width: 100%; margin-top: 4px; justify-content: center; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-success);
    border: 1px solid var(--border-success);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-success);
    margin-top: 16px;
}

@media (max-width: 900px) {
    .contact-two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ===================================================
   DEMO COMING SOON BADGE
   =================================================== */
.demo-coming-soon-badge {
    display: inline-block;
    background: var(--bg-urgency);
    border: 1px solid var(--border-urgency);
    color: var(--text-urgency);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ===================================================
   TESTIMONIALS NOTE
   =================================================== */
.testimonials-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}
.testimonials-note a { color: var(--secondary); font-weight: 600; }

/* ===================================================
   REVEAL ANIMATION
   =================================================== */
.reveal-item.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-item.visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   CONTACT & FOOTER — LIGHT REDESIGN
   =================================================== */

/* --- Contact Section --- */
.section-final-cta {
    background: var(--bg-page);
    padding: 80px 0 64px;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.section-final-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, var(--secondary-bg-hover) 0%, transparent 70%);
    pointer-events: none;
}
.section-final-cta .section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}
.section-final-cta .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--secondary, #3A00E5);
    margin-bottom: 16px;
}
.section-final-cta .cta-dot {
    width: 7px;
    height: 7px;
    background: var(--secondary, #3A00E5);
    border-radius: 50%;
    opacity: 0.7;
}
.section-final-cta .cta-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.15;
}
.section-final-cta .cta-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-final-cta .contact-sla {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 32px;
    letter-spacing: 0.01em;
}

/* Contact channel cards row */
.contact-channels-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 32px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 16px;
    text-decoration: none;
    transition: transform 150ms, box-shadow 150ms, border-color 150ms;
}
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon.wa { background: rgba(37, 211, 102, 0.08); }
.contact-icon.wa svg { stroke: #25D366; }
.contact-icon.phone { background: var(--secondary-bg-light); } .contact-icon.phone svg { stroke: var(--secondary); }
.contact-icon.email { background: rgba(224, 156, 26, 0.08); }
.contact-icon.email svg { stroke: #e09c1a; }
.contact-icon.fb { background: var(--secondary-bg-light); } .contact-icon.fb svg { stroke: var(--secondary); }
.contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.contact-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}
.contact-detail {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
}

/* Contact form — full width */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px;
    max-width: 900px;
    margin: 0 auto;
}
.form-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-wrapper .form-group {
    margin-bottom: 16px;
}
.contact-form-wrapper .form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.opt-label {
    font-weight: 400;
    color: var(--text-muted);
}
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
    width: 100%;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 150ms, box-shadow 150ms;
    box-sizing: border-box;
}
.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
    color: var(--text-muted);
}
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus {
    border-color: var(--secondary, #3A00E5);
    box-shadow: 0 0 0 3px rgba(58, 0, 229, 0.08);
}
.contact-form-wrapper .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--bg-alt);
}
.contact-form-wrapper .form-group select option {
    background: var(--bg-card);
    color: var(--text-dark);
}
.contact-form-wrapper .field-error {
    display: block;
    font-size: 11px;
    color: #dc2626;
    margin-top: 4px;
    min-height: 14px;
}
.form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.contact-form-wrapper .form-submit-btn {
    flex: 1;
    min-width: 160px;
    background: var(--gradient-btn);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 13px 24px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 150ms, transform 150ms;
}
.contact-form-wrapper .form-submit-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.contact-form-wrapper .form-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid #25D366;
    color: #1aab53;
    border-radius: 10px;
    padding: 11px 18px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 150ms, color 150ms;
    white-space: nowrap;
}
.cta-whatsapp-btn:hover { background: #25D366; color: #ffffff; }
.cta-whatsapp-btn svg { stroke: currentColor; }
.contact-form-wrapper .form-success {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--bg-success);
    border: 1px solid var(--border-success);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-success);
    margin-top: 14px;
}

/* --- Footer --- */
.footer {
    background: var(--bg-alt);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--secondary) 0%, var(--accent-emerald) 100%) 1;
    padding: 52px 0 0;
}
.footer .container { max-width: 1140px; }
.footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-logo img { height: 50px; width: auto; }
.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}
.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 14px;
}
.footer-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-location svg { stroke: var(--text-muted); }
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    text-decoration: none;
    transition: background 150ms, border-color 150ms, color 150ms;
}
.footer-social a svg { stroke: currentColor; }
.footer-social a:hover {
    background: var(--secondary-bg-light);
    border-color: var(--secondary);
    color: var(--secondary);
}
.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-links-col li a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 150ms;
    line-height: 1.8;
}
.footer-links-col li a:hover { color: var(--secondary); }
.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(58, 0, 229, 0.05);
    border-radius: 6px;
    padding: 5px 10px;
    margin-top: 18px;
}
.footer-status .status-dot {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}
.footer-status, .footer-status span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--secondary);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-legal {
    display: flex;
    gap: 4px;
    background: var(--secondary-bg-light);
    border-radius: 8px;
    padding: 4px 6px;
}
.footer-legal a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 5px;
    transition: background 150ms, color 150ms;
}
.footer-legal a:hover {
    background: var(--bg-card);
    color: var(--secondary);
}
.footer-status.registered {
    background: transparent;
    padding: 0;
    margin-top: 0;
}
.footer-status.registered, .footer-status.registered span { color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
    .section-final-cta { padding: 60px 24px 48px; }
    .contact-channels-row { grid-template-columns: repeat(2, 1fr); }
    .section-final-cta .cta-title { font-size: 28px; }
    .contact-form-wrapper { padding: 24px 20px; }
    .form-cols { grid-template-columns: 1fr; gap: 0; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .section-final-cta .cta-title { font-size: 24px; }
    .section-final-cta .cta-desc { font-size: 14px; }
    .contact-channels-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .contact-card { padding: 14px 12px; }
    .form-actions { flex-direction: column; }
    .contact-form-wrapper .form-submit-btn { width: 100%; }
    .cta-whatsapp-btn { width: 100%; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-status { margin-left: auto; margin-right: auto; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ===================================================
   CLIENT LOGOS SECTION
   =================================================== */
.client-logos-section {
    padding: 36px 0 40px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 3;
}

.client-logos-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.client-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: var(--t-base);
    cursor: default;
}

.client-logo-item:hover {
    background: var(--secondary-bg-light);
    transform: translateY(-2px);
}

.client-logo-svg {
    color: var(--text-muted);
    opacity: 0.45;
    filter: grayscale(100%);
    transition: opacity 0.4s var(--ease), filter 0.4s var(--ease), color 0.4s var(--ease);
}

.client-logo-item:hover .client-logo-svg {
    opacity: 0.85;
    filter: grayscale(0%);
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .client-logos-grid {
        gap: 24px;
    }
    .client-logo-item {
        padding: 8px 12px;
    }
    .client-logo-svg {
        width: 100px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .client-logos-section {
        padding: 28px 0 32px;
    }
    .client-logos-grid {
        gap: 16px;
    }
    .client-logos-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    .client-logo-svg {
        width: 80px;
        height: auto;
    }
}
