/* ========================================
   SOLOSHER — Premium Digital Marketing Agency
   Complete Stylesheet v1.0
   ======================================== */

/* ── Dark theme (default) ── */
:root {
    --bg: #020202;
    --surface: #0a0a0a;
    --surface-elevated: #111111;
    --border: rgba(255,255,255,0.06);
    --orange: #FF4D00;
    --orange-soft: rgba(255,77,0,0.10);
    --orange-glow: rgba(255,77,0,0.15);
    --gold: #FFB800;
    --text: #FFFFFF;
    --text-muted: #888888;
    --text-dim: #444444;
    --success: #22c55e;
    --shadow: 0 20px 60px rgba(0,0,0,0.6);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.4);
    --pearl-shine: none;
    --noise-opacity: 0.025;
}

/* ── Pearl White theme ── */
[data-theme="light"] {
    --bg: #FAF8F4;
    --surface: #FFFFFF;
    --surface-elevated: #F3F0EB;
    --border: rgba(0,0,0,0.09);
    --orange: #E84400;
    --orange-soft: rgba(232,68,0,0.08);
    --orange-glow: rgba(232,68,0,0.12);
    --gold: #C98A00;
    --text: #0A0907;
    --text-muted: #5A5650;
    --text-dim: #9A9590;
    --success: #16a34a;
    --shadow: 0 20px 60px rgba(0,0,0,0.10);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.07);
    --pearl-shine: linear-gradient(135deg,rgba(255,255,255,0.9) 0%,rgba(248,244,240,0.6) 40%,rgba(255,250,245,0.9) 70%,rgba(252,248,244,0.7) 100%);
    --noise-opacity: 0.012;
}

/* Pearl iridescence layer — light mode only */
[data-theme="light"] body::before {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(255,220,180,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(180,210,255,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 40%, rgba(255,200,220,0.05) 0%, transparent 40%);
}
[data-theme="light"] .noise { opacity: var(--noise-opacity); filter: invert(1); }
[data-theme="light"] nav.scrolled { background: rgba(250,248,244,0.92); }
[data-theme="light"] .loader { background: var(--bg); }
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #ccc; }
[data-theme="light"] .mobile-menu { background: rgba(250,248,244,0.98); border-right: 1px solid var(--border); }
[data-theme="light"] .urgency-bar { background: var(--orange); }
[data-theme="light"] .hero-bg-circle:nth-child(1) { background: radial-gradient(circle,rgba(232,68,0,0.06) 0%,transparent 70%); }
[data-theme="light"] .card-hover-glow { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

/* ── Theme toggle button ── */
.theme-toggle {
    width: 44px; height: 24px; background: var(--surface-elevated);
    border: 1px solid var(--border); border-radius: 12px;
    cursor: pointer; position: relative; transition: background 0.4s;
    flex-shrink: 0;
}
.theme-toggle::before {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--orange); transition: transform 0.4s, background 0.4s;
}
[data-theme="light"] .theme-toggle { background: #e8e2d8; }
[data-theme="light"] .theme-toggle::before { transform: translateX(20px); background: var(--orange); }
.theme-toggle-wrap {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.7rem; color: var(--text-muted); cursor: pointer;
}
.theme-toggle-wrap i { font-size: 0.8rem; color: var(--text-muted); transition: color 0.3s; }

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

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

/* Loader */
.loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); z-index: 99999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.loader-logo svg { width: 48px; height: 48px; }
.loader-logo span { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; letter-spacing: -1px; }
.loader-logo span em { color: var(--orange); font-style: italic; }
.loader-bar { width: 120px; height: 1px; background: var(--border); position: relative; overflow: hidden; }
.loader-bar::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--orange); animation: loadSlide 1.5s ease-in-out forwards; }
@keyframes loadSlide { 0% { left: -100%; } 100% { left: 100%; } }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled { background: rgba(2, 2, 2, 0.9); backdrop-filter: blur(20px) saturate(1.2); border-bottom: 1px solid var(--border); padding: 1rem 5%; }

