/* ═══════════════════════════════════════════════════════════
   PLANTTA — styles.css  v3
   Design system: #2ED47A green · #0F2F2F dark · #F5F5F5 off-white
   Font: Inter (Google Fonts)
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --green:      #2ED47A;
  --green-dark: #1ab562;
  --green-dim:  rgba(46,212,122,.12);
  --dark:       #0F2F2F;
  --dark2:      #0a2020;
  --dark3:      #163636;
  --mid:        #1e4040;
  --off-white:  #F5F5F5;
  --surface:    #ffffff;
  --border:     #e5e7eb;
  --border-d:   rgba(255,255,255,.1);
  --text:       #111827;
  --muted:      #6b7280;
  --muted-l:    #9ca3af;
  --warn:       #F59E0B;
  --danger:     #EF4444;
  --blue:       #3B82F6;
  --rad:        16px;
  --rad-sm:     8px;
  --nav-h:      68px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ═══════════════════════════════════════════════════════════
   REUSABLE
   ═══════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow i { font-size: 16px; color: var(--green); }
.eyebrow--green { color: var(--green); }
.eyebrow--center { display: flex; justify-content: center; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  background: var(--green);
  color: #0a1f0a;
  font-size: 14px;
  font-weight: 700;
  transition: background .18s, transform .15s, box-shadow .18s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,212,122,.35); }
.btn-primary.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-primary.btn-xl { padding: 16px 34px; font-size: 16px; border-radius: 12px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: border-color .18s, color .18s, background .18s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }
.btn-ghost.btn-xl { padding: 15px 30px; font-size: 15px; border-radius: 12px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: border-color .18s, background .18s;
}
.btn-outline:hover { border-color: var(--green); background: var(--green-dim); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: gap .15s, color .15s;
}
.btn-link:hover { color: var(--green); gap: 10px; }
.btn-link--light { color: rgba(255,255,255,.75); }
.btn-link--light:hover { color: var(--green); }

/* Fade-up (JS-ready guard) */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.js-ready .fade-up.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-right: 8px;
  flex-shrink: 0;
}
.nav-logo--footer { color: rgba(255,255,255,.9); }
.nav-logo-icon {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 7px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 5px;
}
.nav-logo-icon span { background: var(--dark); border-radius: 2px; }
.nav-logo-icon span:last-child { background: rgba(15,47,47,.45); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  background: none;
}
.nav-link i { font-size: 13px; transition: transform .2s; }
.nav-link:hover { background: var(--off-white); color: var(--dark); }
.nav-link--plain { color: var(--muted); }
.nav-link--plain:hover { color: var(--text); }
.nav-item.has-dropdown:hover .nav-link i,
.nav-item.has-dropdown.open .nav-link i { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s, visibility .18s, transform .18s;
  pointer-events: none;
}
.dropdown--wide { min-width: 680px; left: -60px; }
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; transform: none; pointer-events: all;
}

.dropdown-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.dropdown-section { padding: 8px 4px; }
.dropdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  margin-bottom: 4px;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  transition: background .12s;
}
.dropdown-item:hover { background: var(--off-white); }
.dropdown-item i { font-size: 22px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.dropdown-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.dropdown-item span { display: block; font-size: 12px; color: var(--muted); line-height: 1.4; margin-top: 1px; }

.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  font-size: 22px;
  color: var(--text);
  transition: background .15s;
  margin-left: 4px;
}
.burger:hover { background: var(--off-white); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(46,212,122,.18) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 55% 40%, transparent 0%, var(--dark) 80%);
}
.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.hero-body { display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(46,212,122,.12);
  border: 1px solid rgba(46,212,122,.3);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
  width: fit-content;
  transition: background .15s;
}
.hero-badge:hover { background: rgba(46,212,122,.2); }
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
.hero-title {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--green) 0%, #7fff9a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .15s, gap .15s;
}
.hero-play:hover { color: var(--green); gap: 14px; }
.hero-play-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
  transition: background .15s, border-color .15s;
}
.hero-play:hover .hero-play-circle { background: rgba(46,212,122,.2); border-color: var(--green); }
.hero-social { display: flex; align-items: center; gap: 14px; }
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -8px;
  object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-stars { display: flex; align-items: center; gap: 3px; font-size: 13px; color: var(--warn); }
