/* ============================================================
   BookWithZara — Shared Stylesheet v2.0
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  --cream: #FBF6EF;
  --cream-deep: #F5ECDE;
  --card: #FFFFFF;
  --ink: #3A2E1E;
  --ink-soft: #6B5D49;
  --ink-muted: #8A7B66;
  --amber: #C68B47;
  --amber-deep: #A8702F;
  --amber-soft: #FAF1E5;
  --green: #5A7A52;
  --green-soft: #EBF0E6;
  --red: #C0392B;
  --red-soft: #FDECEA;
  --line: #EDE0CE;
  --line-soft: #F4ECE0;
  --dark: #1C1814;
  --dark-mid: #2A221A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-height: 72px;
  --container: 1160px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(58,46,30,0.08);
  --shadow-md: 0 4px 16px rgba(58,46,30,0.10);
  --shadow-lg: 0 8px 32px rgba(58,46,30,0.12);
  --shadow-xl: 0 16px 48px rgba(58,46,30,0.14);
  --transition: 200ms ease;
}

/* ------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ------------------------------------------------------------
   3. Layout
   ------------------------------------------------------------ */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

/* ------------------------------------------------------------
   4. Navigation
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(251,246,239,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--amber);
  color: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--amber-deep); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
}

.nav-dropdown-toggle:hover { color: var(--amber-deep); }

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--amber-soft);
  color: var(--amber-deep);
}

.nav-dropdown-menu .nav-dd-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 6px 12px 4px;
}

.nav-dropdown-menu .nav-dd-price {
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
}

.nav-cta {
  background: var(--amber) !important;
  color: white !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 500 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--amber-deep) !important;
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 11px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-close {
  align-self: flex-end;
  padding: 11px;
  margin-bottom: 16px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: white;
}

.btn-primary:hover {
  background: var(--amber-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198,139,71,0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber-deep);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
}

.btn-lg {
  font-size: 16px;
  padding: 16px 32px;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   6. Section Headers
   ------------------------------------------------------------ */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-deep);
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------ */
.hero {
  padding: 80px 0 72px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--amber-deep);
  background: var(--amber-soft);
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(90,122,82,0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   8. Product Cards (Homepage two-col)
   ------------------------------------------------------------ */
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-card.featured {
  border: 2px solid var(--amber);
  box-shadow: var(--shadow-md);
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 4px;
}

.product-card-price span {
  font-size: 16px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-style: normal;
}

.product-card-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.product-card-features {
  margin-bottom: 28px;
}

.product-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}

.product-card-features li:last-child {
  border-bottom: none;
}

.product-card-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  flex-shrink: 0;
}

.product-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.product-card-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .product-cards { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   9. Trust Stats Bar
   ------------------------------------------------------------ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  width: 100%;
}

.trust-stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-label {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   10. Steps
   ------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.steps-four {
  grid-template-columns: repeat(4, 1fr);
}

.step {
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber-soft);
  border: 1px solid var(--line);
  color: var(--amber-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.step p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 720px) {
  .steps,
  .steps-four { grid-template-columns: 1fr; gap: 40px; }
}

/* ------------------------------------------------------------
   11. Features Grid
   ------------------------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-soft);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber-deep);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

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

/* ------------------------------------------------------------
   12. Demo Callout
   ------------------------------------------------------------ */
.demo-callout {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-callout::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(198,139,71,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.demo-callout h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-style: italic;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}

.demo-callout p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}

.demo-callout-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* ------------------------------------------------------------
   13. Pricing Cards
   ------------------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-note {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--amber-soft);
  text-align: center;
}

.pricing-note span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pricing-note p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--amber);
  box-shadow: 0 16px 48px rgba(198,139,71,0.14);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}

.pricing-amount span {
  font-size: 18px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
}

.pricing-desc {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 7px 0;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features .check { stroke: var(--green); }
.pricing-features .cross { stroke: var(--ink-muted); opacity: 0.4; }

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ------------------------------------------------------------
   14. FAQ
   ------------------------------------------------------------ */
.faq {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ------------------------------------------------------------
   15. CTA Banner
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--amber-soft);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* ------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 12px;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: white;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 200px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   17. Page Hero (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}

.page-hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   18. Feature List (product pages)
   ------------------------------------------------------------ */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-list-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-list-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-list-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber-deep);
}

