/* ================================================================
   SmartNeta™ — Unified Stylesheet
   Covers all pages: index, features, about, packages, contact
   ================================================================ */

/* === RESET === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;color:#1a1a2e;background:#fff;line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* === CSS VARIABLES === */
:root{
  --primary:#E85D26;
  --primary-dark:#c94d1e;
  --primary-light:#fff3ee;
  --secondary:#1a1a2e;
  --accent:#16213e;
  --text:#2d2d44;
  --text-light:#6b7084;
  --bg-light:#f8f9fc;
  --bg-warm:#fef9f5;
  --white:#ffffff;
  --border:#e8eaf0;
  --gradient:linear-gradient(135deg,#E85D26 0%,#FF8C42 100%);
  --gradient-dark:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);
  --shadow-sm:0 2px 8px rgba(0,0,0,.06);
  --shadow-md:0 8px 30px rgba(0,0,0,.08);
  --shadow-lg:0 20px 60px rgba(0,0,0,.1);
  --radius:12px;
  --radius-lg:20px;
  --max-width:1200px;
}

/* === UTILITIES === */
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.section{padding:100px 0}
.text-center{text-align:center}
.mx-auto{margin-left:auto;margin-right:auto}
.bg-light{background:var(--bg-light)}
.bg-warm{background:var(--bg-warm)}
.bg-dark{background:var(--gradient-dark);color:var(--white)}
.section-label{display:inline-block;font-size:.75rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--primary);margin-bottom:12px}
.section-title{font-family:'Playfair Display',serif;font-size:2.75rem;font-weight:800;line-height:1.15;color:var(--secondary);margin-bottom:20px}
.section-subtitle{font-size:1.1rem;color:var(--text-light);max-width:640px;line-height:1.7;margin-bottom:16px}
.section-header{text-align:center;margin-bottom:48px}
.section-header h2{font-family:'Playfair Display',serif;font-size:2.5rem;font-weight:800;color:var(--secondary);margin-bottom:16px}
.section-header p{font-size:1.05rem;color:var(--text-light);max-width:640px;margin:0 auto;line-height:1.7}

/* Grid */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.gap-lg{gap:40px}