.hero-stars strong { color: #fff; font-weight: 700; margin-left: 4px; }
.hero-social > div > span { font-size: 12px; color: rgba(255,255,255,.55); display: block; margin-top: 3px; }

/* Screen mockup */
.hero-visual { position: relative; }
.hero-screen {
  background: var(--dark3);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}
.screen-chrome {
  background: #0e2929;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 11px; height: 11px; border-radius: 50%; }
.cd-r { background: #FF5F57; } .cd-y { background: #FEBC2E; } .cd-g { background: #28C840; }
.chrome-url { font-size: 11px; color: rgba(255,255,255,.35); font-family: monospace; }
.screen-body { display: flex; min-height: 340px; }

/* Sidebar */
.ss-sidebar {
  width: 150px;
  background: var(--dark2);
  border-right: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 20px;
}
.ss-logo { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; color: #fff; }
.ss-logo-icon { width: 20px; height: 20px; background: var(--green); border-radius: 5px; flex-shrink: 0; }
.ss-nav { display: flex; flex-direction: column; gap: 2px; }
.ss-link {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px; border-radius: 6px;
  font-size: 10.5px; font-weight: 500; color: rgba(255,255,255,.45);
  transition: background .12s, color .12s; white-space: nowrap;
}
.ss-link i { font-size: 14px; flex-shrink: 0; }
.ss-link--active { background: rgba(46,212,122,.15); color: var(--green); }

/* Main */
.ss-main { flex: 1; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.ss-topbar { display: flex; align-items: center; justify-content: space-between; }
.ss-page { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.85); }
.ss-topbar-r { display: flex; align-items: center; gap: 8px; }
.ss-month-pill { display: flex; align-items: center; gap: 4px; font-size: 10px; color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); padding: 3px 8px; border-radius: 99px; }
.ss-av { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

.ss-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.ss-kpi { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 8px 10px; }
.ss-kpi span { display: block; font-size: 9px; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.ss-kpi strong { display: block; font-size: 16px; font-weight: 800; color: #fff; }
.ss-kpi strong.warn { color: var(--warn); }
.ss-kpi em { display: flex; align-items: center; gap: 3px; font-style: normal; font-size: 9px; margin-top: 3px; }
.ss-kpi em.up { color: var(--green); } .ss-kpi em.down { color: var(--danger); }

.ss-content { display: grid; grid-template-columns: 1fr 1.6fr; gap: 10px; }
.ss-chart-wrap, .ss-proj-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 10px 12px;
}
.ss-card-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.ss-chart { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.ss-bar { flex: 1; background: rgba(46,212,122,.25); border-radius: 4px 4px 0 0; display: flex; flex-direction: column; justify-content: flex-end; }
.ss-bar span { font-size: 8px; color: rgba(255,255,255,.3); text-align: center; padding-bottom: 3px; }
.ss-bar--hi { background: var(--green); }
.ss-proj-list { display: flex; flex-direction: column; gap: 7px; }
.ss-proj-row { display: grid; grid-template-columns: 24px 1fr auto auto; align-items: center; gap: 7px; }
.ss-proj-thumb { width: 24px; height: 24px; border-radius: 5px; background-size: cover; background-position: center; flex-shrink: 0; }
.ss-proj-row > span { font-size: 10px; color: rgba(255,255,255,.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-prog { height: 4px; background: rgba(255,255,255,.1); border-radius: 99px; overflow: hidden; width: 60px; }
.ss-prog div { height: 100%; background: var(--green); border-radius: 99px; }
.ss-status { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 99px; }
.ss-status.ok   { background: rgba(46,212,122,.15); color: var(--green); }
.ss-status.warn { background: rgba(245,158,11,.15); color: var(--warn); }
.ss-status.late { background: rgba(239,68,68,.15);  color: var(--danger); }

/* Floating pills */
.hero-pill {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(15,47,47,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.hero-pill--a { bottom: -16px; left: -30px; animation: float-a 4s ease-in-out infinite; }
.hero-pill--b { top: 24px; right: -24px; animation: float-b 5s ease-in-out infinite; }
@keyframes float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ═══════════════════════════════════════════════════════════
   LOGOS / SOCIAL PROOF
   ═══════════════════════════════════════════════════════════ */
.logos-section {
  background: var(--off-white);
  padding: 56px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-container { max-width: 960px; margin: 0 auto; text-align: center; }
.logos-label { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.logos-label strong { color: var(--text); }
.logos-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 40px; }
.logos-strip span { font-size: 13px; font-weight: 700; color: var(--muted-l); letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; background: #ebebeb; border-radius: 8px; }
.logos-metrics { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.lm-item { padding: 0 32px; text-align: center; }
.lm-item strong { display: block; font-size: 28px; font-weight: 900; color: var(--dark); letter-spacing: -.02em; }
.lm-item span { font-size: 13px; color: var(--muted); }
.lm-sep { width: 1px; height: 48px; background: var(--border); }

/* ═══════════════════════════════════════════════════════════
   FEATURE SECTIONS
   ═══════════════════════════════════════════════════════════ */
.feature-section { padding: 100px 24px; overflow: hidden; }
.feature-section--alt {
  background: var(--dark);
  position: relative;
}
.feature-section--alt::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(46,212,122,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.feature-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 72px;
  position: relative;
}
.feature-container--lr { grid-template-columns: 1fr 1.1fr; }
.feature-container--rl { grid-template-columns: 1.1fr 1fr; }
.feature-container--rl .feature-visual { order: -1; }

.feature-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -.03em; color: var(--text); margin-bottom: 16px;
}
.feature-text--light h2 { color: #fff; }
.feature-text p { font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 480px; margin-bottom: 28px; }
.feature-text--light p { color: rgba(255,255,255,.65); }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); }
.feature-list--light li { color: rgba(255,255,255,.8); }
.feature-list li i { font-size: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.feature-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Feature image frame */
.feat-img-frame { position: relative; border-radius: 20px; overflow: visible; }
.feat-img-frame > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; display: block; }
.feat-img-frame--dark { border-radius: 20px; overflow: hidden; }
.feat-img-frame--dark > img { border-radius: 0; }

/* Project card overlay */
.feat-card {
  position: absolute;
  background: #fff;
  border-radius: var(--rad);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 260px;
}
.feat-card--project { bottom: -28px; right: -28px; max-width: 300px; }
.fcp-header { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; margin-bottom: 14px; }
.fcp-thumb { width: 40px; height: 40px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; }
.fcp-header strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.fcp-header span { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }
.fcp-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 99px; }
.fcp-badge.ok   { background: rgba(46,212,122,.12); color: var(--green-dark); }
.fcp-badge.warn { background: rgba(245,158,11,.12); color: #b45309; }
.fcp-prog { margin-bottom: 12px; }
.fcp-prog-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.fcp-bar { height: 5px; background: var(--border); border-radius: 99px; overflow: hidden; }
.fcp-bar div { height: 100%; background: var(--green); border-radius: 99px; }
.fcp-phases { display: flex; gap: 8px; flex-wrap: wrap; }
.fcp-phase { display: flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 500; color: var(--muted); padding: 3px 8px; background: var(--off-white); border-radius: 99px; }
.fcp-phase.done   { color: var(--green-dark); background: rgba(46,212,122,.1); }
.fcp-phase.active { color: var(--blue); background: rgba(59,130,246,.1); }
.fcp-phase i { font-size: 13px; }

.feat-pill {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 12px; font-weight: 600; color: var(--text);
  white-space: nowrap;
}
.feat-pill--top { top: -18px; left: -18px; }

/* Gantt overlay */
.feat-gantt {
  position: absolute; inset: 0;
  background: rgba(10,28,28,.92);
  backdrop-filter: blur(4px);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.fg-header { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
.fg-header i { font-size: 18px; }
.fg-chip { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 8px; background: rgba(46,212,122,.15); color: var(--green); border-radius: 99px; }
.fg-rows { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fg-row { display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 10px; }
.fg-name { display: flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(255,255,255,.7); white-space: nowrap; }
.fg-thumb { width: 20px; height: 20px; border-radius: 4px; background-size: cover; background-position: center; flex-shrink: 0; }
.fg-track { position: relative; height: 10px; background: rgba(255,255,255,.08); border-radius: 5px; overflow: hidden; }
.fg-bar { position: absolute; top: 0; bottom: 0; border-radius: 5px; }
.fg-bar--g { background: linear-gradient(90deg, var(--green), var(--green-dark)); }
.fg-bar--w { background: linear-gradient(90deg, var(--warn), #d97706); }
.fg-bar--d { background: rgba(255,255,255,.2); }
.fg-alerts { display: flex; flex-direction: column; gap: 6px; }
.fg-alert { display: flex; align-items: flex-start; gap: 7px; padding: 8px 10px; border-radius: 8px; font-size: 11px; color: rgba(255,255,255,.8); }
.fg-alert--w { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.2); }
.fg-alert--g { background: rgba(46,212,122,.1);  border: 1px solid rgba(46,212,122,.2); }
.fg-alert i { flex-shrink: 0; font-size: 14px; margin-top: 1px; }

/* Proposal mockup */
.feat-proposal {
  background: #fff;
  border-radius: var(--rad);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 420px; margin: auto;
}
.fp-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 20px 20px 16px; border-bottom: 1px solid var(--border); }
.fp-logo { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 800; color: var(--dark); }
.fp-logo-icon { width: 22px; height: 22px; background: var(--green); border-radius: 5px; }
.fp-proposta-label { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.fp-status { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #92400e; background: rgba(245,158,11,.1); border-radius: 99px; padding: 4px 10px; }
.fp-client { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.fp-client img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.fp-client strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.fp-client span { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.fp-cover { position: relative; }
.fp-cover img { width: 100%; height: 140px; object-fit: cover; display: block; }
.fp-cover-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 16px 12px; background: linear-gradient(transparent, rgba(0,0,0,.7)); font-size: 14px; font-weight: 700; color: #fff; }
.fp-items { padding: 14px 20px; display: flex; flex-direction: column; gap: 10px; }
.fp-item { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; }
.fp-item > span { font-size: 12px; color: var(--muted); }
.fp-bar { width: 80px; height: 5px; background: var(--border); border-radius: 99px; overflow: hidden; }
.fp-bar div { height: 100%; background: var(--green); border-radius: 99px; }
.fp-val { font-size: 12px; font-weight: 700; color: var(--text); }
.fp-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px 16px; border-top: 1px solid var(--border); }
.fp-total { display: flex; align-items: baseline; gap: 8px; }
.fp-total span { font-size: 12px; color: var(--muted); }
.fp-total strong { font-size: 18px; font-weight: 900; color: var(--text); }
.fp-margin { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.fp-margin strong { color: var(--green-dark); }

/* ═══════════════════════════════════════════════════════════
   MODULE SLIDER
   ═══════════════════════════════════════════════════════════ */
.modules-section { padding: 100px 0; background: var(--off-white); overflow: hidden; }
.modules-head { max-width: 600px; margin: 0 auto 48px; padding: 0 24px; text-align: center; }
.modules-head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; letter-spacing: -.03em; color: var(--text); margin-bottom: 12px; }
.modules-head p { font-size: 16px; color: var(--muted); }
.modules-overflow { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; }
.modules-overflow::-webkit-scrollbar { display: none; }
.modules-track { display: flex; gap: 20px; padding: 8px 40px 24px; width: max-content; cursor: grab; }
.modules-track:active { cursor: grabbing; }
.mod-card {
  width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 28px 24px; flex-shrink: 0;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.mod-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green); }
.mod-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.mod-icon--green  { background: rgba(46,212,122,.12); color: var(--green); }
.mod-icon--blue   { background: rgba(59,130,246,.1);  color: #3B82F6; }
.mod-icon--orange { background: rgba(249,115,22,.1);  color: #F97316; }
.mod-icon--purple { background: rgba(139,92,246,.1);  color: #8B5CF6; }
.mod-icon--teal   { background: rgba(20,184,166,.1);  color: #14B8A6; }
.mod-icon--gold   { background: rgba(245,158,11,.1);  color: var(--warn); }
.mod-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.mod-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; }
.mod-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--green-dark); transition: gap .15s; }
.mod-link:hover { gap: 10px; }
.mod-link--new { color: var(--warn); }

/* ═══════════════════════════════════════════════════════════
   AI SECTION
   ═══════════════════════════════════════════════════════════ */
.ai-section { background: var(--dark); padding: 100px 24px; position: relative; overflow: hidden; }
.ai-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(46,212,122,.1) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.ai-container { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; }
.ai-left h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -.03em; color: #fff; line-height: 1.12; margin-bottom: 16px; }
.ai-left p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 28px; }
.ai-ctas { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }

.ai-chat {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  display: flex; flex-direction: column; gap: 14px;
}
.ai-chat-header { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ai-chat-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--dark); }
.ai-chat-header strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.ai-live { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--green); }
.ai-live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 1.8s ease infinite; }
.ai-analyzing { font-size: 12px; color: rgba(255,255,255,.4); font-style: italic; padding-left: 4px; }
.ai-insight { display: flex; gap: 12px; padding: 12px 14px; border-radius: 12px; }
.ai-insight-ico { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.ai-insight--warn { background: rgba(245,158,11,.1);  border: 1px solid rgba(245,158,11,.2); }
.ai-insight--warn .ai-insight-ico { background: rgba(245,158,11,.15); color: var(--warn); }
.ai-insight--green { background: rgba(46,212,122,.08); border: 1px solid rgba(46,212,122,.18); }
.ai-insight--green .ai-insight-ico { background: rgba(46,212,122,.15); color: var(--green); }
.ai-insight--blue { background: rgba(59,130,246,.08);  border: 1px solid rgba(59,130,246,.18); }
.ai-insight--blue .ai-insight-ico { background: rgba(59,130,246,.15); color: var(--blue); }
.ai-insight strong { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 3px; }
.ai-insight p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }
.ai-input { display: flex; gap: 8px; margin-top: 4px; }
.ai-input input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 9px 14px; font-size: 13px; color: rgba(255,255,255,.5); font-family: inherit; outline: none; }
.ai-send { width: 38px; height: 38px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--dark); transition: background .15s; }
.ai-send:hover { background: var(--green-dark); }

/* ═══════════════════════════════════════════════════════════
   SEGMENTS
   ═══════════════════════════════════════════════════════════ */
.segments-section { padding: 100px 24px; background: #fff; }
.seg-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.seg-head h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -.03em; color: var(--text); margin-bottom: 12px; }
.seg-head p { font-size: 16px; color: var(--muted); }
.seg-tabs-nav { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.seg-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  background: var(--off-white); border: 1.5px solid transparent;
  transition: all .18s;
}
.seg-tab i { font-size: 17px; }
.seg-tab:hover { background: var(--green-dim); color: var(--text); }
.seg-tab.active { background: var(--green-dim); color: var(--dark); border-color: rgba(46,212,122,.4); }
.seg-content { max-width: 1100px; margin: 0 auto; }
.seg-pane { display: none; }
.seg-pane.active { display: block; }
.seg-pane-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.seg-text h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.seg-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.seg-text .feature-list { margin-bottom: 28px; }
.seg-visual { position: relative; }
.seg-photo { width: 100%; border-radius: 18px; aspect-ratio: 4/3; object-fit: cover; display: block; }
.seg-card { position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: var(--rad); box-shadow: var(--shadow-lg); padding: 16px 18px; min-width: 220px; }
.seg-card-label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.seg-card-label i { font-size: 14px; color: var(--green); }
.seg-proj-mini { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.spm-row { display: flex; align-items: center; gap: 7px; font-size: 12px; }
.spm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.spm-row span { flex: 1; color: var(--muted); }
.spm-row strong { font-size: 12px; font-weight: 700; color: var(--text); }
.seg-card-footer { display: flex; justify-content: space-between; align-items: baseline; padding-top: 8px; border-top: 1px solid var(--border); font-size: 12px; }
.seg-card-footer span { color: var(--muted); }
.seg-card-footer strong { color: var(--text); font-weight: 800; }

/* ═══════════════════════════════════════════════════════════
   AWARDS / TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.awards-section { padding: 100px 24px; background: var(--off-white); }
.awards-container { max-width: 1100px; margin: 0 auto; }
.awards-head { text-align: center; margin-bottom: 56px; }
.awards-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -.03em; color: var(--text); margin-bottom: 8px; }
.awards-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 60px; }
.aw-badge { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 24px 32px; text-align: center; min-width: 180px; box-shadow: var(--shadow-sm); }
.aw-stars { color: var(--warn); font-size: 16px; display: flex; gap: 4px; justify-content: center; margin-bottom: 8px; }
.aw-score { font-size: 22px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.aw-source { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.aw-tag { font-size: 11px; font-weight: 600; color: var(--green-dark); background: rgba(46,212,122,.1); padding: 3px 10px; border-radius: 99px; display: inline-block; }
.aw-trophy { background: var(--dark); border-radius: var(--rad); padding: 24px 32px; text-align: center; min-width: 200px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.aw-trophy-title { font-size: 15px; font-weight: 800; color: #fff; }
.aw-trophy-sub { font-size: 12px; color: rgba(255,255,255,.5); }
.testimonials-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; transition: box-shadow .2s, transform .2s; }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-card--featured { background: var(--dark); border-color: transparent; }
.testi-quote { color: var(--green); font-size: 28px; }
.testi-card blockquote { font-size: 14px; line-height: 1.7; color: var(--text); flex: 1; }
.testi-card--featured blockquote { color: rgba(255,255,255,.85); }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.testi-card--featured .testi-author { border-top-color: rgba(255,255,255,.1); }
.testi-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.testi-card--featured .testi-author strong { color: #fff; }
.testi-author span { font-size: 12px; color: var(--muted); }
.testi-card--featured .testi-author span { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════════════════════════ */
.integrations-section { padding: 100px 24px; background: #fff; }
.integ-container { max-width: 900px; margin: 0 auto; text-align: center; }
.integ-container h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -.03em; color: var(--text); margin-bottom: 12px; }
.integ-container > p { font-size: 16px; color: var(--muted); margin-bottom: 52px; }
.integ-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.integ-item { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px 16px; border: 1px solid var(--border); border-radius: var(--rad); transition: box-shadow .18s, transform .18s, border-color .18s; }
.integ-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--green); }
.integ-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.integ-item span { font-size: 13px; font-weight: 600; color: var(--text); }
.integ-more { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 14px; color: var(--muted); }
.integ-more i { font-size: 17px; color: var(--green); }
.integ-more a { color: var(--green-dark); font-weight: 600; text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color .15s; }
.integ-more a:hover { text-decoration-color: var(--green-dark); }

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing-section { padding: 100px 24px; background: var(--off-white); }
.pricing-container { max-width: 1060px; margin: 0 auto; text-align: center; }
.pricing-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -.03em; color: var(--text); margin-bottom: 10px; }
.pricing-sub { font-size: 17px; color: var(--muted); margin-bottom: 52px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; text-align: left; margin-bottom: 32px; }
.price-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px 28px; position: relative; transition: box-shadow .2s, transform .2s; }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.price-card--hi { background: var(--dark); border-color: var(--green); box-shadow: 0 12px 40px rgba(46,212,122,.2); transform: scale(1.03); }
.price-card--hi:hover { transform: scale(1.03) translateY(-4px); }
.pc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--dark); background: var(--green); padding: 4px 12px; border-radius: 99px; margin-bottom: 18px; }
.pc-top { margin-bottom: 24px; }
.pc-plan { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.price-card--hi .pc-plan { color: rgba(255,255,255,.5); }
.pc-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.pc-curr { font-size: 18px; font-weight: 700; color: var(--text); }
.pc-val  { font-size: 46px; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1; }
.pc-per  { font-size: 14px; color: var(--muted); }
.price-card--hi .pc-curr, .price-card--hi .pc-val { color: #fff; }
.price-card--hi .pc-per { color: rgba(255,255,255,.5); }
.pc-desc { font-size: 13px; color: var(--muted); }
.price-card--hi .pc-desc { color: rgba(255,255,255,.55); }
.pc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--text); }
.price-card--hi .pc-list li { color: rgba(255,255,255,.85); }
.pc-list li i { font-size: 17px; color: var(--green); flex-shrink: 0; }
.pc-list li.off { color: var(--muted-l); }
.pc-list li.off i { color: var(--muted-l); }
.pc-btn { display: block; text-align: center; padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 700; transition: all .18s; }
.pc-btn--outline { border: 1.5px solid var(--border); color: var(--text); }
.pc-btn--outline:hover { border-color: var(--green); background: var(--green-dim); }
.pc-btn--green { background: var(--green); color: var(--dark); }
.pc-btn--green:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(46,212,122,.35); }
.pc-note { text-align: center; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 10px; }
.pc-annual-note { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.pricing-guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--muted); }
.pricing-guarantee i { font-size: 20px; color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.final-cta { position: relative; padding: 120px 24px; overflow: hidden; text-align: center; }
.fca-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.fca-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,28,28,.92) 0%, rgba(15,47,47,.85) 100%); }
.fca-inner { position: relative; max-width: 680px; margin: 0 auto; }
.fca-inner h2 { font-size: clamp(38px, 6vw, 64px); font-weight: 900; letter-spacing: -.04em; color: #fff; line-height: 1.05; margin-bottom: 20px; }
.fca-inner p { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 40px; }
.fca-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.fca-note { font-size: 13px; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,.08); }
.footer-top { max-width: 1160px; margin: 0 auto; padding: 72px 24px 48px; display: grid; grid-template-columns: 280px 1fr; gap: 60px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-top: 16px; margin-bottom: 24px; max-width: 220px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,255,255,.55); transition: background .15s, color .15s; }
.footer-socials a:hover { background: rgba(46,212,122,.15); color: var(--green); }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-new { font-size: 9px; font-weight: 700; padding: 2px 6px; background: var(--green); color: var(--dark); border-radius: 99px; letter-spacing: .04em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); max-width: 1160px; margin: 0 auto; padding: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .feature-container--lr,
  .feature-container--rl { grid-template-columns: 1fr; gap: 40px; }
  .feature-container--rl .feature-visual { order: 0; }
  .ai-container { grid-template-columns: 1fr; gap: 48px; }
  .seg-pane-inner { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card--hi { transform: scale(1); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .navbar.open .nav-menu { display: flex; }
  .nav-actions .btn-outline { display: none; }
  .burger { display: flex; }
  .dropdown { display: none !important; }
  .modules-track { padding: 8px 20px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .integ-grid { grid-template-columns: repeat(2,1fr); }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .logos-metrics { flex-direction: column; gap: 20px; }
  .lm-sep { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .awards-badges { flex-direction: column; align-items: center; }
  .seg-pane-inner { grid-template-columns: 1fr; }
  .seg-card { position: static; margin-top: 20px; }
  .feat-card { display: none; }
  .feat-pill { display: none; }
}

@media (max-width: 480px) {
  .feature-section, .modules-section, .ai-section,
  .segments-section, .awards-section, .integrations-section,
  .pricing-section { padding: 70px 18px; }
  .integ-grid { grid-template-columns: repeat(2,1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-actions .btn-ghost { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SIGNUP MODAL
   ═══════════════════════════════════════════════════════════ */
.signup-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
}
.signup-modal.open { opacity: 1; visibility: visible; }
.signup-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
}
.signup-modal-box {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px;
  padding: 40px 36px; width: 100%; max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  transform: translateY(16px); transition: transform .2s;
  margin: 16px;
}
.signup-modal.open .signup-modal-box { transform: none; }
.signup-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--off-white); color: var(--muted);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.signup-modal-close:hover { background: var(--border); color: var(--text); }
.signup-modal-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 800; color: var(--dark);
  margin-bottom: 24px;
}
.signup-modal-logo img { height: 28px; width: auto; }
.signup-modal-box h2 {
  font-size: 22px; font-weight: 900; color: var(--text);
  letter-spacing: -.02em; margin-bottom: 6px;
}
.signup-modal-box > p {
  font-size: 14px; color: var(--muted); margin-bottom: 28px;
}
.signup-plan-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-dim); border: 1px solid rgba(46,212,122,.3);
  color: var(--green-dark); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 20px;
}
.signup-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.signup-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.signup-field input {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; font-family: inherit;
  color: var(--text); outline: none; transition: border-color .15s;
}
.signup-field input:focus { border-color: var(--green); }
.signup-field input::placeholder { color: var(--muted-l); }
.signup-submit {
  width: 100%; justify-content: center;
  padding: 13px; font-size: 15px; border-radius: 12px;
  margin-top: 6px; margin-bottom: 14px;
}
.signup-terms {
  font-size: 11px; color: var(--muted); text-align: center; line-height: 1.5;
}
.signup-terms a { color: var(--green-dark); text-decoration: underline; }
.signup-loading {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 32px 0; color: var(--muted); font-size: 14px;
}
.signup-loading i { font-size: 32px; color: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }
.signup-loading i { animation: spin .8s linear infinite; }
.signup-error {
  background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2);
  color: #b91c1c; border-radius: 10px; padding: 10px 14px;
  font-size: 13px; margin-top: 12px; display: none;
}

/* ═══════════════════════════════════════════════════════════
   NAV EXTENSIONS (v3 multi-page)
   ═══════════════════════════════════════════════════════════ */
.nav-logo-svg {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}
.nav-link--active-page {
  color: var(--dark);
  font-weight: 600;
}
.nav-link--active-page::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 99px;
  margin-top: -2px;
}

