/* ─────────────────────────────────────────────
   ENZO IA — Design System
   Stack: HTML5 + CSS3 puro, zero frameworks
   Font: Plus Jakarta Sans (Google Fonts)
   ───────────────────────────────────────────── */

/* ─── 1. DESIGN TOKENS ─── */
:root {
  /* Brand */
  --primary:        #4F46E5;
  --primary-dark:   #3730A3;
  --primary-light:  #818CF8;
  --primary-soft:   #EEF2FF;
  --accent:         #7C3AED;
  --gradient-brand: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --gradient-hero:  radial-gradient(ellipse 90% 70% at 50% -10%, rgba(79,70,229,0.13) 0%, transparent 65%), linear-gradient(180deg, #F5F4FF 0%, #FFFFFF 55%);

  /* Text */
  --text-900: #0F172A;
  --text-700: #1E293B;
  --text-500: #475569;
  --text-400: #64748B;
  --text-300: #94A3B8;
  --text-inv: #FFFFFF;

  /* Surfaces */
  --surface:     #FFFFFF;
  --surface-alt: #F8FAFC;
  --surface-2:   #F1F5F9;
  --border:      #E2E8F0;
  --border-light: #F1F5F9;

  /* Semantic */
  --success: #10B981;
  --warning: #F59E0B;
  --error:   #EF4444;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.04);
  --shadow-xl: 0 24px 48px rgba(15,23,42,0.10), 0 8px 16px rgba(15,23,42,0.04);
  --shadow-brand: 0 8px 32px rgba(79,70,229,0.28);

  /* Transitions */
  --fast: 150ms ease;
  --base: 250ms ease;
  --slow: 400ms cubic-bezier(0.4,0,0.2,1);

  /* Container */
  --container: 1180px;
  --container-pad: var(--space-6);
}

/* ─── 2. RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text-900);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

/* ─── 3. TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: var(--text-xl); font-weight: 600; }
h4 { font-size: var(--text-lg); font-weight: 600; }
p { color: var(--text-500); line-height: 1.7; }
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── 4. LAYOUT UTILITIES ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section {
  padding: var(--space-20) 0;
}
.section--alt {
  background: var(--surface-alt);
}
.section--dark {
  background: var(--text-900);
  color: var(--text-inv);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-12);
}
.section-header h2 { margin: var(--space-3) 0 var(--space-4); }
.section-header p { font-size: var(--text-lg); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ─── 5. SHARED COMPONENTS ─── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--gradient-brand);
  color: var(--text-inv);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79,70,229,0.35);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--secondary:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-500);
}
.btn--ghost:hover { color: var(--primary); }

.btn--lg { padding: 16px 32px; font-size: var(--text-lg); }
.btn--sm { padding: 10px 18px; font-size: var(--text-sm); }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.badge--success { background: #ECFDF5; color: #065F46; }
.badge--neutral { background: var(--surface-2); color: var(--text-500); }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--base);
}
.card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card--feature {
  position: relative;
  overflow: hidden;
}
.card--feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--base);
}
.card--feature:hover::before { opacity: 1; }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--primary);
  transition: background var(--base);
}
.card:hover .card__icon { background: var(--primary); color: white; }
.card__title { margin-bottom: var(--space-2); }
.card__description { font-size: var(--text-sm); color: var(--text-500); line-height: 1.6; }

/* Trust Badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-500);
}
.trust-badge svg { color: var(--success); flex-shrink: 0; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: var(--space-3); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-700);
}
.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── 5a. NAVIGATION ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--space-6);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--text-900);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-1);
  margin: 0 auto;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-500);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--fast);
}
.nav__links a:hover { color: var(--primary); background: var(--primary-soft); }
.nav__actions { display: flex; align-items: center; gap: var(--space-3); margin-left: auto; }
.nav__cta { padding: 10px 20px; font-size: var(--text-sm); }

/* Mobile hamburger (CSS-only) */
.nav__toggle-input { display: none; }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--fast);
}
.nav__hamburger:hover { background: var(--surface-2); }
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text-700);
  border-radius: 2px;
  transition: all var(--base);
}
.nav__toggle-input:checked ~ .nav__mobile-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) var(--space-6);
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
  z-index: 99;
}
.nav__mobile-menu {
  display: none;
}
.nav__mobile-menu a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-700);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background var(--fast);
}
.nav__mobile-menu a:hover { background: var(--surface-2); color: var(--primary); }
.nav__mobile-menu .btn { width: 100%; justify-content: center; margin-top: var(--space-2); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

/* ─── 5b. FOOTER ─── */
.footer {
  background: var(--text-900);
  color: var(--text-300);
  padding: var(--space-16) 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) {
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 2fr; }
}

