/* =====================================================
   Noventa Solutions — Main Stylesheet
   noventasolutions.co
   ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap");

:root {
  --navy:       #050D1F;
  --navy-mid:   #091429;
  --navy-light: #0F1E3D;
  --teal:       #00C4B3;
  --teal-dim:   #009E90;
  --teal-glow:  rgba(0,196,179,0.15);
  --blue:       #1A70F5;
  --text-dark:  #111827;
  --text-body:  #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg-white:   #FFFFFF;
  --bg-light:   #F8FAFC;
  --bg-mid:     #F1F4F8;
  --border:     #E5E9F0;
  --border-dark:#D1D9E6;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(6,14,36,0.06);
  --shadow-md:  0 8px 32px rgba(6,14,36,0.10);
  --shadow-lg:  0 20px 60px rgba(6,14,36,0.14);
  --font-main:  'Sora', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--bg-white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }

/* ===== TYPE ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-main); line-height: 1.15; letter-spacing: -0.02em; }
.eyebrow { font-family: var(--font-main); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: block; }
.section-title { font-size: clamp(30px, 4vw, 44px); font-weight: 700; color: var(--text-dark); margin-bottom: 18px; }
.section-sub { font-size: 18px; color: var(--text-muted); max-width: 640px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-main); font-size: 14px; font-weight: 600; padding: 13px 26px; border-radius: 8px; cursor: pointer; border: none; transition: all 0.22s ease; white-space: nowrap; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dim); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,196,179,0.4); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border-dark); }
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal); }
.btn svg { width: 16px; height: 16px; }

/* ===== NAV ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; transition: all 0.3s ease; }
nav.scrolled { background: rgba(6,14,36,0.97); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; background: transparent; border-radius: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.1; }
.logo-text span { color: var(--teal); font-weight: 500; font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-family: var(--font-main); font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn { padding: 10px 20px; font-size: 13px; }
.nav-mobile-cta { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: var(--navy); position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 72px; }
#three-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.85; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(0,196,179,0.08) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(26,112,245,0.06) 0%, transparent 50%); z-index: 1; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,196,179,0.12); border: 1px solid rgba(0,196,179,0.28); border-radius: 100px; padding: 6px 14px; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero-badge span { font-family: var(--font-main); font-size: 12px; font-weight: 500; color: var(--teal); }
h1.hero-headline { font-size: clamp(34px, 4.2vw, 56px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; }
h1.hero-headline em { font-style: normal; background: linear-gradient(90deg, var(--teal) 0%, #60E8E0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.60); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.07); }
.hero-stat-num { font-family: var(--font-main); font-size: 26px; font-weight: 700; color: #fff; }
.hero-stat-num span { color: var(--teal); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ===== 3D DASHBOARD WRAPPER ===== */
.dashboard-3d-wrap {
  perspective: 1000px;
  perspective-origin: center center;
}
.dashboard-tilt {
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.12s ease-out;
  animation: float3d 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}
