/* ===========================================================
   TRAVEL BY CAROL — Landing Page
   Mobile-first. Paleta editorial de viagem (base no Instagram).
=========================================================== */

:root {
  --color-bg: #faf6f0;
  --color-bg-alt: #f1e8db;
  --color-card: #ffffff;
  --color-ink: #22323b;
  --color-ink-soft: #55666e;
  --color-primary: #1b3a4b;
  --color-primary-dark: #10242e;
  --color-accent: #c16b3e;
  --color-accent-dark: #a3562f;
  --color-gold: #c9a15a;
  --color-border: #e6dbc9;
  --color-white: #ffffff;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 32px rgba(27, 58, 75, 0.12);
  --shadow-card: 0 8px 24px rgba(27, 58, 75, 0.08);

  --container-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}

p { margin: 0 0 16px; color: var(--color-ink-soft); }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

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

.section-tight {
  padding: 32px 0;
}

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

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.section-head p { margin: 0 auto; }

.section-plane-pattern {
  position: relative;
  overflow: hidden;
}
.section-plane-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/img/pattern-selos.webp");
  background-size: 320px 320px;
  background-repeat: repeat;
  opacity: 0.07;
}
.section-plane-pattern > * {
  position: relative;
  z-index: 1;
}

.section-head-wide { max-width: 700px; }

.section-photo-bg {
  position: relative;
  overflow: hidden;
}
.section-photo-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-photo-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.section-photo-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 36, 46, 0.68) 0%, rgba(16, 36, 46, 0.58) 40%, rgba(16, 36, 46, 0.72) 100%);
}
.section-photo-bg > .section-head,
.section-photo-bg > .container {
  position: relative;
  z-index: 1;
}
.section-photo-bg .eyebrow { color: var(--color-gold); }
.section-photo-bg .section-head h2 { color: var(--color-white); }
.section-head p.one-line { white-space: normal; }
@media (min-width: 640px) {
  .section-head p.one-line { white-space: nowrap; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(193, 107, 62, 0.35);
}
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }

.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn-light:hover { background: var(--color-gold); color: var(--color-white); transform: translateY(-2px); }

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 560px) {
  .btn-row { flex-direction: row; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.logo span { color: var(--color-accent); }

.header-cta { display: none; }
@media (min-width: 860px) {
  .header-cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    height: clamp(600px, 74vh, 680px);
  }
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 560px;
  padding: 40px 20px 36px;
}
@media (min-width: 900px) {
  .hero-copy {
    max-width: none;
    padding: 28px 24px 28px clamp(220px, 21vw, 280px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-copy > * { max-width: none; }
}

.hero .eyebrow { color: var(--color-accent); }

.hero h1 {
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero h1 .h1-accent {
  color: var(--color-accent);
}

.hero-lead {
  font-size: 16.5px;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 15.5px;
}
.hero-checks li::before {
  content: "\2713";
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.hero-photo-wrap {
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero-photo { min-height: 100%; }
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: 68% 34%;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--color-primary);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  padding: 16px 20px;
}
.trust-item {
  color: var(--color-white);
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
}
@media (min-width: 700px) {
  .trust-strip .container { flex-wrap: nowrap; gap: 32px; padding: 18px 20px; }
  .trust-item { font-size: 13.5px; gap: 8px; white-space: nowrap; flex-shrink: 0; }
}
.trust-item .dot { color: var(--color-gold); font-size: 18px; line-height: 0; }

/* ---------- Problem / Story ---------- */
.problem-section {
  overflow: hidden;
}

.problem-layout {
  display: flex;
  flex-direction: column;
}
@media (min-width: 860px) {
  .problem-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 460px;
  }
}

.problem-text {
  padding: 56px 20px;
}
@media (min-width: 860px) {
  .problem-text {
    order: 2;
    padding: 40px max(20px, calc((100vw - var(--container-w)) / 2 + 20px)) 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.problem-photos {
  display: flex;
  height: 320px;
  width: 100%;
}
@media (min-width: 860px) {
  .problem-photos { order: 1; }
}
@media (min-width: 860px) {
  .problem-photos { height: auto; }
}
.problem-photo {
  flex: 1;
  min-width: 0;
  height: 100%;
}
.problem-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Bio (Quem é a Carol) ---------- */
.bio-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 860px) {
  .bio-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.bio-photo-frame {
  max-width: 540px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgba(27, 58, 75, 0.22));
}
.bio-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-copy .eyebrow { display: block; }
.bio-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--color-accent);
  margin: 20px 0;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-placeholder {
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 13px;
  padding: 20px;
}
.testimonial-placeholder span {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

/* ---------- Services ---------- */
.service-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .service-cards { gap: 24px; }
}
.service-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--color-gold);
  min-width: 0;
}
@media (min-width: 720px) {
  .service-card { padding: 32px 26px; }
}
.service-card.featured {
  border-top-color: var(--color-accent);
  box-shadow: var(--shadow-soft);
}
.service-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.service-card h3 { font-size: 16px; margin-bottom: 6px; }
.service-tag {
  font-size: 12.5px;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}
.service-card p { font-size: 13px; margin-bottom: 10px; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
  flex: 1;
}
.service-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 12.5px;
  color: var(--color-ink-soft);
  display: flex;
  gap: 6px;
}
.service-list li::before { content: "•"; color: var(--color-gold); font-weight: 700; }
.service-card .btn { margin-top: auto; font-size: 13px; padding: 12px 14px; }