/* Nav action buttons (light surface) */
.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: 1.5px solid var(--border);
  transition: border-color .18s, background .18s;
}
.btn-ghost-nav:hover { border-color: var(--green); background: var(--green-dim); }

.btn-outline-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  transition: color .15s;
}
.btn-outline-nav:hover { color: var(--dark); }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (solucoes.html / precos.html)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}
.page-hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(46,212,122,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-bg-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, transparent 0%, var(--dark) 75%);
}
.page-hero-container {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.03em;
  margin: 0;
}
.page-hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 540px;
}

/* Pricing hero variant */
.page-hero--pricing .page-hero-container { gap: 16px; }
.page-hero-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px;
  padding: 5px 6px 5px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}
.page-hero-toggle-pill {
  background: var(--green);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   MODULES GRID (solucoes.html)
   ═══════════════════════════════════════════════════════════ */
.modules-grid-section {
  padding: 90px 24px;
  background: var(--off-white);
}
.mg-container {
  max-width: 1200px;
  margin: 0 auto;
}
.mg-container > .eyebrow { display: flex; justify-content: center; margin-bottom: 12px; }
.mg-container > h2 {
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 52px;
}
.mg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  overflow: hidden;
}
.mg-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--green); }
.mg-card-top { display: flex; align-items: center; justify-content: space-between; }
.mg-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.mg-icon--green  { background: rgba(46,212,122,.12); color: var(--green); }
.mg-icon--blue   { background: rgba(59,130,246,.1);  color: #3B82F6; }
.mg-icon--orange { background: rgba(249,115,22,.1);  color: #F97316; }
.mg-icon--purple { background: rgba(139,92,246,.1);  color: #8B5CF6; }
.mg-icon--teal   { background: rgba(20,184,166,.1);  color: #14B8A6; }
.mg-icon--gold   { background: rgba(245,158,11,.1);  color: var(--warn); }
.mg-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  background: var(--off-white);
  padding: 3px 10px;
  border-radius: 99px;
}
.mg-badge--highlight {
  background: rgba(46,212,122,.12);
  color: var(--green-dark);
}
.mg-card h3 { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.3; }
.mg-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.mg-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.mg-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
}
.mg-list li i { font-size: 16px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.mg-visual {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 4px;
}
.mg-visual img {
  width: 100%; height: 160px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.mg-card:hover .mg-visual img { transform: scale(1.04); }

/* ═══════════════════════════════════════════════════════════
   PROFESSIONAL SECTIONS (solucoes.html)
   ═══════════════════════════════════════════════════════════ */
.prof-section { padding: 90px 24px; background: #fff; }
.prof-section--alt { background: var(--off-white); }
.prof-container { max-width: 1120px; margin: 0 auto; }
.prof-head {
  text-align: center;
  margin-bottom: 52px;
}
.prof-head h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
  margin-top: 10px;
}
.prof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.prof-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.prof-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prof-section--alt .prof-card { background: #fff; }
.prof-img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.prof-card:hover .prof-img { transform: scale(1.04); }
.prof-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prof-card-body h3 { font-size: 18px; font-weight: 800; color: var(--text); }
.prof-card-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Single (studios) layout */
.prof-single {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  background: #fff;
}
.prof-wide-img {
  width: 100%; height: 320px;
  object-fit: cover;
  display: block;
}
.prof-single-body { padding: 36px 36px 40px; }
.prof-single-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.prof-single-cols h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.prof-single-cols p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   INTEGRATIONS — extensions
   ═══════════════════════════════════════════════════════════ */
.integ-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(107,114,128,.1);
  color: var(--muted);
}
.integ-badge--green {
  background: rgba(46,212,122,.12);
  color: var(--green-dark);
}
.integ-item--soon {
  opacity: 0.65;
  position: relative;
}
.integ-item--soon:hover { opacity: 1; }
.integ-item--api {
  border-color: rgba(46,212,122,.3);
  background: rgba(46,212,122,.04);
}
.integ-icon--api {
  background: rgba(46,212,122,.12);
  color: var(--green);
  font-size: 26px;
}

/* API CTA box */
.api-cta-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--dark);
  border-radius: var(--rad);
  text-align: left;
}
.api-cta-icon {
  width: 52px; height: 52px;
  background: rgba(46,212,122,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--green);
  flex-shrink: 0;
}
.api-cta-box > div { flex: 1; }
.api-cta-box strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.api-cta-box p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE VIVA SECTION (index.html)
   ═══════════════════════════════════════════════════════════ */
.experience-section {
  padding: 100px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.experience-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(46,212,122,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.exp-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.exp-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.exp-text p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.exp-text p strong { color: var(--green); font-weight: 700; }
.exp-benefits { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.exp-benefit { display: flex; align-items: flex-start; gap: 14px; }
.exp-benefit-icon {
  width: 40px; height: 40px;
  background: rgba(46,212,122,.12);
  border: 1px solid rgba(46,212,122,.2);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--green);
  flex-shrink: 0;
}
.exp-benefit > div strong { display: block; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 4px; }
.exp-benefit > div span  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ─── iPhone 15 Pro Mockup ───────────────────────── */
.exp-visual { position: relative; display: flex; justify-content: center; padding: 30px 0; }

.iphone-wrap {
  position: relative;
  width: 270px;
  flex-shrink: 0;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.6));
}

/* Frame principal */
.iphone-device {
  position: relative;
  background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 40%, #2c2c2e 100%);
  border-radius: 52px;
  padding: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 0 0 2px rgba(0,0,0,.6),
    0 0 0 1px rgba(0,0,0,.8);
}

/* Botão power (direita) */
.iphone-device::before {
  content: '';
  position: absolute;
  right: -3px; top: 110px;
  width: 3px; height: 64px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c);
  border-radius: 0 3px 3px 0;
  box-shadow: inset -1px 0 0 rgba(255,255,255,.1);
}

/* Botões volume (esquerda) */
.iphone-device::after {
  content: '';
  position: absolute;
  left: -3px; top: 90px;
  width: 3px; height: 40px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c);
  border-radius: 3px 0 0 3px;
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,.1),
    0 52px 0 rgba(50,50,52,1),
    0 52px 0 1px rgba(0,0,0,.8),
    0 52px 0 -1px rgba(255,255,255,.08),
    0 96px 0 rgba(50,50,52,1),
    0 96px 0 1px rgba(0,0,0,.8);
  height: 32px;
}