.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin: var(--space-4) 0 var(--space-6);
  max-width: 280px;
}
.footer__logo-text {
  font-size: var(--text-xl);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.footer__trust-item svg { color: var(--success); flex-shrink: 0; }

.footer__col h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--fast);
}
.footer__col ul a:hover { color: white; }

.footer__company h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer__company address {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer__company address strong { color: rgba(255,255,255,0.8); }
.footer__company address a {
  color: rgba(255,255,255,0.5);
  transition: color var(--fast);
}
.footer__company address a:hover { color: white; }
.footer__hours {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-4);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}
.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__bottom-links a {
  color: rgba(255,255,255,0.3);
  transition: color var(--fast);
}
.footer__bottom-links a:hover { color: white; }

/* ─── 6. HERO ─── */
.hero {
  background: var(--gradient-hero);
  padding: var(--space-20) 0 var(--space-24);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(79,70,229,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(79,70,229,0.2);
  margin-bottom: var(--space-6);
}
.hero__heading {
  max-width: 800px;
  margin-bottom: var(--space-5);
}
.hero__subheading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-500);
  max-width: 580px;
  margin-bottom: var(--space-8);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}
.hero__visual {
  max-width: 900px;
  margin: 0 auto;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  overflow: hidden;
}
.mockup-bar {
  background: var(--surface-2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot--red { background: #FE5F57; }
.mockup-dot--yellow { background: #FEBC2E; }
.mockup-dot--green { background: #28C840; }
.mockup-url {
  flex: 1;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-400);
  margin-left: 8px;
}
.mockup-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 280px;
}
@media (max-width: 600px) {
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
}
.mockup-sidebar {
  background: var(--surface-alt);
  border-right: 1px solid var(--border);
  padding: var(--space-4);
}
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-400);
  margin-bottom: 2px;
}
.mockup-nav-item--active {
  background: var(--primary-soft);
  color: var(--primary);
}
.mockup-nav-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.3;
}
.mockup-nav-item--active .mockup-nav-icon { opacity: 1; }
.mockup-main {
  padding: var(--space-4) var(--space-5);
}
.mockup-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-700);
  margin-bottom: var(--space-4);
}
.mockup-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-700);
}
.mockup-task--done { color: var(--text-300); text-decoration: line-through; }
.mockup-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.mockup-check--done {
  background: var(--success);
  border-color: var(--success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.mockup-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.mockup-tag--alta { background: #FEE2E2; color: #991B1B; }
.mockup-tag--media { background: #FEF3C7; color: #92400E; }
.mockup-tag--baixa { background: #ECFDF5; color: #065F46; }
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: var(--space-4);
}
.mockup-stat-card {
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.mockup-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.mockup-stat-label {
  font-size: 10px;
  color: var(--text-400);
  margin-top: 2px;
}

/* ─── 7. PRODUCT SECTION ─── */
.product-section { }
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}
.product-col h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  color: var(--text-900);
}
.pricing-box {
  background: var(--primary-soft);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.pricing-box p { color: var(--text-700); margin-bottom: var(--space-3); font-size: var(--text-sm); }
.pricing-box p:last-child { margin-bottom: 0; }
.pricing-box strong { color: var(--primary-dark); }
.pricing-box a { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* ─── 8. FEATURES ─── */
.features-grid { }

/* ─── 9. HOW IT WORKS ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  counter-reset: steps;
}
.step {
  display: flex;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  position: relative;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  font-weight: 800;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-brand);
}
.step__content { padding-top: 10px; }
.step__content h3 { margin-bottom: var(--space-2); }
.step__content p { font-size: var(--text-base); }

/* ─── 10. PERSONAS ─── */
.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--base);
}
.persona-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.persona-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 24px;
}
.persona-card h3 { margin-bottom: var(--space-2); }
.persona-card p { font-size: var(--text-sm); }

/* ─── 11. SOCIAL PROOF ─── */
.stats-bar {
  text-align: center;
  margin-bottom: var(--space-12);
}
.stat-item { padding: var(--space-4); }
.stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-label { font-size: var(--text-sm); color: var(--text-400); font-weight: 500; }

.card--testimonial { position: relative; }
.testimonial-stars {
  font-size: var(--text-lg);
  color: #F59E0B;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: var(--text-base);
  color: var(--text-700);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-900);
  display: block;
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-400);
}