.urgency-note {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-accent-dark);
  background: rgba(193, 107, 62, 0.1);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 10px 0 0;
  text-align: center;
}
.service-card .urgency-note { margin-bottom: 4px; }

@media (min-width: 720px) {
  .service-card h3 { font-size: 21px; margin-bottom: 8px; }
  .service-card p { font-size: 15px; margin-bottom: 16px; }
  .service-list { margin: 16px 0 24px; }
  .service-list li { padding: 7px 0; font-size: 14.5px; gap: 8px; }
  .service-card .btn { font-size: 15.5px; padding: 16px 28px; }
  .urgency-note { font-size: 13px; padding: 9px 12px; margin-top: 12px; }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14.5px; }

.steps-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Deliverables checklist ---------- */
.deliverables-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .deliverables-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .deliverables-grid { grid-template-columns: repeat(4, 1fr); }
}
.deliverable-item {
  background: var(--color-card);
  border-radius: 12px;
  padding: 16px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.deliverable-item .ico { color: var(--color-gold); font-size: 16px; flex-shrink: 0; }

/* ---------- Destinations ---------- */
.destination-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-primary);
}
.chip.more { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* ---------- Roteiros catalog ---------- */
.catalog-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
.catalog-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.catalog-cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.catalog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.catalog-body h3 { font-size: 17px; margin: 0; }
.catalog-body .btn { margin-top: auto; }

/* ---------- Why choose ---------- */
.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.why-item .ico { font-size: 22px; margin-bottom: 10px; display: block; }
.why-item p { font-size: 14px; margin: 0; color: var(--color-ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--color-card);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--color-accent); color: var(--color-white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-answer p { padding: 0 20px 18px; margin: 0; font-size: 14.5px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
.final-cta h2 { color: var(--color-white); }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto; }
.final-cta .btn-row { justify-content: center; align-items: center; }
@media (min-width: 560px) { .final-cta .btn-row { justify-content: center; } }

/* ---------- Contact form ---------- */
.contact-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--color-bg);
  color: var(--color-ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-row textarea { resize: vertical; min-height: 96px; }

/* ---------- Contact modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(16, 36, 46, 0.62);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.is-open { display: flex; }

.modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  box-shadow: var(--shadow-soft);
}
.modal-box .contact-wrap {
  max-width: none;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}
.modal-box .section-head { margin-bottom: 24px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: none;
  font-size: 20px;
  line-height: 1;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--color-border); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  padding-bottom: 76px;
}
@media (min-width: 860px) {
  .site-footer { padding-bottom: 0; }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 52px 20px 40px;
  text-align: center;
}
@media (min-width: 720px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }
}

.footer-brand { max-width: 340px; margin: 0 auto; }
@media (min-width: 720px) { .footer-brand { margin: 0; } }
.footer-brand .logo { color: var(--color-white); margin-bottom: 10px; justify-content: center; }
@media (min-width: 720px) { .footer-brand .logo { justify-content: flex-start; } }
.footer-brand .logo span { color: var(--color-gold); }
.footer-brand p { color: rgba(255, 255, 255, 0.65); font-size: 13.5px; margin-bottom: 20px; }

.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media (min-width: 720px) { .footer-cta-row { justify-content: flex-start; } }

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.footer-social:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 6px;
}
@media (min-width: 720px) { .footer-logo-img { margin: 0 0 12px; } }

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.footer-nav a, .footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s ease;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  padding: 20px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}
@media (min-width: 720px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  display: flex;
  gap: 10px;
}
.sticky-cta .btn { flex: 1; padding: 14px 10px; font-size: 14px; }
@media (min-width: 860px) {
  .sticky-cta { display: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-0 { margin-top: 0; }

@media (max-width: 859px) {
  body { padding-bottom: 76px; }
}