.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--text); }
.logo-mark { width: 36px; height: 36px; position: relative; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; line-height: 1; }
.logo-text span { color: var(--orange); font-style: italic; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.75rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--orange); transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: var(--orange); color: #fff !important; padding: 0.7rem 1.8rem;
    border: 1px solid var(--orange); text-decoration: none; font-size: 0.7rem;
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative; white-space: nowrap;
}
.nav-cta:hover { background: #cc3900; border-color: #cc3900; box-shadow: 0 6px 20px rgba(255,77,0,0.35); color: #fff !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; padding: 10px; }
.hamburger span { width: 24px; height: 1px; background: var(--text); transition: all 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--bg); z-index: 999; display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--text); text-decoration: none; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .nav-cta { margin-top: 1rem; font-family: 'Inter', sans-serif; font-size: 0.8rem; }

/* Buttons */
.btn-primary {
    background: var(--orange); color: white; padding: 1.1rem 2.5rem;
    text-decoration: none; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; border: none; cursor: pointer; transition: all 0.4s;
    display: inline-flex; align-items: center; gap: 0.5rem; position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(255, 77, 0, 0.3); }

.btn-secondary {
    background: transparent; color: var(--text); padding: 1.1rem 2.5rem;
    text-decoration: none; font-size: 0.8rem; font-weight: 500;
    border: 1px solid var(--border); transition: all 0.4s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-text { color: var(--text); text-decoration: none; font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.8rem; transition: gap 0.3s; }
.btn-text:hover { gap: 1.2rem; color: var(--orange); }

/* Section Headers */
.section-header { max-width: 700px; margin-bottom: 4rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
    font-size: 0.65rem; color: var(--orange); text-transform: uppercase;
    letter-spacing: 4px; font-weight: 600; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
}
.section-tag::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--orange), transparent); max-width: 60px; }
.section-header.center .section-tag { justify-content: center; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; line-height: 1.2; margin-bottom: 1.2rem; }
.section-header h2 em { color: var(--orange); font-style: italic; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; font-weight: 300; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Page Header (for inner pages) */
.page-header {
    min-height: 50vh; display: flex; align-items: center;
    padding: 10rem 5% 4rem; position: relative; overflow: hidden;
    background: linear-gradient(180deg, rgba(255,77,0,0.05) 0%, transparent 60%);
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; line-height: 1.1; }
.page-header h1 em { color: var(--orange); font-style: italic; }
.page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin-top: 1.5rem; line-height: 1.8; }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 2rem; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* Footer */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 5% 2rem; }
.footer-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4rem; flex-wrap: wrap; gap: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; margin-top: 1rem; line-height: 1.7; }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text); margin-bottom: 1.5rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--text-dim); font-size: 0.75rem; flex-wrap: wrap; gap: 1rem; }

/* Sticky Bar */
.sticky-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(2, 2, 2, 0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border); padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 998; transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p { font-size: 0.85rem; color: var(--text-muted); }
.sticky-bar p strong { color: var(--text); font-weight: 600; }
.sticky-bar .btn-primary { padding: 0.7rem 1.5rem; font-size: 0.7rem; }

/* Legal Pages */
.legal-content { max-width: 900px; margin: 0 auto; padding: 4rem 5%; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 3rem 0 1rem; }
.legal-content h3 { font-size: 1.2rem; margin: 2rem 0 0.8rem; color: var(--orange); }
.legal-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { color: var(--text-muted); margin-left: 1.5rem; line-height: 2; }
.legal-content a { color: var(--orange); }

/* ========================================
   FORM STYLES
   ======================================== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text); padding: 0.9rem 1.2rem; font-size: 0.95rem;
    font-family: 'Inter', sans-serif; transition: border-color 0.3s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--surface); }
.form-group textarea { height: 140px; resize: vertical; }
.form-submit {
    width: 100%; background: var(--orange); color: white; border: none;
    padding: 1.1rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; cursor: pointer; transition: all 0.4s;
    display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.form-submit:hover { background: #e04400; transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255,77,0,0.25); }
.form-note { font-size: 0.75rem; color: var(--text-dim); margin-top: 1rem; text-align: center; }
.form-note i { margin-right: 0.4rem; color: var(--orange); }

@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 8rem 5% 4rem; position: relative; overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
}
.hero-bg-circle {
    position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero-bg-circle:nth-child(1) {
    width: 600px; height: 600px; top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(255,77,0,0.08) 0%, transparent 70%);
}
.hero-bg-circle:nth-child(2) {
    width: 400px; height: 400px; bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(255,184,0,0.05) 0%, transparent 70%);
}
.hero-content { max-width: 1400px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2rem; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--orange); }
.hero-eyebrow span { font-size: 0.7rem; color: var(--orange); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 600; line-height: 1.05; margin-bottom: 2rem; max-width: 900px;
}
.hero h1 em { color: var(--orange); font-style: italic; }
.hero-sub { color: var(--text-muted); font-size: 1.2rem; line-height: 1.8; max-width: 550px; margin-bottom: 3rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat h4 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--orange); line-height: 1; }
.hero-stat span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* ========================================
   SERVICES CARDS (homepage preview)
   ======================================== */
