:root {
  --bg: #fff7ef;
  --bg-strong: #ffe7d3;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #fffdf8;
  --text: #1d2a23;
  --muted: #5c695f;
  --line: rgba(29, 42, 35, 0.12);
  --red: #c7372f;
  --red-deep: #962d28;
  --green: #2f8a48;
  --green-soft: #dff1e4;
  --white: #fffdfa;
  --shadow: 0 24px 60px rgba(76, 33, 18, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(199, 55, 47, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(47, 138, 72, 0.18), transparent 24%),
    linear-gradient(180deg, #fff8ef 0%, #fff5ed 55%, #fffdf9 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.7;
}

.page-glow-left {
  top: -120px;
  left: -80px;
  background: rgba(199, 55, 47, 0.16);
}

.page-glow-right {
  right: -90px;
  bottom: 120px;
  background: rgba(47, 138, 72, 0.16);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-compact {
  padding: 64px 0 88px;
}

.section-soft {
  padding: 72px 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

a {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #df5a44);
  color: #fff;
  box-shadow: 0 14px 28px rgba(199, 55, 47, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  border-color: rgba(47, 138, 72, 0.25);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 239, 0.84);
  border-bottom: 1px solid rgba(29, 42, 35, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #49a15f);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #3a453c;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--red);
}

.menu-button {
  display: none;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(29, 42, 35, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  padding: 0 16px;
  font-weight: 700;
}

.hero {
  padding-top: 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.hero-highlights li {
  position: relative;
  padding-left: 28px;
  color: #2c3c31;
  font-weight: 600;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #6eb67e);
  box-shadow: 12px 0 0 rgba(199, 55, 47, 0.18);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 241, 0.82)),
    var(--surface);
  border: 1px solid rgba(199, 55, 47, 0.12);
  box-shadow: var(--shadow);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 138, 72, 0.1);
  color: var(--green);
  font-weight: 800;
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  margin: 18px 0 10px;
}

.hero-note {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(199, 55, 47, 0.08), rgba(47, 138, 72, 0.08));
}

.hero-note strong {
  color: var(--text);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head-tight {
  margin-bottom: 20px;
}

.section-copy {
  max-width: 420px;
  font-size: 0.98rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  min-height: 244px;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 42, 35, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(94, 45, 22, 0.08);
}

.menu-card-accent {
  background: linear-gradient(180deg, rgba(199, 55, 47, 0.92), rgba(150, 45, 40, 0.92));
  color: #fff;
}

.menu-card-accent p,
.menu-card-accent .menu-tag {
  color: rgba(255, 255, 255, 0.82);
}

.menu-card strong {
  margin-top: auto;
  font-size: 1.18rem;
  color: var(--green);
}

.menu-card-accent strong {
  color: #fff;
}

.menu-tag {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.reservation-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 42, 35, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
}

.hours-list {
  display: grid;
  gap: 14px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(29, 42, 35, 0.08);
}

.hours-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-list span,
.contact-line span {
  color: var(--red);
  font-weight: 700;
}

.contact-card {
  background: linear-gradient(180deg, rgba(47, 138, 72, 0.08), rgba(255, 255, 255, 0.9));
}

.contact-line {
  color: #2e3931;
}

.reservation-layout {
  display: block;
}

.reservation-panel {
  padding: 28px;
}

.reservation-panel {
  max-width: 620px;
  margin: 0 auto;
}

.reservation-form {
  display: grid;
  gap: 10px;
}

.reservation-form label {
  font-size: 0.94rem;
  font-weight: 700;
  color: #324137;
}

.reservation-form input {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(29, 42, 35, 0.14);
  background: #fffdfa;
  padding: 0 14px;
  font: inherit;
  color: var(--text);
}

.reservation-form input:focus {
  outline: 2px solid rgba(47, 138, 72, 0.18);
  border-color: rgba(47, 138, 72, 0.42);
}

.reservation-message {
  min-height: 28px;
  margin-top: 16px;
  font-weight: 700;
}

.reservation-message.is-error {
  color: var(--red-deep);
}

.reservation-message.is-success {
  color: var(--green);
}

.reservation-result {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(47, 138, 72, 0.09), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(47, 138, 72, 0.16);
}

.reservation-result p {
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(29, 42, 35, 0.08);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
}

@media (max-width: 1080px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-cta {
    display: none;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 6px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .section,
  .section-compact,
  .section-soft {
    padding: 64px 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card,
  .info-card,
  .reservation-panel {
    padding: 22px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-wrap,
  .hours-list div {
    display: grid;
    gap: 10px;
  }
}

/* ===== MARKETING NAV ===== */
.mkt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mkt-nav-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mkt-logo {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
}
.mkt-nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.mkt-nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
}
.mkt-nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.mkt-nav-cta {
  white-space: nowrap;
  padding: 8px 18px;
  background: #6366f1;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s, transform 0.1s;
  font-family: "Manrope", sans-serif;
}
.mkt-nav-cta:hover { background: #4f46e5; transform: translateY(-1px); }
.mkt-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 16px;
  cursor: pointer;
}

/* ===== MARKETING HERO ===== */
.mkt-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.mkt-hero-inner {
  max-width: 760px;
}
.mkt-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.28);
  color: #818cf8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  font-family: "Manrope", sans-serif;
}
.mkt-h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #1e293b;
  margin-bottom: 22px;
}
.mkt-hero-sub {
  font-size: 1.12rem;
  color: #475569;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.mkt-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.mkt-btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  background: #6366f1;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
}
.mkt-btn-primary:hover { background: #4f46e5; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,0.38); }
.mkt-btn-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  background: rgba(255,255,255,0.8);
  color: #1e293b;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  border: 1px solid rgba(30,41,59,0.14);
  transition: background 0.15s, transform 0.12s;
}
.mkt-btn-secondary:hover { background: #fff; transform: translateY(-2px); }
.mkt-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.mkt-trust span {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}

/* ===== DEMO TAGLINE ===== */
.demo-tagline {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  font-family: "Manrope", sans-serif;
}
.demo-tagline-inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.demo-tagline-text {
  font-size: 13px;
  color: #64748b;
}
.demo-tagline-text strong { color: #1e293b; }
.demo-tagline-link {
  font-size: 13px;
  font-weight: 700;
  color: #6366f1;
  text-decoration: none;
  white-space: nowrap;
}
.demo-tagline-link:hover { text-decoration: underline; }

/* ===== MARKETING SECTIONS ===== */
.mkt-section {
  padding: 96px 0;
  font-family: "Manrope", sans-serif;
}
.mkt-section-gray {
  background: #f8fafc;
}
.mkt-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6366f1;
  margin-bottom: 12px;
}
.mkt-section-h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1e293b;
  margin-bottom: 14px;
  margin-top: 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.mkt-section-sub {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 52px;
  max-width: 520px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.pricing-card-featured {
  background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(99,102,241,0.35);
}
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #6366f1;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 12px;
}
.pricing-card-featured .pricing-name { color: rgba(255,255,255,0.6); }
.pricing-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  font-family: "Manrope", sans-serif;
}
.pricing-card-featured .pricing-price { color: #fff; }
.pricing-card-featured .pricing-price span { color: rgba(255,255,255,0.5); }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: #475569;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 800;
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-card-featured .pricing-features li::before { color: #a5b4fc; }
.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px;
  background: #f1f5f9;
  color: #1e293b;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s, transform 0.1s;
  font-family: "Manrope", sans-serif;
}
.pricing-btn:hover { background: #e2e8f0; transform: translateY(-1px); }
.pricing-btn-featured {
  background: #6366f1;
  color: #fff;
}
.pricing-btn-featured:hover { background: #4f46e5; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* ===== PRICING SINGLE ===== */
.pricing-single {
  display: flex;
  justify-content: center;
}
.pricing-single-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(99,102,241,0.1);
}
.pricing-single-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
}
.pricing-single-item {
  text-align: center;
}
.pricing-single-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
}
.pricing-single-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}
.pricing-single-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
}
.pricing-single-divider {
  font-size: 2rem;
  color: #cbd5e1;
  font-weight: 300;
  flex-shrink: 0;
}
.pricing-features-single {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 28px;
}
.pricing-features-single li {
  font-size: 14px;
  color: #475569;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
}
.pricing-features-single li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 800;
}
.pricing-btn-big {
  display: block;
  text-align: center;
  padding: 16px;
  background: #6366f1;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: background 0.15s, transform 0.1s;
  font-family: "Manrope", sans-serif;
  margin-bottom: 16px;
}
.pricing-btn-big:hover { background: #4f46e5; transform: translateY(-2px); }
.pricing-single-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  font-family: "Manrope", sans-serif;
}

