/* ============================================
   UNIVLOC — Styles partagés
   ============================================ */

:root {
  --taupe-dark: #2C2420;
  --ocre-gold: #C4903A;
  --ocre-gold-hover: #A9772A;
  --ocre-light: #E8C97A;
  --taupe-medium: #6B5D55;
  --taupe-light: #C2B4AB;
  --cream: #FDFAF7;
  --beige: #EDE8E3;
  --beige-soft: #F5F1EC;
  --border: #DDD8D2;
  --border-soft: rgba(221, 216, 210, 0.6);

  --shadow-xs: 0 1px 2px rgba(44, 36, 32, 0.04);
  --shadow-sm: 0 2px 6px rgba(44, 36, 32, 0.05);
  --shadow-md: 0 6px 18px rgba(44, 36, 32, 0.07);
  --shadow-lg: 0 16px 40px rgba(44, 36, 32, 0.09);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--taupe-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* ============== TYPOGRAPHIE ============== */
h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--taupe-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -1px; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); letter-spacing: -0.8px; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { font-size: 16px; line-height: 1.7; color: var(--taupe-medium); }

.label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe-medium);
}

.muted   { color: var(--taupe-medium); }
.center  { text-align: center; }
.accent  { color: var(--ocre-gold); }

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .label { margin-bottom: 16px; }
.section-head h2     { margin-bottom: 16px; }
.section-head p      { font-size: 17px; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.logo svg { flex-shrink: 0; }
.logo-text { font-size: 19px; }
.logo-univ { color: var(--taupe-dark); }
.logo-loc  { color: var(--ocre-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--taupe-medium);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--taupe-dark);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--ocre-gold);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--ocre-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover {
  background: var(--ocre-gold-hover);
  transform: translateY(-1px);
}

.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta-ghost {
  background: transparent;
  color: var(--taupe-dark);
  border: 1.5px solid var(--taupe-dark);
  padding: 8.5px 16px;
}
.nav-cta-ghost:hover {
  background: var(--taupe-dark);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--taupe-dark);
}

/* ============== BOUTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocre-gold);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--ocre-gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-dark {
  background: var(--taupe-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #1d1815;
  transform: translateY(-1px);
}
.btn-ghost {
  background: #fff;
  color: var(--taupe-dark);
  border: 0.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--beige);
  transform: translateY(-1px);
}
.btn-block { width: 100%; }
.btn-lg    { padding: 16px 28px; font-size: 16px; }

/* ============== HERO ============== */
.hero {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--beige-soft);
  color: var(--ocre-gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero .badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ocre-gold);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

.hero h1 { margin-bottom: 24px; }
.hero .subtitle {
  font-size: 19px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Formulaire waitlist */
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 16px;
  background: #fff;
  padding: 6px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.waitlist-form input {
  flex: 1;
  padding: 12px 14px;
  font-size: 15px;
  border: none;
  outline: none;
  background: transparent;
}
.waitlist-form input::placeholder { color: var(--taupe-light); }
.waitlist-form button {
  padding: 12px 20px;
  background: var(--ocre-gold);
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.waitlist-form button:hover { background: var(--ocre-gold-hover); }

.reassurance {
  font-size: 13px;
  color: var(--taupe-medium);
  margin-bottom: 56px;
}

.form-message {
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
  color: var(--ocre-gold);
}
.form-message.error { color: #B45656; }

/* Compteurs */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 640px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 0.5px solid var(--border);
}
.metric { text-align: center; }
.metric-value {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--taupe-dark);
  margin-bottom: 4px;
}
.metric-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--taupe-medium);
}

/* ============== CARDS ============== */
.card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--taupe-light);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--beige-soft);
  color: var(--ocre-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p  { font-size: 15px; }

/* ============== PROBLEM SECTION ============== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  text-align: left;
}
.problem-card .num {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--ocre-gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.problem-card h3 { font-size: 19px; line-height: 1.4; }

/* ============== FEATURES ============== */
.features {
  background: var(--beige);
}
.features-list {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.feature-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-card .card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.feature-card h3 { font-size: 22px; margin-bottom: 12px; }
.feature-card p  { margin-bottom: 20px; font-size: 15px; }

.bullets { list-style: none; }
.bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--taupe-medium);
  line-height: 1.6;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--ocre-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ============== STEPS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--taupe-dark);
  color: var(--ocre-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 8px; }
.step .duration {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocre-gold);
  margin-top: 12px;
  font-weight: 600;
}