.services-grid-home {
    max-width: 1400px; margin: 0 auto; padding: 0 5%;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card-home {
    background: var(--surface); border: 1px solid var(--border);
    padding: 2.5rem; transition: all 0.4s; position: relative; overflow: hidden;
    text-decoration: none; color: var(--text); display: block;
}
.service-card-home::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card-home:hover { border-color: rgba(255,77,0,0.3); transform: translateY(-5px); }
.service-card-home:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.5rem; color: var(--orange); margin-bottom: 1.5rem; }
.service-card-home h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.8rem; }
.service-card-home p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.service-arrow { margin-top: 1.5rem; color: var(--orange); font-size: 0.8rem; display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
.service-card-home:hover .service-arrow { gap: 1rem; }

/* ========================================
   RESULTS / STATS
   ======================================== */
.results-section { background: var(--surface); padding: 6rem 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.results-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.result-card { text-align: center; padding: 2rem; }
.result-card h3 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--orange); line-height: 1; margin-bottom: 0.5rem; }
.result-card p { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section { padding: 6rem 5%; }
.testimonials-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimonial-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 2.5rem; position: relative;
}
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--orange); opacity: 0.2; position: absolute; top: 1rem; left: 1.5rem; line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1.5rem; }
.testimonial-card blockquote { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-author h5 { font-size: 0.9rem; font-weight: 600; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section { background: var(--surface); padding: 6rem 5%; border-top: 1px solid var(--border); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; background: none; border: none; color: var(--text);
    padding: 1.8rem 0; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 1rem; font-weight: 500; text-align: left; gap: 1rem;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--orange); }
.faq-question i { color: var(--orange); transition: transform 0.4s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { color: var(--text-muted); padding-bottom: 1.5rem; line-height: 1.8; }

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-detailed { padding: 4rem 5%; }
.service-detail-block {
    max-width: 1400px; margin: 0 auto 5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.service-detail-block:nth-child(even) { direction: rtl; }
.service-detail-block:nth-child(even) > * { direction: ltr; }
.service-detail-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1.2rem; }
.service-detail-content h2 em { color: var(--orange); font-style: italic; }
.service-detail-content > p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.service-features li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--text-muted); font-size: 0.95rem; }
.service-features li i { color: var(--orange); margin-top: 0.15rem; flex-shrink: 0; }
.service-detail-visual {
    background: var(--surface); border: 1px solid var(--border);
    padding: 3rem; min-height: 350px; display: flex; flex-direction: column;
    justify-content: center; position: relative; overflow: hidden;
}
.service-detail-visual::before {
    content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, var(--orange-soft) 0%, transparent 50%);
    pointer-events: none;
}
.service-visual-icon { font-size: 4rem; color: var(--orange); opacity: 0.6; margin-bottom: 1.5rem; }
.service-visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.service-visual-stat h4 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--orange); }
.service-visual-stat p { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

/* Pricing */
.pricing-section { background: var(--surface); padding: 6rem 5%; border-top: 1px solid var(--border); }
.pricing-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.pricing-card {
    background: var(--bg); border: 1px solid var(--border);
    padding: 3rem; position: relative; transition: all 0.4s;
}
.pricing-card.featured { border-color: var(--orange); }
.pricing-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: white; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; padding: 0.3rem 1rem;
    white-space: nowrap;
}
.pricing-tier { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 1rem; font-weight: 600; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 0.3rem; }
.pricing-price span { font-size: 1rem; font-family: 'Inter', sans-serif; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--text-muted); }
.pricing-features li i { color: var(--success); flex-shrink: 0; }
.pricing-card .btn-primary { width: 100%; justify-content: center; }
.pricing-card:not(.featured) .btn-primary { background: transparent; border: 1px solid var(--border); color: var(--text); }
.pricing-card:not(.featured) .btn-primary:hover { background: var(--orange); border-color: var(--orange); }