/* ─── 12. FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: box-shadow var(--base);
}
details.faq-item:hover { box-shadow: var(--shadow-sm); }
details.faq-item[open] {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}
summary.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-900);
  list-style: none;
  gap: var(--space-4);
  user-select: none;
}
summary.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
details.faq-item[open] .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--text-500);
  line-height: 1.7;
}
.faq-answer a { color: var(--primary); font-weight: 500; }

/* ─── 13. CTA FINAL ─── */
.cta-final {
  background: var(--gradient-brand);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final h2 { color: white; max-width: 600px; margin: 0 auto var(--space-4); }
.cta-final p { color: rgba(255,255,255,0.75); margin-bottom: var(--space-8); font-size: var(--text-lg); }
.cta-final .btn--white {
  background: white;
  color: var(--primary-dark);
  font-weight: 700;
}
.cta-final .btn--white:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.cta-guarantee {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ─── 13b. SIGNUP BOX ─── */
.signup-box {
  margin-top: var(--space-12);
  background: var(--gradient-brand);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  position: relative;
  overflow: hidden;
}
.signup-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.signup-box__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.signup-box__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: var(--space-4);
}
.signup-box__inner h3 {
  color: white;
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
}
.signup-box__inner > p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}
.signup-form__fields {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: flex-end;
  justify-content: center;
}
.signup-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 180px;
}
.signup-form__group label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-align: left;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.signup-form__group input {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: var(--text-base);
  font-family: var(--font);
  outline: none;
  transition: border-color var(--fast), background var(--fast);
  width: 100%;
}
.signup-form__group input::placeholder { color: rgba(255,255,255,0.45); }
.signup-form__group input:focus {
  border-color: white;
  background: rgba(255,255,255,0.2);
}
.signup-form__btn {
  background: white;
  color: var(--primary-dark);
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 28px;
}
.signup-form__btn:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.signup-form__privacy {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.signup-form__privacy a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.signup-box__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 640px) {
  .signup-form__fields { flex-direction: column; }
  .signup-form__group { min-width: 100%; }
  .signup-form__btn { width: 100%; justify-content: center; }
  .signup-box { padding: var(--space-8) var(--space-5); }
}

/* ─── 14. PAGE HERO (Secondary pages) ─── */
.page-hero {
  background: var(--gradient-hero);
  padding: var(--space-16) 0 var(--space-12);
  border-bottom: 1px solid var(--border);
}
.page-hero .badge { margin-bottom: var(--space-4); }
.page-hero h1 { margin-bottom: var(--space-4); }
.page-hero p { font-size: var(--text-lg); max-width: 560px; }