/* ============== TÉMOIGNAGES ============== */
.testimonials {
  background: var(--beige);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.testimonial blockquote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--taupe-dark);
  margin-bottom: 24px;
  font-weight: 400;
}
.testimonial blockquote::before {
  content: "“";
  display: block;
  font-size: 48px;
  color: var(--ocre-gold);
  line-height: 0.5;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige-soft);
  color: var(--ocre-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.testimonial-meta strong {
  font-weight: 500;
  color: var(--taupe-dark);
  display: block;
  font-size: 14.5px;
}
.testimonial-meta span {
  font-size: 13px;
  color: var(--taupe-medium);
}

/* ============== CTA FINAL ============== */
.cta-final {
  background: var(--taupe-dark);
  color: #fff;
  text-align: center;
  border-radius: 0;
}
.cta-final .container {
  max-width: 720px;
}
.cta-final h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-final .subtitle {
  color: var(--taupe-light);
  font-size: 18px;
  margin-bottom: 32px;
}
.cta-final .waitlist-form {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.cta-final .waitlist-form input { color: #fff; }
.cta-final .waitlist-form input::placeholder { color: var(--taupe-light); }
.cta-final .tagline {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocre-light);
  font-weight: 500;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--cream);
  border-top: 0.5px solid var(--border);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--border);
}
.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  max-width: 320px;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
}
.footer-links a {
  color: var(--taupe-medium);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--taupe-dark); }
.footer-bottom {
  margin-top: 24px;
  font-size: 13px;
  color: var(--taupe-medium);
  text-align: center;
}

/* ============== TARIFS ============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.plan-name {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe-medium);
  font-weight: 600;
  margin-bottom: 16px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.plan-price .amount {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--taupe-dark);
}
.plan-price .period {
  font-size: 14px;
  color: var(--taupe-medium);
}
.plan-tagline {
  font-size: 14.5px;
  color: var(--taupe-medium);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.plan-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--taupe-dark);
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--ocre-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

.plan.featured {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
  color: #fff;
  transform: scale(1.02);
}
.plan.featured:hover { transform: scale(1.02) translateY(-2px); }
.plan.featured .plan-name   { color: var(--ocre-light); }
.plan.featured .plan-price .amount { color: #fff; }
.plan.featured .plan-price .period { color: var(--taupe-light); }
.plan.featured .plan-tagline { color: var(--taupe-light); }
.plan.featured .plan-features li { color: #fff; }
.plan.featured .plan-features li::before { background: var(--ocre-light); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--ocre-gold);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}

/* ============== FAQ ============== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 0.5px solid var(--border);
}
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  color: var(--taupe-dark);
  letter-spacing: -0.3px;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--ocre-gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ocre-gold);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0;
  width: 1.5px; height: 100%;
  transform: translateX(-50%);
}
.faq-item.open .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--taupe-medium);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

/* ============== FONCTIONNALITÉS GRID ============== */
.features-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ============== TABLEAU COMPARAISON ============== */
.comparison-wrap {
  overflow-x: auto;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 640px;
}
.comparison-table thead th {
  padding: 20px 18px;
  text-align: left;
  font-weight: 500;
  color: var(--taupe-medium);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--beige-soft);
  border-bottom: 0.5px solid var(--border);
}
.comparison-table thead th.col-univloc {
  color: var(--ocre-gold);
}
.comparison-table tbody td {
  padding: 18px;
  border-bottom: 0.5px solid var(--border-soft);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--taupe-dark);
}
.comparison-table .col-univloc {
  background: rgba(196, 144, 58, 0.06);
}
.cell-yes  { color: var(--ocre-gold); font-weight: 500; }
.cell-no   { color: var(--taupe-light); }
.cell-mid  { color: var(--taupe-medium); }

/* ============== À PROPOS ============== */
.story {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  font-size: 17px;
  line-height: 1.8;
  color: var(--taupe-medium);
}
.story p { margin-bottom: 20px; font-size: 17px; }
.story p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 { margin-bottom: 12px; }
.contact-info p  { margin-bottom: 24px; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--taupe-dark);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-email:hover {
  border-color: var(--ocre-gold);
  transform: translateY(-1px);
}

.contact-form {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--taupe-medium);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--taupe-dark);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--ocre-gold);
  background: #fff;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

/* ============== ANIMATIONS FADE-IN ============== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 0.5px solid var(--border-soft); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a.active::after { display: none; }

  .nav-cta,
  .nav-cta-group { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero { padding: 56px 0 48px; }
  .hero .subtitle { font-size: 17px; }

  .waitlist-form {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }
  .waitlist-form button { width: 100%; }

  .metrics {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-grid,
  .features-list,
  .features-detailed,
  .steps,
  .testimonials-grid,
  .pricing-grid,
  .values-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-2px); }

  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 18px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
