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

:root {
  --bg:        #faf9f6;
  --bg-alt:    #f0ede6;
  --bg-dark:   #111111;
  --text:      #111111;
  --text-sec:  #555555;
  --text-mute: #999999;
  --amber:     #f59e0b;
  --amber-dk:  #d97706;
  --border:    #e5e0d8;
  --wa:        #25D366;
  --r:         10px;
  --r-lg:      16px;
  --shadow-sm: 0 1px 4px rgba(17,17,17,0.06);
  --shadow:    0 4px 16px rgba(17,17,17,0.08);
  --shadow-lg: 0 12px 32px rgba(17,17,17,0.10);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

section { padding: 80px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}
.section-label.light { color: var(--amber); }
.section-label.light::before { background: var(--amber); }

.section-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-sec);
  margin-bottom: 48px;
  max-width: 560px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--amber-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: #c8c0b4; background: #f0ede6; transform: translateY(-1px); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--text);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,249,246,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 32px;
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-sec);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { font-size: 14px; padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 8px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: rgba(245, 158, 11, 0.07);
  border-bottom: 1px solid rgba(245, 158, 11, 0.22);
  padding: 10px 0;
  margin-top: 88px;
}
.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  flex-wrap: nowrap;
  overflow: visible;
}
.trust-dot { color: var(--text-mute); font-weight: 400; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.trust-icon {
  flex-shrink: 0;
  color: var(--amber-dk);
  vertical-align: middle;
}

/* ===================== HERO ===================== */
.hero {
  padding: 100px 0 80px;
  background: var(--bg);
  text-align: center;
}
.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 16px;
}
.hero-micro {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary,
.hero-ctas .btn-ghost { font-size: 16px; padding: 15px 30px; }

/* ===================== HOW IT WORKS ===================== */
.hiw-section { background: var(--bg); }

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 56px;
}
.hiw-step { text-align: center; padding: 0 24px; }
.hiw-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.hiw-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.hiw-step p  { font-size: 16px; color: var(--text-sec); line-height: 1.65; }
.hiw-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(245,158,11,0.2));
  margin-top: 28px;
  align-self: start;
}