.feature-list-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.feature-list-item p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .feature-list { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   19. Comparison Table
   ------------------------------------------------------------ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--line);
}

.compare-table th:first-child { text-align: left; }

.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  text-align: center;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--ink);
  font-weight: 500;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table .check-cell { color: var(--green); font-size: 18px; }
.compare-table .cross-cell { color: var(--ink-muted); opacity: 0.3; font-size: 18px; }

.compare-table thead tr th:nth-child(3) {
  background: var(--amber-soft);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  color: var(--amber-deep);
}

/* ------------------------------------------------------------
   20. Legal Pages
   ------------------------------------------------------------ */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 0 88px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 12px;
}

.legal-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 8px;
}

.legal-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--amber-deep);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   21. Help Page
   ------------------------------------------------------------ */
.help-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.help-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.help-sidebar h3 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 10px;
  margin-top: 24px;
}

.help-sidebar h3:first-child { margin-top: 0; }

.help-sidebar a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.help-sidebar a:hover {
  background: var(--amber-soft);
  color: var(--amber-deep);
}

.help-section {
  margin-bottom: 56px;
}

.help-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.help-accordion-item {
  border-bottom: 1px solid var(--line-soft);
}

.help-accordion-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}

.help-accordion-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.help-accordion-item.open .help-accordion-q svg {
  transform: rotate(45deg);
}

.help-accordion-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.help-accordion-item.open .help-accordion-a {
  max-height: 400px;
  padding-bottom: 18px;
}

@media (max-width: 720px) {
  .help-layout { grid-template-columns: 1fr; }
  .help-sidebar { display: none; }
}

/* ------------------------------------------------------------
   22. Status Page
   ------------------------------------------------------------ */
.status-header {
  text-align: center;
  padding: 64px 0 48px;
}

.status-overall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-soft);
  border: 1px solid rgba(90,122,82,0.2);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  color: var(--green);
  margin-bottom: 16px;
}

.status-overall .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.status-services {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
}

.status-row:last-child { border-bottom: none; }

.status-service-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.status-service-desc {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.status-badge.online {
  background: var(--green-soft);
  color: var(--green);
}

.status-badge.online .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.status-badge.checking {
  background: var(--amber-soft);
  color: var(--amber-deep);
}

/* ------------------------------------------------------------
   23. Changelog
   ------------------------------------------------------------ */
.changelog-timeline {
  max-width: 680px;
  margin: 0 auto;
}

.changelog-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}

.changelog-entry:last-child {
  border-bottom: none;
}

.changelog-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  padding-top: 4px;
  font-family: var(--font-mono);
}

.changelog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.tag-new { background: var(--green-soft); color: var(--green); }
.tag-improved { background: var(--amber-soft); color: var(--amber-deep); }
.tag-fixed { background: #EEF2FF; color: #4338CA; }

.changelog-entry h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.changelog-entry p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 560px) {
  .changelog-entry { grid-template-columns: 1fr; gap: 8px; }
}

/* ------------------------------------------------------------
   24. Niche Pages
   ------------------------------------------------------------ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.pain-problem {
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pain-solution {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pain-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

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

/* ------------------------------------------------------------
   25. Utilities
   ------------------------------------------------------------ */
