/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #7b756c;
  --accent-light: #9a948c;
  --accent-dim:   rgba(123, 117, 108, 0.1);
  --bg:           #ffffff;
  --bg-card:      #f7f5f3;
  --bg-card-2:    #f0ede9;
  --border:       rgba(123, 117, 108, 0.18);
  --text:         #1c1a18;
  --text-muted:   #7b756c;
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; }
a { text-decoration: none; color: inherit; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--sm  { font-size: 13px; padding: 7px 16px; }
.btn--lg  { font-size: 16px; padding: 14px 28px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-1px);
}

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

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 1px 16px rgba(123, 117, 108, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo-img {
  height: 126px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav__links a:hover { color: var(--text); }

/* ── Section Shared ─────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--text);
}
.section-header p { color: var(--text-muted); font-size: 17px; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(123, 117, 108, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.accent-text {
  color: var(--accent);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #faf8f6 0%, #ffffff 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(123, 117, 108, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(123, 117, 108, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Logos ──────────────────────────────────────────── */
.logos {
  padding: 48px 0 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.logos__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.logos__track {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.logos__row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.logos__row span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition);
}
.logos__row span:hover { border-color: var(--accent); color: var(--text); }

/* ── Features ───────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(123, 117, 108, 0.12);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ── How It Works ───────────────────────────────────── */
.how {
  padding: 80px 0 100px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.how__step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}
.how__step-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--accent);
  opacity: 0.35;
}
.how__step h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.how__step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.how__connector {
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-top: 28px;
  align-self: flex-start;
}

/* ── Pricing ────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}

/* Toggle */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.toggle-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 100px;
  padding: 9px 22px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-btn--active {
  background: var(--accent);
  color: #fff;
}
.toggle-save {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 100px;
}
.toggle-btn--active .toggle-save {
  background: rgba(255,255,255,0.25);
}
.toggle-btn:not(.toggle-btn--active) .toggle-save {
  background: var(--accent-dim);
  color: var(--accent);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(123, 117, 108, 0.1);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(123, 117, 108, 0.06) 0%, var(--bg-card) 60%);
  transform: scale(1.02);
  box-shadow: 0 8px 40px rgba(123, 117, 108, 0.14);
}
.pricing-card--featured:hover {
  box-shadow: 0 12px 48px rgba(123, 117, 108, 0.18);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 24px; }
.pricing-card__header h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pricing-card__header p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-amount { font-size: 42px; font-weight: 900; color: var(--text); letter-spacing: -1px; }
.price-period { font-size: 15px; color: var(--text-muted); }

.price-commitment {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  min-height: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}


/* ── CTA Section ────────────────────────────────────── */
.cta-section {
  padding: 80px 0 120px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.cta-box {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(123, 117, 108, 0.08);
}
.cta-box__glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(123, 117, 108, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  margin: 12px 0 16px;
}
.cta-box > p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; }

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 20px;
}
.cta-form input,
.cta-form select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.cta-form select { cursor: pointer; }
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form input:focus,
.cta-form select:focus { border-color: var(--accent); }
.cta-form option { background: #fff; color: var(--text); }

.cta-box__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__inner p { font-size: 13px; color: var(--text-muted); }
.footer__inner .nav__logo-img { height: 102px; }
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--text); }

/* ── Toast ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 999;
  white-space: nowrap;
}
.toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links li:not(:last-child) { display: none; }
  .hero { padding: 120px 0 80px; }
  .how__steps { flex-direction: column; align-items: center; }
  .how__connector { display: none; }
  .pricing-card--featured { transform: none; }
  .cta-box { padding: 48px 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .toggle-save { display: none; }
}