@media (max-width: 1024px) {
    .services-grid-home { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .service-detail-block { grid-template-columns: 1fr; }
    .service-detail-block:nth-child(even) { direction: ltr; }
    .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .services-grid-home { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { gap: 2rem; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .footer-content { flex-direction: column; }
    .sticky-bar { display: none; }
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .footer-links { flex-direction: column; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ========================================
   URGENCY / ANNOUNCEMENT BAR
   ======================================== */
.urgency-bar {
    background: var(--orange); color: white;
    text-align: center; padding: 0.6rem 1rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
    position: relative; z-index: 999;
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    flex-wrap: wrap;
}
.urgency-bar span { display: flex; align-items: center; gap: 0.5rem; }
.urgency-bar .pulse { width: 8px; height: 8px; background: white; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.urgency-bar a { color: white; text-decoration: underline; font-weight: 700; }

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-strip {
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 1.8rem 5%; background: var(--surface);
}
.trust-strip-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.trust-strip-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); white-space: nowrap; }
.trust-badges { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
}
.trust-badge i { color: var(--orange); font-size: 1rem; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

/* ========================================
   FREE AUDIT SECTION
   ======================================== */
.audit-section {
    background: var(--bg); padding: 6rem 5%;
    border-top: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.audit-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,77,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.audit-inner {
    max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.audit-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.audit-inner h2 em { color: var(--orange); font-style: italic; }
.audit-inner > p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.8; }
.audit-form {
    display: flex; gap: 1rem; max-width: 560px; margin: 0 auto 1.5rem;
    flex-wrap: wrap;
}
.audit-form input {
    flex: 1; min-width: 200px; background: var(--surface); border: 1px solid var(--border);
    color: var(--text); padding: 1rem 1.2rem; font-family: 'Inter', sans-serif;
    font-size: 0.95rem; outline: none; transition: border-color 0.3s;
}
.audit-form input:focus { border-color: var(--orange); }
.audit-form input::placeholder { color: var(--text-dim); }
.audit-form button { white-space: nowrap; }
.audit-checklist {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
    font-size: 0.8rem; color: var(--text-muted);
}
.audit-checklist span { display: flex; align-items: center; gap: 0.4rem; }
.audit-checklist i { color: var(--success); }

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.guarantee-section {
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 4rem 5%;
}
.guarantee-inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; align-items: center; gap: 4rem; flex-wrap: wrap;
}
.guarantee-badge {
    width: 140px; height: 140px; border-radius: 50%;
    border: 2px solid var(--orange); display: flex; flex-direction: column;
    align-items: center; justify-content: center; flex-shrink: 0;
    background: var(--orange-soft); text-align: center; padding: 1rem;
}
.guarantee-badge span:first-child { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--orange); font-weight: 700; line-height: 1; }
.guarantee-badge span:last-child { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin-top: 0.3rem; }
.guarantee-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; }
.guarantee-content h3 em { color: var(--orange); font-style: italic; }
.guarantee-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 600px; }

/* ========================================
   SOCIAL PROOF TOAST (live notifications)
   ======================================== */
.proof-toast {
    position: fixed; bottom: 100px; left: 2rem; z-index: 9000;
    background: var(--surface-elevated); border: 1px solid var(--border);
    padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem;
    max-width: 300px; transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.proof-toast.show { transform: translateX(0); }
.proof-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: white;
}
.proof-text { font-size: 0.8rem; line-height: 1.4; }
.proof-text strong { color: var(--text); display: block; }
.proof-text span { color: var(--text-muted); font-size: 0.72rem; }

/* ========================================
   EXIT INTENT MODAL
   ======================================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99997;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: all 0.4s;
    display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box {
    background: var(--surface); border: 1px solid var(--border);
    max-width: 560px; width: 100%; padding: 3rem; position: relative;
    transform: translateY(30px); transition: transform 0.4s;
}
.modal-overlay.show .modal-box { transform: translateY(0); }
.modal-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
}
.modal-close {
    position: absolute; top: 1rem; right: 1rem; background: none; border: none;
    color: var(--text-muted); font-size: 1.2rem; cursor: pointer; padding: 0.3rem;
    transition: color 0.3s;
}
.modal-close:hover { color: var(--orange); }
.modal-box h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 0.8rem; }
.modal-box h3 em { color: var(--orange); font-style: italic; }
.modal-box > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.modal-offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.modal-offer-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--text-muted); }
.modal-offer-list li i { color: var(--success); flex-shrink: 0; }
.modal-box .audit-form { max-width: 100%; margin-bottom: 1rem; }
.audit-form.audit-form-stack { flex-direction: column; align-items: stretch; gap: 0.7rem; }
.audit-form.audit-form-stack input { width: 100%; min-width: 0; }
.audit-form.audit-form-stack button { width: 100%; }
.modal-note { font-size: 0.72rem; color: var(--text-dim); text-align: center; }

/* ========================================
   BLOG ARTICLE PAGE
   ======================================== */
.article-layout {
    max-width: 1400px; margin: 0 auto; padding: 4rem 5%;
    display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start;
}
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 0.8rem; color: var(--orange); }
.article-body p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { color: var(--text-muted); margin-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body li { line-height: 2; font-size: 1rem; }
.article-body strong { color: var(--text); }
.article-callout {
    background: var(--surface); border-left: 3px solid var(--orange);
    padding: 1.5rem 2rem; margin: 2rem 0;
}
.article-callout p { margin: 0; font-style: italic; color: var(--text); }
.article-meta { display: flex; gap: 1.5rem; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.article-meta span { display: flex; align-items: center; gap: 0.4rem; }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-card::before { content: ''; display: block; width: 100%; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); margin-bottom: 1.5rem; }
.sidebar-card h4 { font-size: 1rem; margin-bottom: 0.8rem; }
.sidebar-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.2rem; }
.related-posts { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.related-posts li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; line-height: 1.5; transition: color 0.3s; display: block; }
.related-posts li a:hover { color: var(--orange); }
.related-posts li span { font-size: 0.7rem; color: var(--text-dim); }
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } }

/* ========================================
   ROI CALCULATOR
   ======================================== */
.roi-section {
    padding: 6rem 5%; background: var(--surface);
    border-top: 1px solid var(--border); position: relative; overflow: hidden;
}
.roi-section::before {
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(ellipse at 80% 50%, var(--orange-soft) 0%, transparent 60%);
    pointer-events: none;
}
.roi-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    position: relative; z-index: 1;
}
.roi-form-side h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.roi-form-side h2 em { color: var(--orange); font-style: italic; }
.roi-form-side > p { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }
.roi-inputs { display: flex; flex-direction: column; gap: 1.5rem; }
.roi-input-group label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); display: block; margin-bottom: 0.5rem; font-weight: 500; }
.roi-input-group input, .roi-input-group select {
    width: 100%; background: var(--bg); border: 1px solid var(--border);
    color: var(--text); padding: 0.9rem 1.2rem; font-size: 1rem;
    font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.3s;
}
.roi-input-group input:focus, .roi-input-group select:focus { border-color: var(--orange); }
.roi-input-group select option { background: var(--surface); }
.roi-result-side {
    background: var(--bg); border: 1px solid var(--border); padding: 3rem;
    position: relative; overflow: hidden;
}
.roi-result-side::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
}
.roi-result-side h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 2rem; color: var(--text-muted); }
.roi-metric { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.roi-metric:last-of-type { border-bottom: none; margin-bottom: 0; }
.roi-metric label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); display: block; margin-bottom: 0.4rem; }
.roi-metric .roi-value {
    font-family: 'Playfair Display', serif; font-size: 2.8rem;
    color: var(--orange); line-height: 1; transition: all 0.6s ease;
}
.roi-metric .roi-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.roi-cta-strip {
    margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border);
    text-align: center;
}
.roi-cta-strip p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
@media (max-width: 1024px) { .roi-inner { grid-template-columns: 1fr; } }

/* ========================================
   LIVE COUNTER BAR
   ======================================== */
