/* ============================================================
   B.SIGMA Landing Page — Design System
   Playbook: Elegant Authority (Feminine Edition)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Colors */
  --bg: #FAFAF7;
  --bg-alt: #FFFFFF;
  --bg-dark: #1D2B46;
  --text: #1D2B46;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --accent: #C9A96E;
  --accent-light: #F5E6D3;
  --accent-rose: #E8D5D0;
  --cta: #1D2B46;
  --cta-hover: #2D3F5F;
  --border: #E5E5E5;
  --border-soft: #F0EDE8;

  /* Typography */
  --font-serif: "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-sans: "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Sizing */
  --container: 1200px;
  --container-narrow: 760px;

  /* Spacing */
  --space-section: clamp(64px, 10vw, 120px);
  --space-card: clamp(24px, 4vw, 40px);

  /* Radius */
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(29, 43, 70, 0.04), 0 1px 3px rgba(29, 43, 70, 0.06);
  --shadow: 0 4px 12px rgba(29, 43, 70, 0.06), 0 2px 4px rgba(29, 43, 70, 0.04);
  --shadow-lg: 0 12px 32px rgba(29, 43, 70, 0.10), 0 4px 8px rgba(29, 43, 70, 0.05);
  --shadow-gold: 0 4px 16px rgba(201, 169, 110, 0.18);

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

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

em, i { font-style: italic; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section--alt { background: var(--bg-alt); }

.section__narrow { max-width: var(--container-narrow); margin: 0 auto; }

.section__head {
  margin-bottom: clamp(40px, 6vw, 64px);
  max-width: 760px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__title--light { color: var(--bg-alt); }

.section__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

.section__sub {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 640px;
}

.section__head--center .section__sub {
  margin-left: auto;
  margin-right: auto;
}

.section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.section__split--reverse > *:first-child { order: 2; }

@media (max-width: 768px) {
  .section__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section__split--reverse > *:first-child { order: 0; }
}

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow--light { color: var(--accent-light); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
  white-space: nowrap;
  text-align: center;
  user-select: none;
}

.btn--primary {
  background: var(--cta);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn--ghost:hover {
  background: var(--text);
  color: #fff;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
  border-width: 1px;
}

.btn--full { width: 100%; }

.btn__arrow {
  font-size: 1.2em;
  line-height: 1;
  transition: transform var(--t);
  font-weight: 400;
}

.btn:hover .btn__arrow { transform: translateX(-4px); }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--bg-dark);
  color: var(--bg-alt);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar__item { display: inline-flex; align-items: center; gap: 6px; }

.top-bar__star { color: var(--accent); }

.top-bar__dot { color: var(--accent); opacity: 0.7; }

@media (max-width: 540px) {
  .top-bar { font-size: 11px; padding: 8px 0; }
  .top-bar__inner { gap: 8px; }
}

/* ---------- HEADER ---------- */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(250, 250, 247, 0.92);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo img { height: 36px; width: auto; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--t), color var(--t);
}

.header__phone:hover {
  background: var(--accent-light);
  color: var(--text);
}

.header__phone svg { color: var(--accent); }

@media (max-width: 540px) {
  .header__logo img { height: 28px; }
  .header__phone span { display: none; }
  .header__phone { padding: 8px; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, var(--accent-rose) 0%, transparent 40%),
    radial-gradient(circle at 5% 90%, var(--accent-light) 0%, transparent 35%);
  opacity: 0.5;
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

.hero__micro {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Mini form in Hero */
.mini-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  max-width: 480px;
}

.mini-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.mini-form input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: border-color var(--t), box-shadow var(--t);
}

.mini-form input::placeholder { color: var(--text-muted); font-weight: 400; }

.mini-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}

@media (max-width: 540px) {
  .mini-form__row { grid-template-columns: 1fr; }
}

/* Alternative CTA bar (WhatsApp + Phone) */
.hero__alt-cta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.alt-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}

.alt-cta--wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.alt-cta--wa:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.alt-cta--phone {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.alt-cta--phone:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
}

.hero__visual { position: relative; }

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.hero__badge strong {
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__badge span {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero__image-wrap img { aspect-ratio: 5 / 4; }
}

/* ---------- PAIN SECTION ---------- */
.section--pain {
  text-align: center;
}

.section--pain .section__title { margin-bottom: 40px; }

.pain__text {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  text-align: right;
}

.pain__break {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--text);
  text-align: center;
  margin: 32px 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pain__break em { color: var(--accent); }

/* ---------- WHY GRID ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-card {
  background: var(--bg);
  padding: var(--space-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.why-card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 50%;
  color: var(--text);
  margin-bottom: 16px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  stroke-width: 1.6;
}

.why-card__icon--text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.why-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.why-card__body {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

.why-grid__footer {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- SOLUTION ---------- */
.solution__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.solution__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.solution__content .section__title {
  margin-bottom: 24px;
}

.solution__content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.solution__highlight {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text) !important;
  line-height: 1.35;
  padding: 20px 24px;
  background: var(--accent-light);
  border-right: 3px solid var(--accent);
  border-radius: var(--radius);
  margin: 24px 0 !important;
}