/* ===================== WHO IT'S FOR ===================== */
.for-section { background: var(--bg-dark); padding: 80px 0; }
.light-text { color: #fff !important; }

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.for-col h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: #fff; }
.for-no h3  { color: #aaa; }

.for-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.for-list li {
  font-size: 16px;
  color: #e5e5e5;
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}
.for-list li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

.for-no p { font-size: 15px; color: #aaa; line-height: 1.7; margin-bottom: 16px; }

/* ===================== DEMO SECTION ===================== */
.demo-section { background: var(--bg-alt); }

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.demo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 280px;
}
.demo-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.demo-card:hover .demo-card-bg { transform: scale(1.04); }
.demo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.78) 100%);
}
.demo-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(245,158,11,0.9);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.demo-play {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background 0.2s, transform 0.15s;
}
.demo-play:hover { background: rgba(255,255,255,0.3); transform: scale(1.08); }
.demo-play svg { width: 18px; height: 18px; margin-left: 2px; }
.demo-card-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}
.demo-scenario { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.demo-ticker { font-size: 11px; color: rgba(255,255,255,0.6); }

.demo-try-row { text-align: center; }
.demo-try-label { font-size: 16px; color: var(--text-sec); margin-bottom: 16px; }
.demo-try-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===================== FEATURES ===================== */
.features-section { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-tile {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon { font-size: 24px; margin-bottom: 14px; }
.feature-tile h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-tile p  { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ===================== ADD-ONS ===================== */
.addons-block { margin-top: 64px; }

.addon-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--bg-dark);
  border: 2px solid var(--wa);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin-bottom: 24px;
}
.addon-featured-badge {
  display: inline-flex;
  background: var(--wa);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.addon-featured-icon { font-size: 28px; margin-bottom: 12px; }
.addon-featured-left h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.addon-featured-left p  { font-size: 15px; color: #ccc; line-height: 1.65; margin-bottom: 16px; }
.addon-featured-upgrade {
  font-size: 13px;
  color: #aaa;
  border-left: 2px solid var(--wa);
  padding-left: 12px;
  line-height: 1.55;
}
.addon-featured-price { flex-shrink: 0; text-align: center; }
.addon-price-tag {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.addon-price-tag span { font-size: 20px; font-weight: 600; color: #aaa; }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.addon-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: box-shadow 0.2s;
}
.addon-card:hover { box-shadow: var(--shadow); }
.addon-name        { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.addon-price-label { font-size: 14px; font-weight: 600; color: var(--amber-dk); margin-bottom: 10px; }
.addon-card p      { font-size: 14px; color: var(--text-sec); line-height: 1.6; }
.addons-footer     { font-size: 12px; color: var(--text-mute); text-align: center; padding-top: 8px; }

/* ===================== PRICING ===================== */
.pricing-section { background: var(--bg-alt); }

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 32px 0 48px;
}
.toggle-label { font-size: 15px; font-weight: 500; color: var(--text-sec); display: flex; align-items: center; gap: 8px; }
.toggle-save {
  background: var(--amber);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.pricing-toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px; height: 26px;
  cursor: pointer;
}
.pricing-toggle-switch input { opacity: 0; width: 0; height: 0; }
.pricing-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 26px;
  transition: background 0.25s;
}
.pricing-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.pricing-toggle-switch input:checked + .pricing-toggle-slider { background: var(--amber); }
.pricing-toggle-switch input:checked + .pricing-toggle-slider::before { transform: translateX(20px); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
  transform: translateY(-6px);
}
.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.plan-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-suffix { font-size: 18px; font-weight: 500; color: var(--text-sec); }
.plan-tagline { font-size: 14px; color: var(--text-sec); margin-bottom: 24px; line-height: 1.55; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.plan-features li { font-size: 15px; color: var(--text-sec); padding-left: 22px; position: relative; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.plan-cta { width: 100%; justify-content: center; }

.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-icon { font-size: 24px; flex-shrink: 0; }
.guarantee-icon svg { width: 22px; height: 22px; }
.pricing-guarantee p { font-size: 15px; color: var(--text-sec); line-height: 1.65; }

/* ===================== SETUP FEE NOTE ===================== */
.pricing-setup-fee {
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
  margin-top: 24px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===================== INTEGRATIONS ===================== */
.integrations-section { background: var(--bg); padding: 64px 0; }
.integrations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 36px auto 16px;
  max-width: 800px;
}
.integration-tile {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.integration-tile:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); color: var(--text); }
.integrations-more { font-size: 12px; color: var(--text-mute); margin-top: 8px; }

/* ===================== TESTIMONIAL ===================== */
.testimonial-section { background: var(--bg-alt); padding: 80px 0; }
.testimonial-wrap { max-width: 600px; margin: 0 auto; text-align: center; }
.testimonial-stars { color: var(--amber); font-size: 22px; letter-spacing: 3px; margin-bottom: 24px; }
.testimonial-quote {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  quotes: "\201C" "\201D";
}
.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after  { content: close-quote; }
.testimonial-attr { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.15);
  border: 2px solid rgba(245,158,11,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--amber-dk); flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; text-align: left; }
.testimonial-biz  { font-size: 13px; color: var(--text-sec); text-align: left; }

/* ===================== FAQ ===================== */
.faq-section { background: var(--bg); }
.faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,158,11,0.45); }
.faq-q {
  width: 100%;
  background: none; border: none;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 20px 24px;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--amber-dk); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-mute);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0;
}