/* ===== INSTALL PLATFORMS ===== */
.install-platforms {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.install-platform {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
}
.install-platform strong {
  display: block;
  font-size: 14px;
  color: #1e293b;
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
}
.install-platform p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}
.install-platform em {
  font-style: normal;
  font-weight: 700;
  color: #475569;
}
.install-platform code {
  background: #e2e8f0;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
  color: #1e293b;
}

/* ===== FINAL CTA ===== */
.mkt-cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  text-align: center;
  font-family: "Manrope", sans-serif;
}
.mkt-cta-final h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.mkt-cta-final p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.mkt-btn-big {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 36px;
  background: #fff;
  color: #4338ca;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  font-family: "Manrope", sans-serif;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.mkt-btn-big:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.32); }
.mkt-contact-line {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.mkt-contact-line a { color: rgba(255,255,255,0.7); text-decoration: none; }
.mkt-contact-line a:hover { color: #fff; }

/* ===== PAGE FOOTER ===== */
.mkt-footer {
  background: #0f172a;
  padding: 24px 0;
  font-family: "Manrope", sans-serif;
}
.mkt-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.mkt-footer-logo { color: #fff; font-weight: 800; font-size: 15px; }
.mkt-footer-copy { color: #475569; font-size: 13px; }
.mkt-footer-copy a { color: #6366f1; text-decoration: none; }
.mkt-footer-copy a:hover { text-decoration: underline; }

/* ===== DEMO POWERED ===== */
.demo-powered { color: #94a3b8; font-size: 13px; }

/* ===== RIBBON ===== */
.ribbon {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ribbon-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ribbon-logo {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
}
.ribbon-tabs {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.ribbon-tab {
  padding: 6px 18px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.ribbon-tab:hover { color: #fff; background: rgba(255,255,255,0.08); }
.ribbon-tab.is-active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.ribbon-cta {
  white-space: nowrap;
  padding: 7px 16px;
  background: #6366f1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s;
}
.ribbon-cta:hover { background: #4f46e5; }

/* ===== THEME BAR ===== */
.theme-bar {
  background: rgba(15,23,42,0.04);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  padding: 0;
}
.theme-bar-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.theme-bar-label { color: #94a3b8; font-weight: 500; }
.theme-bar-name { font-weight: 700; color: #1e293b; }
.theme-dots { display: flex; gap: 6px; margin-left: 4px; }
.theme-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 2px solid var(--red);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.theme-dot.is-active { background: var(--red); }
.theme-progress-track {
  flex: 1;
  max-width: 160px;
  height: 4px;
  background: rgba(15,23,42,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-left: auto;
}
.theme-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 999px;
}

/* ===== SITE HEADER offset for top nav ===== */
.site-header { top: 60px; } /* 60px top nav */

/* ===== GUIDE VIEW ===== */
.view-guide {
  min-height: 100vh;
  background: #f8fafc;
  font-family: "Manrope", "Segoe UI", sans-serif;
}
.guide-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 72px 0 64px;
  text-align: center;
}
.guide-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #818cf8;
  margin-bottom: 16px;
}
.guide-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.guide-sub { color: #94a3b8; font-size: 1.05rem; margin: 0; }

.guide-body { padding: 64px 0 80px; }

/* Steps */
.steps { display: grid; gap: 0; max-width: 680px; margin: 0 auto 72px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(to bottom, #e2e8f0, transparent);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #6366f1;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content {
  padding-bottom: 40px;
  padding-top: 12px;
}
.step-content h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 8px;
}
.step-content p { color: #64748b; line-height: 1.65; margin-bottom: 12px; }
.step-link {
  display: inline-block;
  color: #6366f1;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.step-link:hover { text-decoration: underline; }
.step-note {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
}
.code-box {
  background: #1e293b;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 10px 0;
}
.code-box code {
  color: #7dd3fc;
  font-family: 'Courier New', monospace;
  font-size: 13px;
}
.code-highlight { color: #86efac; }

/* FAQ */
.guide-faq { margin-bottom: 64px; }
.guide-faq h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 28px;
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 22px;
}
.faq-item h4 { font-size: 15px; color: #1e293b; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: #64748b; margin: 0; line-height: 1.6; }

/* Guide CTA */
.guide-cta-box {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: #fff;
}
.guide-cta-box h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}
.guide-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.btn-guide-cta {
  display: inline-block;
  background: #fff;
  color: #4f46e5;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-guide-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .mkt-nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #0f172a; flex-direction: column; padding: 12px 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 2px; }
  .mkt-nav-links.is-open { display: flex; }
  .mkt-menu-btn { display: block; }
  .mkt-nav-cta { font-size: 13px; padding: 7px 14px; }
  .mkt-hero { min-height: auto; padding: 100px 0 60px; }
  .mkt-hero-btns { flex-direction: column; align-items: flex-start; }
  .mkt-btn-primary, .mkt-btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
  .guide-cta-box { padding: 32px 24px; }
  .theme-progress-track { display: none; }
  .mkt-footer-inner { flex-direction: column; text-align: center; }
  .mkt-section { padding: 64px 0; }
  .mkt-cta-final { padding: 72px 0; }
}