.solution__content .btn { margin-top: 16px; }

.solution__credentials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}

.solution__credentials svg { color: var(--accent); flex-shrink: 0; }

/* Zero-commitment box */
.zero-box {
  background: var(--bg);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: var(--shadow-gold);
}

.zero-box__row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.zero-box__price {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.zero-box__text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.zero-box__text span {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---------- BENEFITS GRID ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-alt);
  padding: var(--space-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--accent-rose);
  border-radius: 50%;
  transform: translate(40%, -40%);
  opacity: 0;
  transition: opacity var(--t);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.benefit-card:hover::before { opacity: 0.35; }

.benefit-card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  stroke-width: 1.5;
}

.benefit-card__title {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefit-card__body {
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
}

.benefit-card__body em { color: var(--accent); font-weight: 500; }

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 32px;
}

.step__num {
  font-weight: 800;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  position: relative;
  padding-bottom: 8px;
}

.step__num::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.step__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.step__body {
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.step__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.steps__cta { text-align: center; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step__num { font-size: 48px; }
}

/* ---------- BEFORE / AFTER GRID ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  transition: transform var(--t), box-shadow var(--t);
}

.ba-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ba-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ---------- RATING STRIP ---------- */
.rating-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--accent-light);
  padding: 10px 18px;
  border-radius: 999px;
  margin-top: 8px;
  box-shadow: var(--shadow-sm);
}

.rating-strip__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.rating-strip__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.rating-strip__text strong {
  font-weight: 800;
  color: var(--text);
}

/* ---------- URGENCY BANNER ---------- */
.urgency {
  background: var(--accent-light);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 14px 0;
  color: var(--text);
}

.urgency__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

.urgency svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 540px) {
  .urgency__inner { font-size: 13px; gap: 8px; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonials .testimonial:first-child { grid-column: 1 / -1; }

.testimonial {
  background: var(--bg-alt);
  padding: var(--space-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial__quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 8px;
  right: 24px;
  opacity: 0.35;
  font-weight: 700;
}

.testimonial__text {
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}

.testimonial__name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.testimonial__meta {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials { grid-template-columns: 1fr; }
  .testimonials .testimonial:first-child { grid-column: 1; }
}

/* ---------- FOUNDER (DARK) ---------- */
.section--founder {
  background: var(--bg-dark);
  color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.section--founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 169, 110, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(232, 213, 208, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.section--founder > .container { position: relative; z-index: 1; }

.founder__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent-rose);
  box-shadow: var(--shadow-lg);
}

.founder__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.founder__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder__content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.founder__quote {
  margin: 32px 0 0;
  padding: 28px 28px 24px;
  border-right: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--bg-alt);
  position: relative;
}

.founder__quote-cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  font-style: normal;
  letter-spacing: 0.02em;
}

.founder__quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  color: var(--accent);
  line-height: 0;
  vertical-align: -12px;
  margin-left: 4px;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.faq__q {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  transition: color var(--t);
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  transition: transform var(--t);
}

.faq__item[open] .faq__q::after {
  content: "−";
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
}

/* ---------- CTA / FORM ---------- */
.section--cta {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 169, 110, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(232, 213, 208, 0.10) 0%, transparent 50%);
  z-index: 0;
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-box .section__title { color: var(--bg-alt); }

.cta-box__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(17px, 2vw, 19px);
  margin-bottom: 40px;
}

.form {
  background: var(--bg-alt);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: right;
  max-width: 560px;
  margin: 0 auto;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 540px) {
  .form__row { grid-template-columns: 1fr; }
}

.form__field {
  display: block;
  margin-bottom: 16px;
}

.form__row .form__field { margin-bottom: 0; }

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form__field input,
.form__field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
}

.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
}

.form .btn { margin-top: 8px; }

.form__reassurance {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.form__success {
  background: var(--bg-alt);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.form__success h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.form__success p { color: var(--text-secondary); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand img {
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__brand p { margin: 0 0 20px; max-width: 340px; }

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--t), color var(--t), transform var(--t);
}

.footer__social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer__contact p { margin-bottom: 8px; font-size: 15px; }

.footer__contact a {
  color: var(--accent);
  transition: color var(--t);
}

.footer__contact a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--cta);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transform: translateY(120%);
  transition: transform var(--t-slow);
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta__arrow {
  font-size: 1.2em;
}

@media (min-width: 769px) {
  .sticky-cta { display: none; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- UTILITY ---------- */
::selection {
  background: var(--accent);
  color: #fff;
}
