/* ==========================================================================
   Lucky Bug Pet — stylesheet
   Light theme · warm cream background · deep teal accent
   ========================================================================== */

:root {
  --bg: #F7F4EE;
  --bg-soft: #EFEAE0;
  --surface: #FFFFFF;
  --ink: #1B1B1A;
  --ink-soft: #54524C;
  --muted: #6C6A61;
  --accent: #0E7A64;
  --accent-dark: #0A5142;
  --accent-soft: #DCEBE4;
  --accent-ink: #FFFFFF;
  --forest: #14342C;
  --forest-soft: #1D463B;
  --forest-ink: #EAF2EE;
  --line: #E4DED2;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(20, 52, 44, 0.10);
  --shadow-sm: 0 8px 20px rgba(20, 52, 44, 0.08);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

body {
  font-size: 16px;
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.45rem; }
h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

p { margin: 0 0 1rem; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

/* --------------------------------------------------------------------------
   Pill-shaped floating navigation
   -------------------------------------------------------------------------- */

.main-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 26px;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 10px 9px 20px;
  box-shadow: var(--shadow-sm);
  max-width: calc(100% - 32px);
}

.main-nav.is-scrolled {
  box-shadow: var(--shadow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-brand:hover { color: var(--ink); }

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-ink);
  border-radius: 50%;
  top: 6px;
  left: 6px;
  box-shadow: 9px 9px 0 var(--accent-ink);
}

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

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 2px;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--accent-dark); }