.live-bar {
    background: var(--surface-elevated); border-bottom: 1px solid var(--border);
    padding: 0.7rem 5%; display: flex; align-items: center; justify-content: center;
    gap: 2.5rem; flex-wrap: wrap;
}
.live-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--text-muted); }
.live-item strong { color: var(--text); font-size: 0.9rem; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(34,197,94,0.4)} 50%{opacity:0.8;box-shadow:0 0 0 6px rgba(34,197,94,0)} }
.live-divider { width: 1px; height: 16px; background: var(--border); }

/* ========================================
   COUNTDOWN / SCARCITY
   ======================================== */
.countdown-bar {
    background: linear-gradient(90deg, #1a0800, #0a0200);
    border: 1px solid rgba(255,77,0,0.2);
    padding: 1.5rem 5%; text-align: center;
}
[data-theme="light"] .countdown-bar { background: linear-gradient(90deg, #fff4ef, #fff8f5); }
.countdown-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.countdown-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.countdown-timer { display: flex; gap: 1rem; align-items: center; }
.countdown-unit { text-align: center; }
.countdown-unit .countdown-num {
    font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--orange);
    line-height: 1; display: block; min-width: 50px;
}
.countdown-unit .countdown-lbl { font-size: 0.6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.countdown-colon { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--orange); opacity: 0.5; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:0.5} 50%{opacity:0.15} }
.countdown-cta { display: flex; align-items: center; gap: 1rem; }

/* ========================================
   INDUSTRIES / LOCAL NICHES
   ======================================== */
.industries-section { padding: 6rem 5%; }
.industries-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.industry-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 1.8rem 1.5rem; text-align: center; text-decoration: none;
    color: var(--text); transition: all 0.35s; position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.industry-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.industry-card:hover { border-color: rgba(255,77,0,0.25); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon { font-size: 1.8rem; }
.industry-card h4 { font-size: 0.85rem; font-weight: 600; line-height: 1.3; }
.industry-card span { font-size: 0.7rem; color: var(--orange); font-weight: 600; }
@media (max-width: 1100px) { .industries-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 768px) { .industries-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px) { .industries-grid { grid-template-columns: repeat(2,1fr); } }

/* ========================================
   APP DEVELOPMENT
   ======================================== */
.apps-section { padding: 6rem 5%; background: var(--surface); border-top: 1px solid var(--border); }
.apps-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.apps-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); margin-bottom: 1.2rem; }
.apps-content h2 em { color: var(--orange); font-style: italic; }
.apps-content > p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.apps-types { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem; }
.app-type {
    background: var(--bg); border: 1px solid var(--border); padding: 1.5rem;
    transition: border-color 0.3s;
}
.app-type:hover { border-color: rgba(255,77,0,0.3); }
.app-type i { color: var(--orange); font-size: 1.2rem; margin-bottom: 0.7rem; display: block; }
.app-type h5 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.app-type p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.apps-visual {
    background: var(--bg); border: 1px solid var(--border); padding: 3rem;
    position: relative; overflow: hidden; min-height: 400px;
    display: flex; flex-direction: column; justify-content: center;
}
.apps-visual::before {
    content: ''; position: absolute; top: -30%; right: -30%; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, var(--orange-soft), transparent 70%);
}
.app-mockup-row { display: flex; gap: 1rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.app-mockup-card {
    background: var(--surface); border: 1px solid var(--border); padding: 1rem;
    flex: 1; font-size: 0.75rem; color: var(--text-muted);
}
.app-mockup-card strong { color: var(--orange); display: block; margin-bottom: 0.3rem; font-size: 0.8rem; }
.app-tech-stack { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; position: relative; z-index: 1; }
.tech-tag {
    padding: 0.3rem 0.8rem; border: 1px solid var(--border); font-size: 0.7rem;
    color: var(--text-muted); letter-spacing: 0.5px; transition: all 0.3s;
}
.tech-tag:hover { border-color: var(--orange); color: var(--orange); }
@media (max-width: 1024px) { .apps-inner { grid-template-columns: 1fr; } .apps-types { grid-template-columns: 1fr 1fr; } }

/* ========================================
   BEFORE / AFTER RESULTS
   ======================================== */
.before-after-section { padding: 6rem 5%; }
.before-after-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.ba-card { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; }
.ba-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); font-weight: 600; margin-bottom: 1.5rem; }
.ba-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.ba-metric { font-size: 0.8rem; color: var(--text-muted); }
.ba-before { font-size: 0.9rem; color: var(--text-dim); text-decoration: line-through; }
.ba-arrow { color: var(--orange); font-size: 0.8rem; }
.ba-after { font-size: 1.1rem; color: var(--text); font-weight: 700; }
.ba-delta { font-size: 0.75rem; color: var(--success); margin-top: 0.2rem; }
.ba-bar-wrap { height: 4px; background: var(--border); margin: 1.2rem 0; border-radius: 2px; overflow: hidden; }
.ba-bar { height: 100%; background: linear-gradient(90deg, var(--orange), var(--gold)); border-radius: 2px; transition: width 1s ease; }
@media (max-width: 1024px) { .before-after-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .before-after-grid { grid-template-columns: 1fr; } }