/* Tela */
.iphone-screen {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Dynamic Island */
.iphone-island {
  width: 88px; height: 30px;
  background: #000;
  border-radius: 20px;
  margin: 10px auto 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Status bar */
.iphone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 18px 2px;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.iphone-statusbar-icons { display: flex; align-items: center; gap: 4px; }

/* App content */
.iphone-app {
  flex: 1;
  overflow: hidden;
  background: #fff;
}

/* Home indicator */
.iphone-home-bar {
  width: 120px; height: 5px;
  background: #000;
  border-radius: 99px;
  margin: 8px auto 10px;
  opacity: .2;
  flex-shrink: 0;
}
.epc-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--border);
}
.epc-logo-small { flex-shrink: 0; }
.epc-header span { font-size: 11px; font-weight: 700; color: var(--dark); }
.epc-project-cover { position: relative; }
.epc-project-cover img { width: 100%; height: 100px; object-fit: cover; display: block; }
.epc-cover-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 10px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  font-size: 10px; font-weight: 700; color: #fff;
}
.epc-progress { padding: 10px 14px 0; }
.epc-progress-label { display: flex; justify-content: space-between; font-size: 9.5px; color: var(--muted); margin-bottom: 5px; }
.epc-pct { font-weight: 700; color: var(--green-dark); }
.epc-bar { height: 5px; background: var(--border); border-radius: 99px; overflow: hidden; }
.epc-bar div { height: 100%; background: var(--green); border-radius: 99px; }
.epc-phases { padding: 10px 14px; display: flex; flex-direction: column; gap: 5px; }
.epc-phase { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 500; color: var(--muted); }
.epc-phase i { font-size: 14px; flex-shrink: 0; }
.epc-phase.done { color: var(--green-dark); }
.epc-phase.done i { color: var(--green); }
.epc-phase.active { color: var(--blue); font-weight: 600; }
.epc-phase.active i { color: var(--blue); }
.epc-action { padding: 6px 14px 0; }
.epc-approve-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 9px;
  background: var(--green); color: var(--dark);
  border: none; border-radius: 9px;
  font-size: 11px; font-weight: 700; cursor: pointer;
  transition: background .15s;
}
.epc-approve-btn:hover { background: var(--green-dark); }