/* ===================== FINAL CTA ===================== */
.final-cta { background: var(--bg-dark); padding: 100px 0; }
.final-cta-h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.final-cta-sub {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}
.final-cta-btn  { font-size: 17px; padding: 16px 36px; }
.final-cta-micro { font-size: 13px; color: #555; margin-top: 16px; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--bg-dark);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { color: #fff; }
.footer-logo span { color: var(--amber); }
footer .logo { color: #fff; }
footer .logo span { color: var(--amber); }
.footer-copy { font-size: 13px; color: #555; margin-top: 6px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: #666; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #ccc; }

/* ===================== DEMO MODAL ===================== */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.demo-modal-overlay.open { opacity: 1; pointer-events: auto; }
.demo-modal {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.demo-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  font-size: 18px; color: var(--text-mute); cursor: pointer; padding: 4px 8px;
}
.demo-modal-close:hover { color: var(--text); }
.demo-modal h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.demo-modal > p { font-size: 15px; color: var(--text-sec); margin-bottom: 24px; }
.demo-modal-options { display: flex; flex-direction: column; gap: 12px; }
.demo-modal-opt {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.demo-modal-opt:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.modal-opt-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.demo-modal-opt strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.demo-modal-opt p { font-size: 13px; color: var(--text-sec); margin: 0; line-height: 1.45; }

/* ===================== SUB-PAGE LAYOUTS ===================== */

.page-hero {
  background: var(--bg-dark);
  padding: 120px 0 64px;
  text-align: center;
  margin-top: 88px;
}
.page-hero .section-label { color: var(--amber); }
.page-hero .section-label::before { background: var(--amber); }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.08;
}
.page-hero p {
  font-size: 18px;
  color: #bbb;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.page-hero em { color: var(--amber); }

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

.hiw-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.hiw-detail-step { display: flex; flex-direction: column; }
.step-badge {
  width: 44px; height: 44px;
  background: var(--amber);
  color: #111;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.hiw-detail-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.hiw-detail-step p  { font-size: 16px; color: var(--text-sec); line-height: 1.65; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--amber-dk);
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; flex-shrink: 0; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.card p  { font-size: 15px; color: var(--text-sec); line-height: 1.65; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--amber-dk);
}
.service-icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p  { font-size: 15px; color: var(--text-sec); line-height: 1.65; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 14px; color: var(--text-sec);
  padding-left: 20px; position: relative; line-height: 1.55;
}
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

.included-list {
  display: flex; flex-direction: column;
  max-width: 800px; margin: 0 auto;
}
.included-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.included-item:last-child { border-bottom: none; }
.included-left { flex: 1; }
.included-label { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.included-desc  { font-size: 14px; color: var(--text-sec); line-height: 1.55; }
.included-badge {
  background: rgba(245,158,11,0.15);
  color: var(--amber-dk);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg);
  border: 1.5px solid rgba(245,158,11,0.4);
  border-radius: var(--r);
  padding: 24px 28px;
  max-width: 700px;
}
.guarantee-body p { font-size: 15px; color: var(--text-sec); line-height: 1.65; margin: 0; }

.cta-strip {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}
.cta-strip p {
  font-size: 18px;
  color: rgba(17,17,17,0.75);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-strip em { font-style: italic; }
.cta-btns  { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-trust { font-size: 13px; color: rgba(17,17,17,0.65); margin-top: 20px; }
.cta-pricing { font-size: 14px; font-weight: 600; color: rgba(17,17,17,0.75); margin-top: 8px; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-left > p { font-size: 17px; color: var(--text-sec); line-height: 1.65; margin-bottom: 28px; }
.contact-trust { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-trust-item { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.check-icon {
  width: 28px; height: 28px;
  background: rgba(245,158,11,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--amber-dk);
}
.check-icon svg { width: 14px; height: 14px; }
.contact-email-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
}
.contact-email-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 6px;
}
.contact-email-box > p { font-size: 15px; color: var(--text-sec); margin: 0; }
.contact-email-box a { color: var(--amber-dk); text-decoration: none; }
.contact-email-box a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; }
.divider-line {
  display: flex; align-items: center; gap: 16px;
  color: var(--text-mute); font-size: 13px;
  margin: 20px 0;
}
.divider-line::before, .divider-line::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-sec); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-group label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 400; color: var(--text-main); cursor: pointer; }
.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
  position: relative;
}
.checkbox-group input[type="checkbox"]:checked {
  background: var(--amber);
  border-color: var(--amber);
}
.checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; margin-top: 4px; }

/* ===================== RESPONSIVE ===================== */
.nav-links {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 32px;
  gap: 28px;
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: opacity 0.3s, transform 0.3s;
}
.nav-links.open { opacity: 1; pointer-events: auto; transform: translateX(0); }
.nav-links a { font-size: 24px; font-weight: 600; }

@media (min-width: 769px) {
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    z-index: auto;
  }
  .nav-links a { font-size: 15px; font-weight: 500; }
}

@media (max-width: 1024px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .hiw-connector { display: none; }
  .hiw-step { padding: 0; text-align: left; }
  .hiw-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .card-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .demo-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: translateY(0); }
  .addon-featured { flex-direction: column; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  section { padding: 60px 0; }
  .container { padding: 0 20px; }

  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .demo-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .demo-card { min-width: 280px; flex-shrink: 0; scroll-snap-align: start; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { flex-direction: column; gap: 14px; }
  .final-cta-h2 { font-size: clamp(28px, 8vw, 44px); }
}

@media (max-width: 768px) {
  .trust-bar-inner { flex-direction: column; align-items: center; gap: 6px; }
  .trust-dot { display: none; }
}

@media (max-width: 600px) {
  .hiw-grid-6 { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 48px; }
  .trust-bar-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  .trust-dot { display: none; }
  .demo-try-btns { flex-direction: column; }
  .pricing-guarantee { flex-direction: column; align-items: flex-start; }
  .addon-featured { padding: 24px 20px; }
}

/* ===================== PRICING TEASER (homepage) ===================== */
.pricing-teaser {
  background: var(--bg-alt);
  padding: 64px 0;
  text-align: center;
}
.pricing-teaser-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pricing-teaser-label {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.pricing-teaser-sub {
  font-size: 17px;
  color: var(--text-sec);
  margin: 0 0 8px;
}

/* ===================== NAV ACTIVE STATE ===================== */
.nav-active {
  color: var(--amber-dk) !important;
  font-weight: 700 !important;
}

/* ===================== COMPARISON TABLE ===================== */
.comparison-section { background: var(--bg-alt); }
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  min-width: 560px;
}
.comparison-table thead tr {
  background: var(--bg-dark);
  color: #fff;
}
.comparison-table th {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--border);
  line-height: 1.3;
}
.comparison-table th.feature-col { text-align: left; color: rgba(255,255,255,0.7); }
.comparison-table th.col-popular {
  background: rgba(245,158,11,0.18);
  color: var(--amber);
}
.plan-price-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
}
.comparison-table td {
  padding: 14px 20px;
  font-size: 15px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table td.feature-col,
.comparison-table td.feature-name { text-align: left; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table td.col-popular { background: rgba(245,158,11,0.06); }
.row-alt { background: rgba(245,158,11,0.03); }
.check { color: var(--amber-dk); font-weight: 700; font-size: 16px; }
.dash  { color: var(--text-mute); font-size: 16px; }
.feature-name { font-weight: 600; color: var(--text); font-size: 15px; }
.feature-text { font-size: 14px; color: var(--text-sec); }

/* ===================== ADD-ONS TEASER (pricing page) ===================== */
.addons-teaser-section { background: var(--bg); }
.addons-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
}
.addons-teaser-text h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.addons-teaser-text p  { font-size: 16px; color: var(--text-sec); margin: 0; max-width: 540px; }

/* ===================== GUARANTEE SECTION (pricing page) ===================== */
.guarantee-section { background: var(--bg-alt); padding: 48px 0; }

/* ===================== ADD-ONS SECTION (services page) ===================== */
.addons-section { background: var(--bg); }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; gap: 32px; }
.blog-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow); border-color: rgba(245,158,11,0.4); }
.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}
.blog-card-excerpt {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 24px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--amber-dk);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1.5px solid var(--amber);
  padding-bottom: 1px;
}
.blog-card-link:hover { color: var(--text); border-color: var(--text); }
.blog-more-soon {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
}

/* ===================== RESPONSIVE ADDITIONS ===================== */
@media (max-width: 768px) {
  .addons-teaser-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .blog-card { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: 14px; }
}