.bg-cream-deep { background: var(--cream-deep); }
.bg-dark { background: var(--dark); }
.bg-amber-soft { background: var(--amber-soft); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ------------------------------------------------------------
   26. Responsive
   ------------------------------------------------------------ */
@media (max-width: 560px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .demo-callout { padding: 40px 24px; }
  .cta-banner { padding: 48px 24px; }
  .pricing-grid { gap: 40px; }
}
/* ============================================================
   Extra components — changelog, status, prose, footer
   ============================================================ */

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { color: white; }
.footer-brand .nav-logo-mark { background: var(--amber); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--amber); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Changelog ── */
.changelog-list { display: flex; flex-direction: column; gap: 0; }
.changelog-entry {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
.changelog-entry:last-child { border-bottom: none; }
.changelog-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--amber-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.changelog-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.changelog-body {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── Status ── */
.status-list { display: flex; flex-direction: column; gap: 0; }
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.status-service { font-size: 15px; font-weight: 600; color: var(--ink); }
.status-url { font-size: 12px; color: var(--ink-muted); margin-top: 3px; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.status-badge.checking { background: var(--line-soft); color: var(--ink-muted); }
.status-badge.online { background: var(--green-soft); color: var(--green); }
.status-badge.online::before { content:'●'; margin-right:2px; }
.status-badge.offline { background: var(--red-soft); color: var(--red); }
.status-badge.offline::before { content:'●'; margin-right:2px; }

/* ── Prose (privacy/terms) ── */
.prose h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 10px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose p { font-size: 15px; color: var(--ink-muted); line-height: 1.75; margin-bottom: 14px; }
.prose a { color: var(--amber-deep); }
.prose a:hover { text-decoration: underline; }

/* ── FAQ chevron ── */
.faq-chevron { transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15px; color: var(--ink-muted); line-height: 1.7; }

/* ── Help accordion same as FAQ ── */
.help-accordion-item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.help-accordion-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.help-accordion-a { display: none; padding: 0 0 16px; }
.help-accordion-item.open .help-accordion-a { display: block; }
.help-accordion-a p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.7; }

/* ============================================================
   Professional interaction polish
   ============================================================ */

/* ── Focus ring — accessibility + polish ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Button hover ring effect ── */
.btn {
  position: relative;
  overflow: visible;
}

.btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-full) + 3px);
  border: 2px solid transparent;
  transition: border-color 200ms ease, opacity 200ms ease;
  opacity: 0;
  pointer-events: none;
}

.btn-primary::after { border-color: var(--amber); }
.btn-primary:hover::after { opacity: 0.5; }
.btn-primary:focus-visible::after { opacity: 0.7; }

.btn-secondary::after { border-color: var(--ink); }
.btn-secondary:hover::after { opacity: 0.25; border-color: var(--amber); }

.btn-dark::after { border-color: rgba(255,255,255,0.4); }
.btn-dark:hover::after { opacity: 0.6; }

/* ── Active / tap feedback ── */
.btn:active { transform: scale(0.97) !important; }
.nav-mobile-toggle:active { opacity: 0.6; }
.nav-mobile-close:active { opacity: 0.6; }
.nav-mobile-menu a:active { opacity: 0.6; }
.faq-q:active { color: var(--amber-deep); }
* { -webkit-tap-highlight-color: transparent; }

/* ── Pricing card hover — lift + ring ── */
.pricing-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 56px rgba(198,139,71,0.22);
}

/* ── Nav links — underline slide ── */
.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--amber-deep);
  transform: scaleX(0);
  transition: transform 200ms ease;
  border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* ── Feature cards — left border on hover ── */