/* ========================================
   VIDEO PROOF SECTION
   ======================================== */
.video-section { padding: 6rem 5%; background: var(--surface); border-top: 1px solid var(--border); }
.video-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.video-card { position: relative; border: 1px solid var(--border); overflow: hidden; cursor: pointer; }
.video-thumb {
    aspect-ratio: 16/9; background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.video-thumb::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,77,0,0.08), rgba(255,184,0,0.05));
}
.video-play {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--orange); display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem; position: relative; z-index: 1;
    transition: transform 0.3s; padding-left: 4px;
}
.video-card:hover .video-play { transform: scale(1.1); }
.video-meta { padding: 1.2rem 1.5rem; }
.video-meta h5 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.video-meta span { font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 1024px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } }

/* ========================================
   CONFETTI + MICRO-ANIMATIONS
   ======================================== */
@keyframes confettiFall {
    0%   { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.confetti-piece {
    position: fixed; width: 10px; height: 10px; top: -10px;
    pointer-events: none; z-index: 99999; border-radius: 2px;
    animation: confettiFall 3s ease-in forwards;
}
@keyframes shimmerMove {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.shimmer-text {
    background: linear-gradient(90deg, var(--text) 30%, var(--orange) 50%, var(--text) 70%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shimmerMove 3s linear infinite;
}

/* Number counter animation */
.count-up { transition: all 0.05s; }

/* Floating badge */
.float-badge {
    position: fixed; bottom: 24px; right: 24px; z-index: 8999;
    background: var(--orange); color: white; padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
    box-shadow: 0 10px 40px rgba(255,77,0,0.4); cursor: pointer;
    transform: translateY(120px); transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
    font-size: 0.85rem; font-weight: 600; text-decoration: none;
}
.float-badge.visible { transform: translateY(0); }
.float-badge i { font-size: 1rem; }
.float-badge:hover { box-shadow: 0 15px 50px rgba(255,77,0,0.55); }

/* 4-col pricing responsive */
@media (max-width: 1300px) { .pricing-grid[style*="repeat(4"] { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 640px)  { .pricing-grid[style*="repeat(4"] { grid-template-columns: 1fr !important; } }

/* ========================================
   WHATSAPP FLOATING PILL (matches .float-badge style)
   On every page. Bottom-left so it doesn't conflict
   with the "Claim Free Audit" pill on bottom-right.
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9998;
    background: var(--orange);
    color: white;
    padding: 0.95rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(255, 77, 0, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-float i {
    font-size: 1.15rem;
    line-height: 1;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 77, 0, 0.55);
    color: white;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 77, 0, 0.4), 0 0 0 0 rgba(255, 77, 0, 0.45); }
    50%      { box-shadow: 0 10px 40px rgba(255, 77, 0, 0.4), 0 0 0 14px rgba(255, 77, 0, 0); }
}
/* Promote the legacy "tooltip" span into the inline label */
.whatsapp-float-tooltip {
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    color: white;
    opacity: 1;
    pointer-events: auto;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: none;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        padding: 0.8rem 1.1rem;
        font-size: 0.78rem;
    }
    .whatsapp-float i { font-size: 1rem; }
}
/* On very small screens, collapse to icon-only to save space */
@media (max-width: 380px) {
    .whatsapp-float-tooltip { display: none; }
    .whatsapp-float {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        animation: none;
    }
}