/* === BUTTONS === */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 32px;border-radius:50px;font-size:.95rem;font-weight:600;cursor:pointer;border:none;transition:all .3s ease;font-family:inherit;text-align:center}
.btn-primary{background:var(--gradient);color:#fff;box-shadow:0 4px 20px rgba(232,93,38,.3)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(232,93,38,.4)}
.btn-secondary{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.4)}
.btn-secondary:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-dark{background:var(--secondary);color:#fff}
.btn-dark:hover{background:var(--accent);transform:translateY(-2px)}
.btn-outline-dark{background:transparent;color:var(--secondary);border:2px solid var(--border)}
.btn-outline-dark:hover{border-color:var(--primary);color:var(--primary)}
.btn-lg{padding:16px 36px;font-size:1rem}
.btn-full{width:100%}
.btn.btn-nav{padding:10px 20px;font-size:.85rem}
.btn-success{background:linear-gradient(135deg,#22c55e,#4ade80);box-shadow:0 4px 20px rgba(34,197,94,.35)}

/* ================================================================
   NAVIGATION — supports all page variants
   ================================================================ */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;padding:14px 0;transition:all .3s ease}
.navbar.scrolled{background:rgba(255,255,255,.97);backdrop-filter:blur(12px);box-shadow:0 2px 20px rgba(0,0,0,.06);padding:10px 0}
.navbar .container,
.navbar .nav-container,
.navbar .navbar-container{display:flex;align-items:center;justify-content:space-between;max-width:var(--max-width);margin:0 auto;padding:0 24px}

/* Brand — multiple patterns */
.nav-brand{display:flex;align-items:center;gap:12px;font-size:1.45rem;font-weight:800;color:#fff;transition:color .3s;text-decoration:none}
.nav-brand svg.nav-logo,.nav-brand img.nav-logo{flex-shrink:0;object-fit:contain;width:44px;height:44px}
.nav-text{font-size:1.45rem;font-weight:800}
.navbar.scrolled .nav-brand,
.navbar.scrolled .nav-text{color:var(--secondary)}
.logo{display:flex;align-items:center}
.logo-text{font-size:1.3rem;font-weight:800;color:#fff;transition:color .3s}
.navbar.scrolled .logo-text{color:var(--secondary)}
.navbar-brand{font-size:1.3rem;font-weight:800}
.navbar-brand a{color:#fff;transition:color .3s}
.navbar.scrolled .navbar-brand a{color:var(--secondary)}
.navbar-content{display:flex;align-items:center;justify-content:space-between;width:100%}

/* Nav links */
.nav-links{display:flex;align-items:center;gap:28px;list-style:none}
.nav-links a,
.nav-links li a{font-size:.9rem;font-weight:500;color:rgba(255,255,255,.85);transition:color .3s}
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-links li a{color:var(--text)}
.nav-links a:hover,
.nav-links a.active{color:var(--primary)}

/* CTA button in nav */
.navbar .nav-links a.cta-button,
a.cta-button{padding:10px 24px;background:var(--gradient);color:#fff;border-radius:50px;font-weight:600;font-size:.85rem;transition:all .3s ease}
.cta-button:hover{transform:translateY(-1px);box-shadow:0 4px 15px rgba(232,93,38,.3)}

/* Mobile hamburger */
.menu-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px}
.menu-toggle span{width:24px;height:2.5px;background:#fff;border-radius:2px;transition:all .3s}
.navbar.scrolled .menu-toggle span{background:var(--secondary)}

/* ================================================================
   HERO — Home page
   ================================================================ */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;background:var(--gradient-dark);overflow:hidden;padding-top:80px}
.hero::before{content:'';position:absolute;top:-30%;right:-15%;width:70%;height:160%;background:radial-gradient(circle,rgba(232,93,38,.08) 0%,transparent 60%);pointer-events:none}

.hero-container{display:flex;flex-direction:column;align-items:center;text-align:center}
.hero-content{position:relative;z-index:2;max-width:800px}
.hero-title,
.hero h1{font-family:'Playfair Display',serif;font-size:3.4rem;font-weight:800;color:#fff;line-height:1.12;margin-bottom:24px}
.gradient-text{background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-subtext,
.hero p.hero-desc{font-size:1.1rem;color:rgba(255,255,255,.6);line-height:1.75;margin-bottom:32px;max-width:640px;margin-left:auto;margin-right:auto}
/* Hero social proof block */
.hero-trust-block{background:rgba(255,255,255,.06);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:28px 36px;margin-bottom:36px;max-width:680px;margin-left:auto;margin-right:auto;display:flex;align-items:center;gap:28px}
.trust-highlight{display:flex;flex-direction:column;align-items:center;min-width:100px;flex-shrink:0}
.trust-number{font-family:'Playfair Display',serif;font-size:2.8rem;font-weight:800;color:#ff9a62;line-height:1}
.trust-label{font-size:.75rem;font-weight:600;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:1px;margin-top:4px;white-space:nowrap}
.trust-detail{font-size:.95rem;color:rgba(255,255,255,.55);line-height:1.7;text-align:left;border-left:2px solid rgba(232,93,38,.3);padding-left:20px}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
.badge{display:inline-flex;align-items:center;gap:8px;background:rgba(232,93,38,.12);border:1px solid rgba(232,93,38,.2);color:#ff9a62;padding:8px 18px;border-radius:50px;font-size:.8rem;font-weight:600;margin-bottom:28px}
.badge-icon{flex-shrink:0;color:#ff9a62}
.hero-stats{display:flex;gap:40px;margin-top:48px;padding-top:28px;border-top:1px solid rgba(255,255,255,.1);justify-content:center}
.stat-item{text-align:left}
.stat-number{font-size:2rem;font-weight:800;color:#fff}
.stat-label{font-size:.8rem;color:rgba(255,255,255,.5);margin-top:2px}

/* Dashboard mock (hero right) */
.hero-visual{position:relative;z-index:2}
.dashboard-card{background:rgba(255,255,255,.06);backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);padding:28px;position:relative}
.dashboard-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.dashboard-header h3{color:rgba(255,255,255,.7);font-size:.95rem;font-weight:600}
.status-badge{background:rgba(34,197,94,.2);color:#4ade80;font-size:.7rem;font-weight:700;padding:4px 12px;border-radius:50px;letter-spacing:.5px}
.metrics-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.metric-box{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);padding:18px;display:flex;align-items:flex-start;gap:12px}
.metric-icon{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.metric-blue .metric-icon{background:rgba(59,130,246,.15);color:#3b82f6}
.metric-green .metric-icon{background:rgba(34,197,94,.15);color:#22c55e}
.metric-orange .metric-icon{background:rgba(232,93,38,.15);color:#E85D26}
.metric-purple .metric-icon{background:rgba(168,85,247,.15);color:#a855f7}
.metric-content{flex:1;min-width:0}
.metric-label{font-size:.72rem;color:rgba(255,255,255,.45);margin-bottom:4px}
.metric-value{font-size:1.4rem;font-weight:700;color:#fff}
.metric-box .progress-bar{height:4px;background:rgba(255,255,255,.15);border-radius:2px;margin-top:8px;position:relative;overflow:visible}
.metric-blue .progress-bar{background:rgba(59,130,246,.5)}
.metric-green .progress-bar{background:rgba(34,197,94,.5)}
.metric-orange .progress-bar{background:rgba(232,93,38,.5)}
.metric-purple .progress-bar{background:rgba(168,85,247,.5)}

/* ================================================================
   PAGE HERO — inner pages
   ================================================================ */
.page-hero{background:var(--gradient-dark);padding:140px 0 80px;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;top:-50%;right:-20%;width:80%;height:200%;background:radial-gradient(circle,rgba(232,93,38,.08) 0%,transparent 60%);pointer-events:none}
.page-hero h1,
.page-hero .hero-title{font-family:'Playfair Display',serif;font-size:3rem;font-weight:800;color:#fff;margin-bottom:16px;position:relative;z-index:2}
.page-hero p,
.page-hero .hero-subtitle{font-size:1.1rem;color:rgba(255,255,255,.6);max-width:640px;line-height:1.7;position:relative;z-index:2}
.page-hero .hero-label,
.page-hero .section-label{color:#ff9a62;font-size:.75rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;display:inline-block;margin-bottom:12px;position:relative;z-index:2}
.page-hero-centered{text-align:center}
.page-hero-centered .hero-content{margin-left:auto;margin-right:auto}
.page-hero-centered p,.page-hero-centered .hero-subtitle{margin-left:auto;margin-right:auto}

/* ================================================================
   CLIENTS STRIP
   ================================================================ */
.clients-section{background:#fff;padding:60px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.clients-section h2{font-size:1rem;font-weight:600;color:var(--text-light);text-align:center;letter-spacing:1px;text-transform:uppercase;margin-bottom:28px}
.trusted-title{font-family:'Playfair Display',serif;font-size:2.2rem;font-weight:800;color:var(--secondary);text-transform:none;letter-spacing:0;margin-bottom:20px}
.trusted-subtitle{font-size:1.15rem;color:var(--text-light);line-height:1.8;max-width:720px;margin:0 auto;text-align:center}
.clients-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:20px}
.client-badge{background:var(--bg-light);border:1px solid var(--border);border-radius:var(--radius);padding:14px 24px;font-size:.85rem;font-weight:600;color:var(--text-light);transition:all .3s}
.client-badge:hover{border-color:var(--primary);color:var(--primary);background:var(--primary-light)}
/* about page variant */
.client-logo{transition:all .3s;display:flex;align-items:center;justify-content:center}
.client-logo:hover{opacity:.8}

/* ================================================================
   PROBLEM / CHALLENGE CARDS
   ================================================================ */
.problems-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.problem-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 28px;transition:all .3s}
.problem-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.problem-icon{width:56px;height:56px;border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.icon-red{background:rgba(239,68,68,.1);color:#ef4444}
.icon-yellow{background:rgba(245,158,11,.1);color:#f59e0b}
.icon-blue{background:rgba(59,130,246,.1);color:#3b82f6}
.problem-card h3{font-size:1.15rem;font-weight:700;color:var(--secondary);margin-bottom:10px}
.problem-card p{font-size:.9rem;color:var(--text-light);line-height:1.65}

/* ================================================================
   STEP CARDS (How It Works)
   ================================================================ */
.steps-grid,.solution-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:40px}
.step-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 22px;text-align:center;transition:all .3s}
.step-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--primary)}
.step-number{width:44px;height:44px;background:var(--gradient);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;font-weight:700;margin:0 auto 16px}
.step-card h3{font-size:1.05rem;font-weight:700;color:var(--secondary);margin-bottom:8px}
.step-card p{font-size:.88rem;color:var(--text-light);line-height:1.6}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:40px}
.product-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:36px 28px;transition:all .3s}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--primary)}
.product-card .product-icon,.product-card .card-icon{width:64px;height:64px;border-radius:16px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.product-card h3{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:800;color:var(--secondary);margin-bottom:10px}
.product-card p,.card-description{font-size:.9rem;color:var(--text-light);line-height:1.65;margin-bottom:16px}
.learn-more{font-size:.9rem;font-weight:600;color:var(--primary);transition:gap .3s}
.learn-more:hover{color:var(--primary-dark)}

/* Feature/check lists */
.feature-list,.feature-highlights{display:flex;flex-direction:column;gap:10px;list-style:none;margin-top:12px}
.feature-list li,.feature-highlights li{display:flex;align-items:flex-start;gap:10px;font-size:.9rem;color:var(--text)}
.check-icon{color:var(--primary);font-weight:700;flex-shrink:0;margin-top:1px}
.feature-check{width:22px;height:22px;min-width:22px;background:rgba(232,93,38,.1);color:var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.7rem;margin-top:2px}

/* ================================================================
   FEATURE ROWS (features page)
   ================================================================ */
.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;margin-bottom:72px}
.feature-row:last-child{margin-bottom:0}
.feature-row-reverse .feature-content,.feature-row.reverse .feature-text{order:2}
.feature-row-reverse .feature-visual,.feature-row.reverse .feature-visual{order:1}
.feature-tag{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--primary);background:rgba(232,93,38,.1);padding:6px 14px;border-radius:50px;margin-bottom:14px}
.feature-content h3,.feature-text h3{font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:800;color:var(--secondary);margin-bottom:12px;line-height:1.2}
.feature-content>p,.feature-text>p{font-size:.95rem;color:var(--text-light);line-height:1.7;margin-bottom:20px}

/* Feature visual mock panels */
.feature-visual{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;box-shadow:var(--shadow-sm)}

/* Feature screenshot images */
.feature-screenshot{width:100%;height:auto;border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,.12)}
.feature-visual:has(.feature-screenshot){background:transparent;border:none;box-shadow:none;padding:0}

/* Phone screenshot groups (membership & canvassing) */
.feature-visual:has(.feature-phone-group){background:transparent;border:none;box-shadow:none;padding:0}
.feature-phone-group{display:flex;gap:16px;justify-content:center;align-items:flex-start}
.feature-phone-img{width:180px;height:auto;border-radius:16px;box-shadow:0 8px 30px rgba(0,0,0,.12);transition:transform .3s ease}
.feature-phone-img:hover{transform:translateY(-4px)}
.feature-phone-img:nth-child(2){margin-top:20px}
.feature-visual-header{display:flex;align-items:center;gap:10px;margin-bottom:20px;padding-bottom:14px;border-bottom:1px solid var(--border)}
.feature-visual-title{font-size:.8rem;color:var(--text-light);font-weight:500}

/* Mock dashboard (features) */
.mock-dashboard,.mock-map,.mock-timeline,.mock-sentiment,.mock-reports,.mock-gotv{background:var(--bg-light);border:1px solid var(--border);border-radius:var(--radius);padding:24px}
.mock-dashboard .dashboard-header,.mock-map .map-header,.mock-sentiment .sentiment-header,.mock-reports .reports-header,.mock-gotv .gotv-header{font-size:.85rem;font-weight:700;color:var(--secondary);margin-bottom:18px;padding-bottom:12px;border-bottom:1px solid var(--border)}
.dashboard-metrics{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:18px}
.dashboard-metrics .metric-box{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:16px;text-align:center}
.dashboard-metrics .metric-number{font-size:1.5rem;font-weight:700;color:var(--secondary)}
.dashboard-metrics .metric-label{font-size:.75rem;color:var(--text-light);margin-top:2px}
.mock-chart{display:flex;align-items:flex-end;gap:8px;height:80px}
.mock-chart .bar{flex:1;background:var(--gradient);border-radius:4px 4px 0 0;min-height:8px;transition:height .5s}

/* Map mock */
.mock-map .map-canvas{width:100%;height:120px;background:linear-gradient(135deg,#e8eaf0,#f0f2f6);border-radius:8px;margin-bottom:12px;position:relative}
.map-legend{display:flex;gap:16px}
.legend-item{display:flex;align-items:center;gap:6px;font-size:.75rem;color:var(--text-light)}
.legend-item .dot{width:8px;height:8px;border-radius:50%;display:inline-block}

/* Timeline mock */
.mock-timeline{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.timeline-step{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:14px 18px;text-align:center;flex:1;min-width:100px}
.timeline-step.active{border-color:var(--primary);background:var(--primary-light)}
.timeline-step .step-label{font-size:.8rem;font-weight:600;color:var(--secondary);margin-bottom:4px}
.step-badge{font-size:.65rem;font-weight:600;padding:3px 8px;border-radius:50px;background:var(--bg-light);color:var(--text-light)}
.timeline-step.active .step-badge{background:rgba(232,93,38,.1);color:var(--primary)}
.timeline-arrow{font-size:1.2rem;color:var(--text-light)}

/* Sentiment mock */
.sentiment-bars{display:flex;flex-direction:column;gap:12px}
.sentiment-bar{display:flex;align-items:center;gap:12px}
.sentiment-bar .bar-fill{height:12px;border-radius:6px;transition:width .5s}
.sentiment-bar.positive .bar-fill{background:#22c55e}
.sentiment-bar.negative .bar-fill{background:#ef4444}
.sentiment-bar.neutral .bar-fill{background:#f59e0b}
.sentiment-bar span{font-size:.8rem;font-weight:600;color:var(--text-light);white-space:nowrap}

/* Reports mock */
.report-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.report-metric{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:16px;text-align:center}
.report-metric .metric-value{font-size:1.5rem;font-weight:700;color:var(--secondary)}
.report-metric .metric-desc{font-size:.72rem;color:var(--text-light);margin-top:2px}

/* GOTV mock */
.gotv-metric{margin-bottom:16px}
.refresh-badge{display:inline-block;background:rgba(232,93,38,.1);color:var(--primary);font-size:.8rem;font-weight:700;padding:6px 16px;border-radius:50px}
.progress-section{margin-top:12px}
.progress-section .progress-label{font-size:.8rem;font-weight:600;color:var(--secondary);margin-bottom:10px}
.progress-bar-group{display:flex;flex-direction:column;gap:10px}
.progress-item{display:flex;align-items:center;gap:10px}
.progress-item span{font-size:.8rem;min-width:75px}
.progress-item .progress-bar{flex:1;height:10px;border-radius:5px}
.progress-item .your-party{background:#22c55e}
.progress-item .opposition{background:#ef4444}
.progress-value{font-weight:700;color:var(--secondary);min-width:40px;text-align:right}

/* ================================================================
   STAT BANNER
   ================================================================ */
.stat-banner{background:var(--gradient);padding:56px 0}
.stats-container,.stat-banner-grid,.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;align-items:center}
.stats-container{display:flex;justify-content:space-around;flex-wrap:wrap;gap:32px}
.stat-count{text-align:center}
.count-number,.stats-grid .stat-number{font-size:2.5rem;font-weight:800;color:#fff}
.count-label,.stats-grid .stat-label{font-size:.85rem;color:rgba(255,255,255,.75);margin-top:4px}
.stat-separator{width:1px;height:48px;background:rgba(255,255,255,.2);display:none}
.stats-grid .stat-item{text-align:center}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section{background:var(--gradient-dark);padding:80px 0;text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;top:-50%;left:-20%;width:60%;height:200%;background:radial-gradient(circle,rgba(232,93,38,.1) 0%,transparent 60%);pointer-events:none}
.cta-section h2{font-family:'Playfair Display',serif;font-size:2.5rem;font-weight:800;color:#fff;margin-bottom:16px;position:relative;z-index:2}
.cta-section>p,.cta-section .container>p{font-size:1.05rem;color:rgba(255,255,255,.6);margin-bottom:28px;position:relative;z-index:2}
.cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;position:relative;z-index:2}

/* CTA with grid (packages page) */
.cta-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;text-align:left}
.cta-content h2{font-family:'Playfair Display',serif;font-size:2.2rem;font-weight:800;color:#fff;line-height:1.2;margin-bottom:16px}
.cta-content p{font-size:1rem;color:rgba(255,255,255,.6);line-height:1.7;margin-bottom:24px}
.cta-info{display:flex;flex-direction:column;gap:16px}
.info-item,.cta-info-item{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.7);font-size:.92rem}
.cta-info-icon{width:36px;height:36px;background:rgba(232,93,38,.2);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.info-item svg{flex-shrink:0;opacity:.8}

/* mini-cta variant */
.mini-cta{background:#1a1a1a;padding:80px 20px;text-align:center;color:#fff}
.mini-cta h2{font-family:'Playfair Display',serif;font-size:2.5rem;font-weight:700;margin-bottom:30px}
.mini-cta p{font-size:1.05rem;color:rgba(255,255,255,.6);margin-bottom:28px}
.mini-cta .cta-buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
/* about page dark section overrides */
.text-accent{color:#ff9a62}
.text-white{color:#fff}
.text-white-muted{color:rgba(255,255,255,.7)}
/* contact page */
.office-separator{border-top:1px solid var(--border);margin:32px 0}
.office-hours-title{font-weight:700;margin-bottom:8px;color:var(--text)}
.office-hours-text{color:var(--text-light);font-size:.95rem;margin-bottom:12px}
.whatsapp-link{color:var(--primary);font-weight:600}
/* package icon colors */
.package-icon-orange{background-color:#FF9500}
.package-icon-green{background-color:#00B050}
.package-icon-purple{background-color:#7C5BF5}
.package-icon-primary{background-color:#E85D26}
.package-icon-blue{background-color:#0066FF}

/* ================================================================
   CREDIBILITY (about page)
   ================================================================ */
.cred-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:48px}
.cred-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);padding:28px 20px;text-align:center;transition:all .3s}
.cred-card:hover{background:rgba(255,255,255,.1);transform:translateY(-4px)}
.cred-icon{width:56px;height:56px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.cred-value{font-size:1.8rem;font-weight:800;color:#fff}
.cred-label{font-size:.85rem;color:rgba(255,255,255,.6);margin-top:4px}

/* ================================================================
   TEAM CARDS
   ================================================================ */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:48px}
.team-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 20px;text-align:center;transition:all .3s}
.team-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.team-avatar{width:80px;height:80px;border-radius:50%;background:var(--gradient);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem;font-weight:700;margin:0 auto 16px}
.team-card h3,.team-name{font-size:1.05rem;font-weight:700;color:var(--secondary);margin-bottom:4px}
.team-role,.team-title{font-size:.8rem;color:var(--primary);font-weight:600;margin-bottom:10px}
.team-bio{font-size:.82rem;color:var(--text-light);line-height:1.6}

/* ================================================================
   PRESS TIMELINE (about page)
   ================================================================ */
.press-timeline{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:32px}
.timeline-item,.press-item{position:relative;background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px 28px;transition:all .3s;display:flex;align-items:flex-start;gap:16px}
.timeline-item:hover,.press-item:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.timeline-icon{flex-shrink:0;margin-top:2px}
.timeline-year,.press-year{font-size:.75rem;font-weight:700;color:var(--primary);letter-spacing:1px;margin-bottom:4px}
.timeline-content h4,.press-source{font-size:1.05rem;font-weight:700;color:var(--secondary);margin-bottom:4px}
.timeline-content p,.press-desc{font-size:.9rem;color:var(--text-light);line-height:1.6}

/* ================================================================
   STORY / ABOUT
   ================================================================ */
.story-grid{display:grid;grid-template-columns:2fr 1fr;gap:48px;align-items:start}
.story-content p{font-size:.95rem;color:var(--text);line-height:1.75;margin-bottom:18px}
.story-infobox{background:var(--primary-light);border-left:4px solid var(--primary);border-radius:0 var(--radius) var(--radius) 0;padding:28px;position:sticky;top:120px}
.infobox-stat{font-size:2rem;font-weight:800;color:var(--primary)}
.infobox-label{font-size:.85rem;color:var(--text-light);margin-bottom:16px}
.infobox-divider{width:40px;height:2px;background:var(--primary);margin:16px 0;opacity:.3}
.infobox-text{font-size:.85rem;color:var(--text-light);line-height:1.65;font-style:italic}

/* Mission/Vision */
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:8px}
.mv-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 28px}
.mv-card .mv-icon{margin-bottom:16px}
.mv-card h3{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:800;color:var(--secondary);margin-bottom:12px}
.mv-card p{font-size:.92rem;color:var(--text-light);line-height:1.7}

/* ================================================================
   PACKAGE CARDS
   ================================================================ */
.packages-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;margin-top:40px}
.package-card{flex:0 1 calc(33.333% - 14px);min-width:260px}
.package-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 24px;position:relative;transition:all .3s;display:flex;flex-direction:column}
.package-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.package-card.featured{border-color:var(--primary);box-shadow:0 8px 40px rgba(232,93,38,.12)}
.package-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--gradient);color:#fff;font-size:.7rem;font-weight:700;padding:5px 16px;border-radius:50px;white-space:nowrap}
.package-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.package-card h3{font-size:1.1rem;font-weight:700;color:var(--secondary);margin-bottom:8px;line-height:1.3}
.package-description,.package-card>p{font-size:.85rem;color:var(--text-light);margin-bottom:18px;line-height:1.6}
.package-features{display:flex;flex-direction:column;gap:8px;margin-bottom:24px;flex:1}
.package-features li{display:flex;align-items:center;gap:8px;font-size:.85rem;color:var(--text)}
.package-features li::before{content:'✓';color:var(--primary);font-weight:700;flex-shrink:0}
.packages-note{text-align:center;margin-top:32px;padding:20px;background:var(--bg-light);border-radius:var(--radius);font-size:.9rem;color:var(--text-light)}

/* ================================================================
   COMPARISON TABLE (packages page)
   ================================================================ */
.comparison-table-wrapper{overflow-x:auto;margin-top:32px}
table.comparison-table{width:100%;border-collapse:collapse;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border)}
table.comparison-table th{background:var(--secondary);color:#fff;padding:16px 20px;font-size:.9rem;font-weight:700;text-align:left}
table.comparison-table td{padding:16px 20px;font-size:.9rem;color:var(--text);border-bottom:1px solid var(--border);vertical-align:middle}
table.comparison-table td svg{vertical-align:middle;margin-right:8px;flex-shrink:0}
table.comparison-table tr:nth-child(even){background:var(--bg-light)}
table.comparison-table tr:last-child td{border-bottom:none}

/* ================================================================
   INCLUDED CARDS (packages page)
   ================================================================ */
.included-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 24px;transition:all .3s;text-align:center}
.included-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.included-icon{width:56px;height:56px;border-radius:14px;background:rgba(232,93,38,.08);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;color:var(--primary)}
.included-card h3{font-size:1rem;font-weight:700;color:var(--secondary);margin-bottom:6px}
.included-card p{font-size:.85rem;color:var(--text-light);line-height:1.6}

/* General card class */
.card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 24px;transition:all .3s;text-align:center}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.card .card-icon{width:56px;height:56px;border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.card h3{font-size:1rem;font-weight:700;color:var(--secondary);margin-bottom:6px}
.card p{font-size:.85rem;color:var(--text-light);line-height:1.6}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-form{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);padding:32px}
.contact-form h3{font-size:1.15rem;font-weight:700;color:#fff;margin-bottom:20px}
.form-group{margin-bottom:14px}
.form-group label{display:block;font-size:.8rem;font-weight:500;color:rgba(255,255,255,.6);margin-bottom:6px}
.contact-form input,
.contact-form select,
.contact-form textarea{width:100%;padding:12px 16px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:10px;color:#fff;font-family:inherit;font-size:.9rem;outline:none;transition:border-color .3s}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(255,255,255,.3)}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:var(--primary)}
.contact-form select option{color:var(--secondary);background:#fff}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.btn-submit{margin-top:8px}

/* CTA form wrapper (packages) */
.cta-form-wrapper{position:relative;z-index:2}
.cta-form-wrapper .contact-form input,
.cta-form-wrapper .contact-form select,
.cta-form-wrapper .contact-form textarea{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);color:#fff}
.cta-form-wrapper .contact-form input::placeholder,
.cta-form-wrapper .contact-form textarea::placeholder{color:rgba(255,255,255,.35)}
.cta-form-wrapper .contact-form .btn-submit{background:var(--gradient);color:#fff;border:none;width:100%;padding:14px;border-radius:50px;font-size:.95rem;font-weight:600;cursor:pointer}

/* Contact info list */
.contact-info-list{margin-top:48px;display:flex;flex-direction:column;gap:24px}
.contact-label{font-weight:700;color:var(--text);margin-bottom:4px}
.contact-value{color:var(--text-light);font-size:.9rem}

/* Office cards (contact page) */
.office-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm)}
.office-card-accent{height:4px;background:var(--primary)}
.office-card-body{padding:32px}
.office-card-title{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:800;color:var(--secondary);margin-bottom:16px}
.office-card-details{display:flex;flex-direction:column;gap:16px}
.office-detail-label{font-weight:600;color:var(--text);font-size:.9rem;margin-bottom:4px}
.office-detail-value{color:var(--text-light);font-size:.9rem}

/* Utility classes */
.icon-primary{background:rgba(232,93,38,.1)}
.mt-48{margin-top:48px}

/* Light form variant (contact page) */
.contact-form-light{background:#fff;border:1px solid var(--border);padding:36px;border-radius:var(--radius-lg)}
.contact-form-light h3{color:var(--secondary)}
/* Honeypot — invisible to humans */
.hp-field{position:absolute;left:-9999px;top:-9999px;opacity:0;height:0;width:0;overflow:hidden;pointer-events:none}

.contact-form-light .form-group label{color:var(--text-light)}
.contact-form-light input,
.contact-form-light select,
.contact-form-light textarea{background:var(--bg-light);border:1px solid var(--border);color:var(--text)}
.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder{color:var(--text-light)}
.contact-form-light input:focus,
.contact-form-light select:focus,
.contact-form-light textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(232,93,38,.08)}

/* Contact info items (light) */
.cta-info-item-light{display:flex;align-items:flex-start;gap:16px}
.cta-info-icon-light{width:36px;height:36px;background:rgba(232,93,38,.1);border-radius:10px;display:flex;align-items:center;justify-content:center;min-width:36px;flex-shrink:0}

/* ================================================================
   FOOTER
   ================================================================ */
.footer{background:var(--secondary);padding:48px 0 24px;color:rgba(255,255,255,.5)}
.footer-grid,.footer-content{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:36px;margin-bottom:36px}
.footer-col{min-width:0}
.footer-col h4{font-size:.85rem;font-weight:700;color:#fff;margin-bottom:14px;text-transform:uppercase;letter-spacing:.5px}
.footer-col p{font-size:.85rem;line-height:1.7;color:rgba(255,255,255,.5)}
.footer-col ul{display:flex;flex-direction:column;gap:8px}
.footer-col ul a,.footer-links a{font-size:.85rem;color:rgba(255,255,255,.5);transition:color .3s}
.footer-col ul a:hover,.footer-links a:hover{color:var(--primary)}
.office-info{font-size:.82rem;line-height:1.6;margin-bottom:14px}
.office-info strong{color:rgba(255,255,255,.8)}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.footer-logo{flex-shrink:0}
.footer-brand-text{font-size:1.2rem;font-weight:800;color:#fff}
.footer-bottom{padding-top:24px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;align-items:center;font-size:.8rem;flex-wrap:wrap;gap:12px}
.footer-copyright{color:rgba(255,255,255,.4)}
.footer-badges{display:flex;gap:12px;flex-wrap:wrap}
.badge-item{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);padding:5px 12px;border-radius:50px;font-size:.72rem;font-weight:600;color:rgba(255,255,255,.5)}
.badge-item svg{opacity:.6}
.footer-bottom .footer-links{display:flex;gap:16px}
.footer-bottom .footer-links a{font-size:.8rem;color:rgba(255,255,255,.4)}
.footer-bottom .footer-links a:hover{color:var(--primary)}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1024px){
  .hero-title,.hero h1{font-size:2.8rem}
  .section-title,.section-header h2{font-size:2.2rem}
  .grid-4,.products-grid{grid-template-columns:repeat(2,1fr)}
  .package-card{flex:0 1 calc(50% - 10px)}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .cred-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid,.footer-content{grid-template-columns:1fr 1fr;gap:28px}
  .stats-container{gap:24px}
}

@media(max-width:768px){
  .section{padding:72px 0}
  .hero-container{grid-template-columns:1fr;gap:36px}
  .hero-title,.hero h1{font-size:2.3rem}
  .hero-visual{display:none}
  .hero-trust-block{flex-direction:column;text-align:center;padding:20px 24px;gap:16px}
  .trust-detail{border-left:none;padding-left:0;text-align:center;border-top:2px solid rgba(232,93,38,.3);padding-top:16px}
  .hero-stats{gap:24px;flex-wrap:wrap}
  .page-hero{padding:120px 0 60px}
  .page-hero h1,.page-hero .hero-title{font-size:2.2rem}
  .section-title,.section-header h2{font-size:2rem}
  .problems-grid,.grid-3,.press-timeline{grid-template-columns:1fr}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .steps-grid,.solution-steps{grid-template-columns:repeat(2,1fr)}
  .feature-row,.feature-row-reverse{grid-template-columns:1fr}
  .feature-row-reverse .feature-content,.feature-row.reverse .feature-text{order:1}
  .feature-row-reverse .feature-visual,.feature-row.reverse .feature-visual{order:2}
  .cta-grid{grid-template-columns:1fr;text-align:center}
  .cta-info{align-items:center}
  .package-card{flex:0 1 100%;max-width:420px}
  .cred-grid{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:1fr 1fr}
  .grid-2,.mv-grid,.story-grid{grid-template-columns:1fr}
  .comparison-table-wrapper{margin-left:-12px;margin-right:-12px}
  .footer-grid,.footer-content{grid-template-columns:1fr;gap:24px}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center}
  .mock-timeline{flex-direction:column}
  .timeline-arrow{transform:rotate(90deg)}
  .feature-phone-group{gap:10px}
  .feature-phone-img{width:130px}

  /* Feature screenshot max-height for tablets */
  .feature-screenshot{max-height:400px;object-fit:contain}

  /* Touch targets — minimum 44px for mobile links */
  .footer-col ul a,.footer-section ul a,.footer-links a{min-height:44px;display:flex;align-items:center}
  .footer-bottom .footer-links a{min-height:44px;display:inline-flex;align-items:center}
  .learn-more{min-height:44px;display:inline-flex;align-items:center}

  /* Mobile nav */
  .nav-links{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;gap:0;padding:8px 0;box-shadow:var(--shadow-md);border-radius:0 0 12px 12px;z-index:999}
  .nav-links.open{display:flex}
  .nav-links a,.nav-links li a,.nav-link{color:var(--text);padding:14px 24px;display:block;min-height:44px}
  .nav-links a:hover,.nav-link:hover{background:var(--bg-light)}
  .menu-toggle{display:flex;min-width:44px;min-height:44px;align-items:center;justify-content:center}

  /* Mobile nav CTA button — stand out from regular items */
  .nav-links a.cta-button,.nav-links a.btn-nav{background:var(--gradient);color:#fff;margin:8px 16px;border-radius:50px;text-align:center;display:flex;align-items:center;justify-content:center;padding:14px 24px;font-weight:600}
  .nav-links a.cta-button:hover{box-shadow:0 4px 15px rgba(232,93,38,.3)}
}

@media(max-width:480px){
  .hero-title,.hero h1{font-size:1.9rem}
  .hero-stats{flex-direction:column;gap:12px}
  .section-title,.section-header h2{font-size:1.75rem}
  .steps-grid,.solution-steps{grid-template-columns:1fr}
  .products-grid{grid-template-columns:1fr}
  .cred-grid,.grid-4{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .stats-container,.stats-grid{grid-template-columns:1fr 1fr}
  .report-metrics{grid-template-columns:1fr}

  /* Comparison table font reduction for small screens */
  table.comparison-table th{padding:10px 12px;font-size:.75rem}
  table.comparison-table td{padding:10px 12px;font-size:.78rem}
}

/* Sticky mobile CTA bar */
.mobile-cta-bar{display:none}
@media(max-width:768px){
  .mobile-cta-bar{display:flex;position:fixed;bottom:0;left:0;right:0;z-index:999;background:var(--secondary);padding:12px 20px;box-shadow:0 -4px 20px rgba(0,0,0,.15);align-items:center;justify-content:center;gap:12px}
  .mobile-cta-bar .btn{padding:12px 28px;font-size:.9rem;width:100%;max-width:360px}
  /* Add bottom padding to body so footer isn't hidden behind sticky bar */
  body{padding-bottom:64px}
}