.nav-cta {
  background: var(--accent);
  color: var(--accent-ink) !important;
  border-radius: 999px;
  padding: 9px 20px !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 13px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.btn-ghost:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* --------------------------------------------------------------------------
   Hero — quote / testimonial slider
   -------------------------------------------------------------------------- */

.hero-section {
  padding: 148px 24px 90px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, var(--accent-soft) 0%, transparent 42%),
    radial-gradient(circle at 88% 12%, #EAF0EC 0%, transparent 38%),
    var(--bg);
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* slider */

.hero-slider {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 44px 44px 40px;
  text-align: left;
  position: relative;
}

.hero-slider::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 44px;
  width: 46px;
  height: 6px;
  border-radius: 3px;
  background: var(--accent);
}

.hero-slider-track { position: relative; min-height: 170px; }

.t-slide {
  display: none;
  margin: 0;
  animation: slideFade 0.5s ease;
}

.t-slide.is-active { display: block; }

@keyframes slideFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.t-slide p {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.6rem;
}

.t-slide footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.t-meta { display: flex; flex-direction: column; }
.t-meta strong { font-weight: 600; color: var(--ink); }
.t-meta em { font-style: normal; color: var(--muted); font-size: 0.9rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.slider-btn:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.slider-dots { display: flex; gap: 8px; }

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dots .dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   Statement band
   -------------------------------------------------------------------------- */

.statement-band {
  background: var(--forest);
  color: var(--forest-ink);
  padding: 84px 24px;
  text-align: center;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--forest-ink);
  max-width: 900px;
  margin: 0 auto 1.4rem;
}

.statement-attr {
  color: var(--accent-soft);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Section scaffolding
   -------------------------------------------------------------------------- */

.section-head {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head .eyebrow { margin-bottom: 0.8rem; }

.section-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Bento grid
   -------------------------------------------------------------------------- */

.bento-section {
  padding: 96px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.bento-card.bento-lg { grid-column: span 2; }

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.bento-card h3 { font-size: 1.28rem; }

.bento-card p { color: var(--ink-soft); margin: 0; }

.bento-tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 6px 14px;
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */

.process-section {
  padding: 96px 24px;
  background: var(--bg-soft);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 880px;
  margin: 0 auto;
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-step:last-child { border-bottom: none; }

.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  min-width: 78px;
}

.process-body h3 { margin-bottom: 0.5rem; }
.process-body p { color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */

.comparison-section {
  padding: 96px 24px;
  max-width: 980px;
  margin: 0 auto;
}

.compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  text-align: left;
  padding: 24px 28px;
  background: var(--bg-soft);
  color: var(--ink);
  width: 50%;
}

.compare-table thead th.compare-us {
  background: var(--forest);
  color: var(--forest-ink);
}

.compare-table tbody td {
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.compare-table tbody td.compare-us {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats-band {
  background: var(--forest);
  color: var(--forest-ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 64px 24px;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.stat {
  text-align: center;
  padding: 20px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--forest-ink);
  display: block;
  line-height: 1;
}

.stat-label {
  color: var(--accent-soft);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Services — alternating rows
   -------------------------------------------------------------------------- */

.services-section {
  padding: 96px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-of-type { border-bottom: 1px solid var(--line); }

.service-row.reversed .service-visual { order: -1; }

.service-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}

.service-text h3 { margin-bottom: 1rem; }
.service-text p { color: var(--ink-soft); }

.service-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

/* service visuals */

.service-visual {
  background: var(--bg-soft);
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  position: relative;
}

.sv-block {
  border-radius: 14px;
  padding: 26px 30px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

.sv-block-a { background: var(--surface); color: var(--ink-soft); border: 1px solid var(--line); }
.sv-block-b { background: var(--accent); color: var(--accent-ink); }
.sv-arrow { color: var(--accent); font-size: 1.6rem; }

.sv-window {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  width: 100%;
  max-width: 300px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sv-window-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.sv-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.sv-window-bar span:nth-child(1) { background: var(--accent); }

.sv-window-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.sv-line { height: 10px; border-radius: 5px; background: var(--accent-soft); }
.sv-line.short { width: 60%; }

.sv-row {
  height: 34px;
  border-radius: 8px;
  background: var(--bg-soft);
}

.sv-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 280px;
  place-items: center;
}

.sv-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}

.sv-node.core {
  background: var(--accent);
  width: 60px;
  height: 60px;
  grid-column: 2;
  grid-row: 2;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-section {
  padding: 96px 24px;
  background: var(--bg-soft);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-question::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question::after { transform: rotate(45deg); }

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-section {
  padding: 96px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-blurb { color: var(--ink-soft); }

.contact-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.c-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-list a { color: var(--ink); font-weight: 500; }
.contact-list a:hover { color: var(--accent-dark); }
.contact-list span { color: var(--ink); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.9rem;
  color: var(--accent-dark);
  margin: 0;
  min-height: 1.2em;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--forest);
  color: var(--forest-ink);
  padding-top: 80px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.footer-newsletter {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(234, 242, 238, 0.18);
  flex-wrap: wrap;
}

.fn-text h3 { color: var(--forest-ink); margin-bottom: 0.5rem; }
.fn-text p { color: var(--accent-soft); margin: 0; max-width: 420px; }

.fn-form { display: flex; gap: 12px; flex-wrap: wrap; }

.fn-form input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest-ink);
  background: var(--forest-soft);
  border: 1px solid rgba(234, 242, 238, 0.25);
  border-radius: 999px;
  padding: 12px 20px;
  min-width: 240px;
}

.fn-form input::placeholder { color: var(--accent-soft); }
.fn-form input:focus { outline: none; border-color: var(--accent-soft); }

.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-brand p {
  color: var(--accent-soft);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-logo { color: var(--forest-ink) !important; }

.footer-col h4 {
  color: var(--forest-ink);
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-col a, .footer-col span { color: var(--accent-soft); }
.footer-col a:hover { color: var(--forest-ink); }

.footer-watermark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 13rem);
  font-weight: 600;
  color: #1D463B;
  line-height: 0.8;
  text-align: center;
  user-select: none;
  pointer-events: none;
  padding: 20px 0 0;
  white-space: nowrap;
}

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(234, 242, 238, 0.18);
  position: relative;
  z-index: 2;
}

.footer-bottom p { margin: 0; color: var(--accent-soft); font-size: 0.88rem; }

.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--accent-soft); font-size: 0.88rem; }
.footer-legal-links a:hover { color: var(--forest-ink); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.bento-lg { grid-column: span 2; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; gap: 30px; }
  .service-row.reversed .service-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .main-nav {
    gap: 0;
    justify-content: space-between;
    width: calc(100% - 32px);
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    display: none;
  }

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

  .nav-links a { padding: 12px 16px; border-radius: 12px; }

  .nav-links a.nav-cta { text-align: center; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-lg { grid-column: span 1; }
  .compare-table thead th,
  .compare-table tbody td { padding: 16px; }
  .hero-slider { padding: 34px 26px 30px; }
  .hero-slider::before { left: 26px; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 40px 16px; }
  .process-step { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
}