@keyframes float3d {
  0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0px); }
  50%      { transform: rotateY(-6deg) rotateX(2deg) translateY(-10px); }
}
.dashboard { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; overflow: hidden; backdrop-filter: blur(12px); box-shadow: 0 2px 0 rgba(255,255,255,0.08) inset, 0 -1px 0 rgba(0,0,0,0.3) inset; }
.dash-bar { background: rgba(255,255,255,0.05); padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot:nth-child(1){background:#FF5F57;} .dash-dot:nth-child(2){background:#FFBD2E;} .dash-dot:nth-child(3){background:#27C840;}
.dash-url { margin-left: 10px; background: rgba(255,255,255,0.06); border-radius: 6px; padding: 4px 12px; font-size: 11px; color: rgba(255,255,255,0.35); font-family: var(--font-main); }
.dash-body { padding: 20px; display: grid; gap: 12px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-card, .dash-card-full { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 16px; }
.dash-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; font-family: var(--font-main); }
.dash-value { font-family: var(--font-main); font-size: 13px; font-weight: 600; color: #fff; }
.dash-value.teal{color:var(--teal);} .dash-value.green{color:#34D399;} .dash-value.yellow{color:#FBBF24;} .dash-value.red{color:#F87171;}
.dash-tag { display: inline-block; background: rgba(0,196,179,0.15); color: var(--teal); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px; margin-top: 4px; font-family: var(--font-main); }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.kpi-pill { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 10px 12px; }
.kpi-name { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing:0.07em; margin-bottom:4px; font-family: var(--font-main); font-weight:600; }
.kpi-val { font-family: var(--font-main); font-size: 14px; font-weight: 700; }
.kpi-delta { font-size: 9px; margin-top: 2px; }
.kpi-delta.up{color:#34D399;} .kpi-delta.down{color:#F87171;}
.evidence-list { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.evidence-item { display: flex; align-items: center; gap: 8px; }
.evidence-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink:0; }
.evidence-text { font-size: 11px; color: rgba(255,255,255,0.5); }
.progress-wrap { margin-top:8px; }
.progress-track { height:5px; background:rgba(255,255,255,0.08); border-radius:10px; overflow:hidden; margin-top:4px; }
.progress-fill { height:100%; background:linear-gradient(90deg,var(--teal),#0099E6); border-radius:10px; }
.prog-label { display:flex; justify-content:space-between; font-size:10px; color:rgba(255,255,255,0.35); font-family:var(--font-main); }
.dash-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 36px; margin-top: 8px; }
.dash-bar-item { flex: 1; border-radius: 3px 3px 0 0; background: rgba(0,196,179,0.3); }
.dash-bar-item:nth-child(3){background:var(--teal);}

/* ===== 3D CARD TILT ===== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
  cursor: default;
}
.tilt-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.14); }
.tilt-card .card-shine {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.2s;
}
.tilt-card:hover .card-shine { opacity: 1; }

/* ===== TRUST ===== */
.trust { background: var(--bg-light); padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.trust-items { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: var(--border-dark); letter-spacing: -0.02em; }

/* ===== PROBLEM ===== */
.problem { background: var(--bg-white); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 56px; }
.problem-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; transition: all 0.25s; }
.problem-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, #F87171, #FBBF24); }
.problem-icon { width: 40px; height: 40px; border-radius: 10px; background: #FEF2F2; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.problem-icon svg { width: 20px; height: 20px; color: #EF4444; }
.problem-card h4 { font-family: var(--font-main); font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== SOLUTION ===== */
.solution { background: var(--navy); position: relative; overflow: hidden; }
.solution-glow { position:absolute; top:-100px; right:-200px; width:600px; height:600px; background:radial-gradient(circle,rgba(0,196,179,0.10) 0%,transparent 65%); pointer-events:none; }
.solution-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:2; }
.solution-text .section-title { color: #fff; }
.solution-text .section-sub { color: rgba(255,255,255,0.55); }
.solution-points { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.solution-point { display: flex; gap: 14px; align-items: flex-start; }
.sol-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(0,196,179,0.15); border: 1.5px solid var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.sol-check svg { width: 11px; height: 11px; color: var(--teal); }
.sol-text { font-size: 15px; color: rgba(255,255,255,0.70); line-height: 1.6; }
.flow-visual { display: flex; flex-direction: column; }
.flow-step { display: flex; gap: 16px; align-items: flex-start; }
.flow-num-col { display: flex; flex-direction: column; align-items: center; }
.flow-num { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(0,196,179,0.4); display: flex; align-items: center; justify-content: center; font-family: var(--font-main); font-size: 13px; font-weight: 700; color: var(--teal); flex-shrink: 0; }
.flow-line { width: 2px; flex: 1; background: linear-gradient(to bottom, rgba(0,196,179,0.3), rgba(0,196,179,0.04)); min-height: 30px; }
.flow-content { padding-bottom: 24px; }
.flow-content h4 { font-family: var(--font-main); font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.flow-content p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--bg-light); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 56px; }
.step-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; overflow: hidden; }
.step-num { font-family: var(--font-main); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.step-num::before { content:''; width:24px; height:2px; background:var(--teal); border-radius:2px; }
.step-card h3 { font-family: var(--font-main); font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }

/* ===== FEATURES ===== */
.features { background: var(--bg-white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 56px; }
.feature-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; position: relative; overflow: hidden; }
.feature-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-card h4 { font-family: var(--font-main); font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== METHODS ===== */
.methods { background: var(--navy); position: relative; overflow: hidden; }
.methods-glow { position:absolute; bottom:-200px; left:50%; transform:translateX(-50%); width:800px; height:400px; background:radial-gradient(ellipse,rgba(0,196,179,0.08) 0%,transparent 70%); pointer-events:none; }
.methods-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; justify-content: center; }
.method-chip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 10px 22px; font-family: var(--font-main); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); transition: all 0.25s ease; cursor: default; transform-style: preserve-3d; }
.method-chip:hover { background: rgba(0,196,179,0.14); border-color: rgba(0,196,179,0.45); color: var(--teal); transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 28px rgba(0,196,179,0.2); }
.method-chip.featured { background: rgba(0,196,179,0.12); border-color: rgba(0,196,179,0.32); color: var(--teal); }
.methods-note { margin-top: 40px; font-size: 15px; color: rgba(255,255,255,0.42); max-width: 680px; text-align: center; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ===== USE CASES ===== */
.usecases { background: var(--bg-light); }
.usecases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; margin-top: 52px; }
.usecase-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; display: flex; gap: 16px; align-items: flex-start; position: relative; overflow: hidden; }
.usecase-num { font-family: var(--font-main); font-size: 28px; font-weight: 800; color: var(--border-dark); line-height: 1; flex-shrink: 0; }
.usecase-card h4 { font-family: var(--font-main); font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.usecase-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== BENEFITS ===== */
.benefits { background: var(--bg-white); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); position: relative; overflow: hidden; }
.benefit-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-item h4 { font-family: var(--font-main); font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.benefit-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== COMPARISON ===== */
.comparison { background: var(--bg-light); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.compare-col { border-radius: var(--radius-lg); overflow: hidden; }
.compare-col.trad { background: var(--bg-white); border: 1px solid var(--border); }
.compare-col.nova { background: var(--navy); border: 1px solid rgba(0,196,179,0.2); }
.compare-head { padding: 22px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.compare-col.nova .compare-head { border-bottom-color: rgba(255,255,255,0.07); }
.compare-head-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.compare-head h3 { font-family: var(--font-main); font-size: 15px; font-weight: 700; }
.compare-col.trad .compare-head h3 { color: var(--text-muted); }
.compare-col.nova .compare-head h3 { color: #fff; }
.compare-items { padding: 20px 28px; display: flex; flex-direction: column; gap: 16px; }
.compare-item { display: flex; gap: 12px; align-items: center; }
.compare-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.compare-col.trad .compare-dot { background: #EF4444; }
.compare-col.nova .compare-dot { background: var(--teal); }
.compare-item span { font-size: 14px; }
.compare-col.trad .compare-item span { color: var(--text-body); }
.compare-col.nova .compare-item span { color: rgba(255,255,255,0.72); }

/* ===== FOUNDER ===== */
.founder { background: var(--bg-white); }
.founder-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.founder-card { background: var(--navy); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; }
.founder-card-glow { position:absolute; bottom:-80px; right:-80px; width:250px; height:250px; background:radial-gradient(circle,rgba(0,196,179,0.15) 0%,transparent 65%); }
.founder-avatar { width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, var(--teal) 0%, #1A70F5 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position:relative; z-index:1; }
.founder-avatar span { font-family: var(--font-main); font-size: 28px; font-weight: 800; color: #fff; }
.founder-card h3 { font-family: var(--font-main); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; position:relative; z-index:1; }
.founder-card .creds { font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 20px; font-family: var(--font-main); position:relative; z-index:1; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; position:relative; z-index:1; }
.founder-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,0.6); font-family: var(--font-main); font-weight: 500; }
.founder-text .section-title { margin-bottom: 20px; }
.founder-quote { font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }
.founder-quote em { font-style: italic; color: var(--text-dark); font-weight: 500; }

/* ===== CTA ===== */
.cta { background: var(--navy); position: relative; overflow: hidden; }
.cta-glow { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:700px; height:400px; background:radial-gradient(ellipse,rgba(0,196,179,0.12) 0%,transparent 65%); pointer-events:none; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; color: #fff; margin-bottom: 18px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 36px; }
.form-row { display: flex; gap: 0; max-width: 480px; margin: 0 auto 16px; }
.form-row input { flex: 1; padding: 14px 20px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.15); border-right: none; border-radius: 8px 0 0 8px; font-family: var(--font-body); font-size: 14px; color: #fff; outline: none; transition: border-color 0.2s; }
.form-row input::placeholder { color: rgba(255,255,255,0.3); }
.form-row input:focus { border-color: var(--teal); }
.form-row .btn { border-radius: 0 8px 8px 0; padding: 14px 24px; }

/* ===== FOOTER ===== */
footer { background: #030810; padding: 60px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.32); line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-col h5 { font-family: var(--font-main); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.42); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.22); }

/* ===== ICON COLORS ===== */
.ic-teal { background: rgba(0,196,179,0.1); color: var(--teal); }
.ic-blue { background: rgba(26,112,245,0.1); color: var(--blue); }
.ic-orange { background: rgba(251,146,60,0.1); color: #FB923C; }
.ic-purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.ic-green { background: rgba(52,211,153,0.1); color: #34D399; }
.ic-pink { background: rgba(244,114,182,0.1); color: #F472B4; }

/* ===== 3D SECTION DIVIDER ===== */
.section-divider {
  height: 80px;
  position: relative;
  overflow: hidden;
}
.section-divider svg { position: absolute; bottom: 0; width: 100%; }

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .dashboard-tilt { animation: none !important; transform: rotateY(-6deg) rotateX(3deg) !important; }
  #three-canvas { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .container { padding: 0 28px; }
}
@media (max-width: 900px) {
  .hero-inner, .solution-inner, .founder-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .benefits-grid, .compare-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-cta { display: block; padding-top: 6px; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 70px; }
  .section { padding: 72px 0; }
  h1.hero-headline { font-size: clamp(32px, 7vw, 44px); }
  .hero-actions .btn { flex: 1; justify-content: center; min-width: 0; }
  #three-canvas { opacity: 0.6; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .hero-stats { gap: 0; justify-content: space-between; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 11px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 16px; }
  .trust-inner { gap: 20px; }
  .trust-items { gap: 24px; justify-content: center; }
  .form-row { flex-direction: column; gap: 10px; }
  .form-row input { border-right: 1.5px solid rgba(255,255,255,0.15); border-radius: 8px; }
  .form-row .btn { border-radius: 8px; justify-content: center; }
  .problem-grid, .steps-grid { gap: 14px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .nav-actions .btn { padding: 8px 14px; font-size: 12px; }
  .compare-items, .compare-head { padding-left: 20px; padding-right: 20px; }
  .founder-card, .step-card { padding: 28px 22px; }
}
@media (max-width: 380px) {
  .features-grid { grid-template-columns: 1fr; }
}