/* Floating notifications */
.exp-float {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(15,47,47,.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  white-space: nowrap;
}
.exp-float--top  { top: -10px; right: -20px; animation: float-b 5s ease-in-out infinite; }
.exp-float--bottom { bottom: -10px; left: -20px; animation: float-a 4s ease-in-out infinite; }
.exp-float-icon {
  width: 30px; height: 30px;
  background: rgba(239,68,68,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.exp-float-av { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.exp-float strong { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); }
.exp-float span { display: block; font-size: 11px; color: rgba(255,255,255,.5); margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE EXTENSIONS
   ═══════════════════════════════════════════════════════════ */
.pricing-page-section { padding: 80px 24px 100px; background: var(--off-white); }

/* ── Billing toggle ── */
.billing-toggle {
  display: inline-flex;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto 40px;
  gap: 4px;
}
.bt-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.bt-opt--active {
  background: var(--dark);
  color: #fff;
}
.bt-save {
  background: var(--green);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.pricing-compare-section { padding: 80px 24px 100px; background: #fff; }
.pc-compare-container { max-width: 900px; margin: 0 auto; }
.pc-compare-container h2 {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.pc-compare-container > p { text-align: center; font-size: 15px; color: var(--muted); margin-bottom: 48px; }

/* Compare table */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.compare-table thead th { font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); background: var(--off-white); }
.compare-table thead th:first-child { border-radius: 12px 0 0 0; }
.compare-table thead th:last-child  { border-radius: 0 12px 0 0; }
.compare-table .ct-feature { font-size: 13.5px; color: var(--text); font-weight: 500; }
.compare-table .ct-check { color: var(--green); font-size: 18px; text-align: center; }
.compare-table .ct-dash  { color: var(--muted-l); font-size: 18px; text-align: center; }
.compare-table .ct-text  { font-size: 12px; color: var(--text); font-weight: 600; text-align: center; }
.compare-table .ct-hi   { background: rgba(46,212,122,.04); }
.compare-table .ct-section-row td { background: var(--off-white); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: 8px 16px; }

/* Pricing FAQ */
.pricing-faq-section { padding: 80px 24px 100px; background: var(--off-white); }
.pf-container { max-width: 720px; margin: 0 auto; }
.pf-container h2 { text-align: center; font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer;
  gap: 12px;
}
.faq-q i { font-size: 20px; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--green); }
.faq-a { display: none; padding: 0 0 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* Pricing guarantee strip */
.pricing-guarantee-strip {
  padding: 40px 24px;
  background: var(--dark);
  text-align: center;
}
.pgs-inner { max-width: 800px; margin: 0 auto; }
.pgs-inner h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pgs-inner p { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.pgs-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.pgs-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8);
}
.pgs-badge i { font-size: 22px; color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — new sections
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-container { grid-template-columns: 1fr; gap: 48px; }
  .exp-visual { justify-content: center; }
  .mg-grid { grid-template-columns: repeat(2, 1fr); }
  .prof-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .prof-single-cols { grid-template-columns: 1fr; gap: 20px; }
  .api-cta-box { flex-direction: column; text-align: center; }
  .api-cta-box > div { text-align: center; }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 56px) 18px 60px; }
  .exp-float--top, .exp-float--bottom { display: none; }
  .mg-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .modules-grid-section, .prof-section, .experience-section { padding: 70px 18px; }
  .prof-wide-img { height: 200px; }
  .prof-single-body { padding: 24px 20px 28px; }
  .page-hero-toggle { flex-direction: column; gap: 6px; padding: 10px 12px; text-align: center; }
}

@media (max-width: 480px) {
  .exp-phone { width: 240px; }
  .btn-ghost-nav { display: none; }
  .btn-outline-nav { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}