/* ─── 15. POLICY CONTENT ─── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-10) 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--primary-soft);
  color: var(--text-900);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 {
  font-size: var(--text-lg);
  margin: var(--space-6) 0 var(--space-3);
  color: var(--text-700);
}
.policy-content p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  color: var(--text-500);
  line-height: 1.8;
}
.policy-content ul, .policy-content ol {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li {
  font-size: var(--text-base);
  color: var(--text-500);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}
.policy-content a { color: var(--primary); font-weight: 500; }
.policy-content strong { color: var(--text-700); }
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-5) 0;
  font-size: var(--text-sm);
}
.policy-content table th {
  background: var(--surface-2);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-weight: 600;
  color: var(--text-700);
  border: 1px solid var(--border);
}
.policy-content table td {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  color: var(--text-500);
  vertical-align: top;
}
.policy-content table tr:nth-child(even) td { background: var(--surface-alt); }
.policy-update {
  background: var(--primary-soft);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: var(--primary-dark);
  font-weight: 500;
}

/* ─── 16. CONTACT PAGE ─── */
.contact-methods {
  margin-bottom: var(--space-12);
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--base);
}
.contact-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}
.contact-card h3 { margin-bottom: var(--space-2); }
.contact-card p { font-size: var(--text-sm); margin-bottom: var(--space-3); }
.contact-card a {
  color: var(--primary);
  font-weight: 600;
  font-size: var(--text-base);
  transition: color var(--fast);
}
.contact-card a:hover { color: var(--primary-dark); }

/* Contact Form */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-700);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--text-900);
  background: var(--surface);
  transition: border-color var(--fast), box-shadow var(--fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  font-size: var(--text-xs);
  color: var(--text-400);
  margin-top: var(--space-4);
}
.form-privacy a { color: var(--primary); }
.form-submit { width: 100%; justify-content: center; }

/* ─── 17. ABOUT PAGE ─── */
.values-grid { }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--base);
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 22px;
}
.company-info-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.company-info-box dl { display: grid; grid-template-columns: auto 1fr; gap: var(--space-3) var(--space-8); }
.company-info-box dt {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-700);
  white-space: nowrap;
}
.company-info-box dd {
  font-size: var(--text-sm);
  color: var(--text-500);
}
.company-info-box dd a { color: var(--primary); font-weight: 500; }

.team-card {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.team-info h3 { margin-bottom: 4px; }
.team-info p { font-size: var(--text-sm); margin-bottom: var(--space-2); }
.team-info a { color: var(--primary); font-size: var(--text-sm); font-weight: 500; }

/* Compliance badge strip */
.compliance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.compliance-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-700);
}
.compliance-badge svg { color: var(--success); }

/* Refund highlight box */
.refund-highlight {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 2px solid #6EE7B7;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin-bottom: var(--space-10);
}
.refund-highlight .days {
  font-size: 72px;
  font-weight: 900;
  color: #065F46;
  line-height: 1;
  display: block;
}
.refund-highlight .days-label {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #047857;
  display: block;
  margin-bottom: var(--space-4);
}
.refund-highlight p { color: #065F46; font-size: var(--text-lg); max-width: 480px; margin: 0 auto; }

/* ─── 18. RESPONSIVE ─── */
@media (max-width: 640px) {
  :root { --container-pad: var(--space-4); }
  .section { padding: var(--space-12) 0; }
  .hero { padding: var(--space-12) 0 var(--space-16); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: var(--space-4); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .team-card { flex-direction: column; text-align: center; }
  .company-info-box dl { grid-template-columns: 1fr; gap: var(--space-2); }
  .company-info-box dt { margin-bottom: -8px; }
}

@media (min-width: 641px) and (max-width: 899px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ─── 19. ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__ribbon { animation: fadeUp 0.5s ease both; }
.hero__heading { animation: fadeUp 0.5s 0.1s ease both; }
.hero__subheading { animation: fadeUp 0.5s 0.2s ease both; }
.hero__actions { animation: fadeUp 0.5s 0.3s ease both; }
.hero__trust { animation: fadeUp 0.5s 0.4s ease both; }
.hero__visual { animation: fadeUp 0.6s 0.5s ease both; }

/* ─── 20. PRINT ─── */
@media print {
  .nav, .hero__visual, .cta-final, .footer__bottom-links { display: none; }
  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; }
}