.feature-card {
  border-left: 3px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover {
  border-left-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── Product cards ── */
.product-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover {
  border-color: var(--amber);
}

/* ── Step numbers — pulse on hover ── */
/* step hover highlight removed */

/* ── FAQ items ── */
.faq-q {
  transition: color 150ms ease;
}

.faq-q:hover { color: var(--amber-deep); }

/* ── Changelog entries ── */
.changelog-entry {
  transition: background 150ms ease;
  padding-left: 12px;
  margin-left: -12px;
  border-radius: var(--radius-sm);
}

.changelog-entry:hover { background: var(--cream-deep); }

/* ── Footer links ── */
.footer-col a {
  position: relative;
  padding-left: 0;
  transition: color 150ms ease, padding-left 150ms ease;
}

.footer-col a:hover { padding-left: 6px; }

/* ── Nav CTA pulse on load ── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,139,71,0); }
  50% { box-shadow: 0 0 0 6px rgba(198,139,71,0.2); }
}

.nav-cta { animation: ctaPulse 2.5s ease-in-out 1.5s 2; }

/* ── Smooth page transitions ── */
body { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ── Selection colour ── */
::selection { background: rgba(198,139,71,0.2); color: var(--ink); }

/* ============================================================
   Hero split layout + phone mockup
   ============================================================ */
.hero-split { padding: 72px 0 64px; text-align: left; }

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content .hero-badge { display: inline-flex; }
.hero-content h1 { text-align: left; }
.hero-content .hero-sub { margin-left: 0; text-align: left; }
.hero-content .hero-actions { justify-content: flex-start; }
.hero-content .hero-note { text-align: left; }

/* ── Ghost button (visible on cream) ── */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 600;
}
.btn-ghost:hover {
  border-color: var(--amber-deep);
  color: var(--amber-deep);
  background: var(--amber-soft);
}

/* ── Phone mockup ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-visual-label {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.phone-mockup {
  width: 280px;
  background: var(--dark);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(28,24,20,0.32), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.phone-screen {
  background: #F5ECDE;
  border-radius: 26px;
  overflow: hidden;
  margin-top: 12px;
}

.mock-header {
  background: #1C1410;
  padding: 20px 16px 14px;
}

.mock-salon-name {
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  color: #FBF6EF;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.mock-tagline {
  font-size: 9px;
  color: #C68B47;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mock-steps {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mock-step {
  font-size: 7px;
  color: rgba(251,246,239,0.4);
  white-space: nowrap;
}

.mock-step.active {
  color: #FBF6EF;
  font-weight: 600;
}

.mock-step-line {
  flex: 1;
  height: 1px;
  background: rgba(251,246,239,0.15);
}

.mock-body { padding: 16px 14px 8px; }

.mock-section-label {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #8A7B66;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mock-service-card {
  background: #fff;
  border: 1.5px solid #EDE0CE;
  border-radius: 10px;
  padding: 16px 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.mock-service-card.selected {
  border-color: #C68B47;
  background: #FBF6EF;
}

.mock-service-name {
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: #3A2E1E;
  margin-bottom: 2px;
}

.mock-service-card.selected .mock-service-name { color: #C68B47; }

.mock-service-meta {
  font-size: 10px;
  color: #8A7B66;
}

.mock-price {
  font-size: 14px;
  font-weight: 600;
  color: #C68B47;
  margin-left: auto;
  white-space: nowrap;
}

.mock-check {
  width: 16px;
  height: 16px;
  background: #C68B47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  flex-shrink: 0;
}

.mock-cta {
  background: #1C1410;
  color: #FBF6EF;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 6px 12px 12px;
  border-radius: 30px;
}

/* ── Early access banner ── */
.early-access-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--amber-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  flex-wrap: wrap;
}

.early-access-icon { font-size: 32px; flex-shrink: 0; }

.early-access-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.early-access-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.early-access-sub {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ── Mobile hero ── */
@media (max-width: 900px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-note { text-align: center; }
  .hero-content .hero-actions { justify-content: center; }
  .hero-content .hero-badge { display: inline-flex; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 250px; }
  .early-access-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .phone-mockup { width: 260px; }
  .hero-split { padding: 48px 0 40px; }
}

/* ── Plan cards ── */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.plan-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  cursor: pointer;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(28,24,20,0.12);
  border-color: var(--amber);
}
.plan-card-featured {
  box-shadow: 0 4px 16px rgba(28,24,20,0.06);
}
.plan-card-featured:hover {
  box-shadow: 0 20px 56px rgba(198,139,71,0.2);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.plan-card-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-style: italic;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-card-price span {
  font-size: 16px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
}
.plan-card-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.plan-card-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.plan-card-features {
  flex: 1;
  margin-bottom: 24px;
  list-style: none;
}
.plan-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
}
.plan-card-features li:last-child { border-bottom: none; }
.plan-card-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.plan-card-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  text-align: center;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-deep);
  border: 1.5px solid var(--amber);
  background: transparent;
  transition: background 150ms ease, color 150ms ease;
}
.plan-card:hover .plan-card-btn {
  background: var(--amber-soft);
}
.plan-card-btn-primary {
  background: var(--amber);
  color: white;
  border-color: var(--amber);
}
.plan-card:hover .plan-card-btn-primary {
  background: var(--amber-deep);
  color: white;
}
.plan-card-sub {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 10px;
}
@media (max-width: 860px) {
  .plan-cards { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── Nav dropdown — click to open ── */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px;
  z-index: 999;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
  vertical-align: middle;
}
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
