*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #10b981;
  --primary-dark:   #059669;
  --primary-light:  #d1fae5;
  --primary-xlight: #ecfdf5;
  --accent:         #06b6d4;
  --dark:           #0b1120;
  --dark2:          #1a2540;
  --gray:           #64748b;
  --gray-light:     #94a3b8;
  --light:          #f9fafb;
  --cream:          #fafaf8;
  --border:         #e8edf2;
  --white:          #ffffff;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.05);
  --shadow:         0 4px 24px rgba(0,0,0,0.07);
  --shadow-md:      0 8px 36px rgba(0,0,0,0.10);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.13);
  --shadow-green:   0 8px 32px rgba(16,185,129,0.28);
  --radius:         20px;
  --radius-sm:      12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── UTILS ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section { padding: 110px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 64px; }
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-xlight); padding: 6px 18px; border-radius: 50px;
  margin-bottom: 20px; border: 1px solid var(--primary-light);
}
.eyebrow-light { background: rgba(52,211,153,0.15); color: #34d399; border-color: rgba(52,211,153,0.3); }
.section-header h2 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--gray); max-width: 520px; margin: 0 auto; }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes float { 0%,100%{transform:translateY(0) rotate(-1deg);}50%{transform:translateY(-12px) rotate(1deg);} }
@keyframes morphBlob { 0%,100%{border-radius:60% 40% 70% 30%/50% 60% 40% 50%;} 50%{border-radius:30% 70% 40% 60%/60% 30% 70% 40%;} }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-50%);} }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.5);} 50%{box-shadow:0 0 0 6px rgba(16,185,129,0);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes mapPinBounce { 0%,100%{transform:translateY(0);} 40%{transform:translateY(-8px);} }

.fade-up { opacity:0; transform:translateY(32px); animation: fadeUp .75s ease forwards; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: none; transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: var(--shadow-green); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(16,185,129,.45); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-1px); }
.btn-ghost-nav { background: transparent; color: var(--gray); }
.btn-ghost-nav:hover { color: var(--primary); }
.btn-outline-hero { background: rgba(255,255,255,.08); color: white; border: 2px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-outline-hero:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); }
.btn-white-cta { background: white; color: var(--primary-dark); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.btn-white-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.btn-xl { padding: 17px 40px; font-size: 1.05rem; }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232,237,242,.8);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.07); }
.nav-inner { display: flex; align-items: center; gap: 36px; height: 72px; }
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--gray); padding: 8px 16px; border-radius: 10px; font-size: 0.9rem; font-weight: 500; transition: all .2s; }
.nav-links a:hover { color: var(--primary); background: var(--primary-xlight); }
.nav-cta { display: flex; gap: 8px; margin-left: 8px; }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px; margin-left: auto;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0; padding: 8px 28px 20px;
  border-top: 1px solid var(--border); background: white;
}
.mobile-menu a { text-decoration: none; color: var(--dark); padding: 14px 0; font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--border); display: block; }
.mobile-menu a:last-child { border: none; margin-top: 12px; }
.mobile-menu.open { display: flex; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 140px 0 80px;
  background: linear-gradient(160deg, #0b1120 0%, #0d2137 45%, #0c2e25 100%);
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(16,185,129,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(16,185,129,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .45;
}
.hero-glow-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: radial-gradient(circle, rgba(16,185,129,.35), transparent 70%); }
.hero-glow-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(6,182,212,.25), transparent 70%); }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3);
  color: #34d399; padding: 8px 20px; border-radius: 50px; font-size: 0.84rem; font-weight: 600;
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.badge-live {
  width: 8px; height: 8px; border-radius: 50%; background: #34d399; flex-shrink: 0;
  animation: pulseDot 1.8s ease-in-out infinite;
}
.hero-text h1 {
  font-size: 4rem; font-weight: 900; line-height: 1.1; color: white;
  letter-spacing: -1px; margin-bottom: 22px;
}
.hero-highlight {
  background: linear-gradient(135deg, #34d399, #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.65); max-width: 460px; margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.trust-item span { font-size: 0.78rem; color: rgba(255,255,255,.5); }
.trust-stars { font-size: 0.8rem; color: #fbbf24; letter-spacing: 1px; }
.trust-sep { width: 1px; height: 44px; background: rgba(255,255,255,.12); }

/* ── Hero Visual ──────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.hero-blob {
  position: absolute; width: 440px; height: 440px;
  border-radius: 60% 40% 70% 30%/50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(6,182,212,.12));
  animation: morphBlob 9s ease-in-out infinite;
  filter: blur(20px);
}

/* Card tipo app */
.hero-phone-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.07); backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,.15); border-radius: 24px;
  width: 300px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.phone-card-header { display: flex; align-items: center; gap: 6px; padding: 14px 16px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.phone-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.phone-card-dot.green  { background: #34d399; }
.phone-card-dot.yellow { background: #fbbf24; }
.phone-card-dot.red    { background: #f87171; }

/* Mini mapa simulado */
.phone-card-map {
  height: 160px; position: relative;
  background: linear-gradient(160deg, #0f2318 0%, #0a1a2e 100%);
  background-image: linear-gradient(rgba(16,185,129,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(16,185,129,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow: hidden;
}
.map-pin {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(16,185,129,.2); border: 2px solid rgba(16,185,129,.5);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  animation: mapPinBounce 3s ease-in-out infinite;
}
.map-pin-1 { top: 30px; left: 60px; animation-delay: 0s; }
.map-pin-2 { top: 60px; right: 50px; animation-delay: .6s; }
.map-pin-3 { bottom: 30px; left: 100px; animation-delay: 1.2s; }
.map-user {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 1.4rem; z-index: 2;
}
.map-radius {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100px; height: 100px; border-radius: 50%;
  border: 1.5px dashed rgba(16,185,129,.4);
  background: rgba(16,185,129,.05);
}
.phone-card-prof {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: rgba(255,255,255,.05); border-top: 1px solid rgba(255,255,255,.08);
}
.pcp-avatar { font-size: 1.8rem; }
.pcp-info strong { display: block; font-size: 0.85rem; color: white; font-weight: 700; }
.pcp-info small  { font-size: 0.72rem; color: rgba(255,255,255,.5); }
.pcp-dist { margin-left: auto; background: rgba(16,185,129,.2); color: #34d399; border: 1px solid rgba(16,185,129,.3); border-radius: 50px; padding: 4px 12px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }

/* Floating cards */
.float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.1); backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.2); border-radius: 14px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.float-card strong { display: block; font-size: 0.9rem; font-weight: 700; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.float-card small { font-size: 0.72rem; color: rgba(255,255,255,.55); }
.float-icon { font-size: 1.3rem; }
.float-1 { top: 20px; right: -20px; animation: float 4.5s ease-in-out infinite; }
.float-2 { bottom: 80px; left: -30px; animation: float 4.5s ease-in-out infinite 2s; }
.float-3 { bottom: 20px; right: 10px; animation: float 4.5s ease-in-out infinite 1s; }

/* ── TICKER ───────────────────────────────────────── */
.stats-ticker {
  background: var(--dark2); border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,.6);
}
.ticker-dot { color: var(--primary); opacity: .5; }

/* ── ESPECIALIDADES ───────────────────────────────── */
.spec-grid { display: flex; flex-direction: column; gap: 12px; }
.spec-card {
  display: flex; align-items: center; gap: 20px;
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 22px 28px; cursor: pointer; transition: all .3s;
  position: relative; overflow: hidden;
}
.spec-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateX(6px); }
.spec-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ic), var(--ic2));
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  transition: transform .3s;
}
.spec-card:hover .spec-icon-wrap { transform: scale(1.08) rotate(-3deg); }
.spec-body { flex: 1; }
.spec-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.spec-body p { font-size: 0.84rem; color: var(--gray); line-height: 1.5; margin-bottom: 8px; }
.spec-tag { font-size: 0.75rem; font-weight: 700; color: var(--primary); background: var(--primary-xlight); padding: 3px 12px; border-radius: 50px; border: 1px solid var(--primary-light); }
.spec-arrow { font-size: 1.3rem; color: var(--gray-light); transition: all .3s; }
.spec-card:hover .spec-arrow { color: var(--primary); transform: translateX(4px); }

/* ── COMO FUNCIONA ────────────────────────────────── */
.como-funciona {
  background: linear-gradient(160deg, #0b1120 0%, #0c2e25 100%);
  padding: 110px 0; position: relative; overflow: hidden;
}
.como-funciona::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16,185,129,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.steps-row { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; z-index: 1; }
.step-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px); border-radius: var(--radius);
  padding: 44px 32px; text-align: center; flex: 1; max-width: 280px;
  transition: all .3s; position: relative;
}
.step-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(16,185,129,.4); font-family: 'Plus Jakarta Sans', sans-serif;
}
.step-emoji { font-size: 2.8rem; margin-bottom: 18px; display: block; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.step-line {
  flex: 1; max-width: 80px; height: 2px;
  background: linear-gradient(90deg, rgba(16,185,129,.3), rgba(6,182,212,.3));
  position: relative; display: flex; align-items: center; justify-content: center;
}
.step-line-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

/* ── PROFISSIONAIS ────────────────────────────────── */
.prof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prof-card {
  background: white; border-radius: var(--radius); padding: 28px 22px;
  border: 1.5px solid var(--border); transition: all .3s; position: relative;
}
.prof-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.prof-card-featured {
  border-color: var(--primary); box-shadow: var(--shadow-green);
  background: linear-gradient(160deg, #ecfdf5, white 40%);
}
.featured-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; font-size: 0.72rem; font-weight: 800; padding: 4px 16px; border-radius: 50px;
  white-space: nowrap; font-family: 'Plus Jakarta Sans', sans-serif;
}
.prof-card-top { position: relative; display: flex; justify-content: center; margin-bottom: 18px; }
.prof-av { width: 84px; height: 84px; border-radius: 22px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; box-shadow: var(--shadow); }
.prof-status { position: absolute; top: 0; right: 0; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.prof-status.avail { background: #dcfce7; color: #15803d; }
.prof-status.busy  { background: #fee2e2; color: #dc2626; }
.prof-card h3 { font-size: 1rem; font-weight: 700; text-align: center; }
.prof-spec { display: block; text-align: center; font-size: 0.78rem; color: var(--primary); font-weight: 600; margin: 4px 0 10px; }
.prof-stars { font-size: 0.8rem; text-align: center; margin-bottom: 12px; color: #fbbf24; }
.prof-stars b { color: var(--dark); }
.prof-stars small { color: var(--gray-light); }
.prof-meta { display: flex; flex-direction: column; gap: 4px; font-size: 0.78rem; color: var(--gray); align-items: center; }

/* ── DEPOIMENTOS ──────────────────────────────────── */
.depoimentos { background: white; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.test-card {
  background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; position: relative; transition: all .3s;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.test-card-green {
  background: linear-gradient(145deg, var(--primary-dark), #065f46);
  border-color: transparent; transform: scale(1.03);
}
.test-card-green:hover { transform: scale(1.03) translateY(-4px); }
.test-quote {
  font-family: Georgia, serif; font-size: 5rem; line-height: 1;
  color: var(--primary-light); margin-bottom: 12px; display: block;
  font-weight: 900; opacity: .7;
}
.test-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), #a7f3d0); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.test-author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.test-author small { font-size: 0.78rem; color: var(--gray-light); display: block; margin-top: 1px; }
.test-stars { margin-left: auto; font-size: 0.85rem; color: #fbbf24; flex-shrink: 0; }

/* ── CTA PROFISSIONAL ─────────────────────────────── */
.cta-section { background: var(--cream); }
.cta-box {
  background: linear-gradient(145deg, #0b1120 0%, #0d2137 50%, #0c2e25 100%);
  border-radius: 28px; padding: 80px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(16,185,129,.08), transparent 60%);
}
.cta-left { position: relative; z-index: 1; }
.cta-left h2 { font-size: 2.6rem; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px; }
.cta-left p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 28px; }
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.cta-list li {
  color: rgba(255,255,255,.85); font-size: 0.95rem;
  display: flex; align-items: center; gap: 12px;
}
.cta-list li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.cta-right { position: relative; z-index: 1; }

/* Card visual de renda do profissional */
.cta-visual-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 22px; padding: 28px;
}
.cvc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.cvc-av { font-size: 2.4rem; }
.cvc-header strong { display: block; color: white; font-size: 0.95rem; font-weight: 700; }
.cvc-header small { color: rgba(255,255,255,.45); font-size: 0.78rem; }
.cvc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.cvc-stat { background: rgba(255,255,255,.06); border-radius: 12px; padding: 14px 10px; text-align: center; }
.cvc-stat strong { display: block; color: white; font-size: 1rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.cvc-stat small { color: rgba(255,255,255,.4); font-size: 0.7rem; }
.cvc-bar-label { font-size: 0.72rem; color: rgba(255,255,255,.35); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.cvc-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.cvc-bar { flex: 1; background: rgba(16,185,129,.25); border-radius: 4px 4px 0 0; transition: height .3s; }
.cvc-bar-active { background: linear-gradient(to top, var(--primary), var(--accent)); }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: #060d1a; color: rgba(255,255,255,.55); padding: 80px 0 0; }
.footer-top-line { height: 1px; background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding: 60px 0; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 260px; }
.social-links { display: flex; gap: 10px; margin-top: 24px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  font-size: 1.1rem; transition: all .2s;
}
.social-links a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; letter-spacing: .3px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.45); font-size: 0.85rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 22px 28px;
  text-align: center; font-size: 0.82rem; max-width: 1200px; margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--primary); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .prof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-box { padding: 56px; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 120px 0 72px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { min-height: 360px; }
  .hero-blob { width: 320px; height: 320px; }
  .float-1 { right: 0; }
  .float-2 { left: 0; }
  .float-3 { display: none; }
  .spec-card { padding: 18px 20px; }
  .section-header h2 { font-size: 2.1rem; }
  .steps-row { flex-direction: column; align-items: center; gap: 8px; }
  .step-line { width: 2px; height: 40px; max-width: none; }
  .step-card { max-width: 340px; }
  .prof-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .test-card-green { transform: none; }
  .cta-box { grid-template-columns: 1fr; padding: 44px 32px; gap: 36px; }
  .cta-left h2 { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 2.2rem; }
  .prof-grid { grid-template-columns: 1fr; }
  .spec-card { flex-wrap: wrap; }
  .hero-phone-card { width: 260px; }
  .section { padding: 56px 0; }
  .cta-box { padding: 32px 20px; }
}
