/* ====== GRIDBREAK SHARED STYLES ====== */
:root {
  --bg:        #faf9f6;
  --white:     #ffffff;
  --ink:       #1a1916;
  --ink2:      #3d3c38;
  --muted:     #8a8880;
  --rule:      #e8e5de;
  --yellow:    #d4a017;
  --green:     #2d6a4f;
  --green2:    #245c44;
  --green-bg:  #eaf4ee;
  --orange:    #c0392b;
  --red:       #e63946;
  --red-bg:    #fef2f2;
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.11);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.urgency-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  line-height: 1.4;
}
.urgency-bar strong { font-weight: 800; }

.qual-strip {
  background: linear-gradient(135deg, #1a1916 0%, #2d2c28 100%);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.qual-strip strong { color: var(--yellow); font-weight: 700; }
.qual-strip .small { display: block; font-size: 11px; color: #aaa; margin-top: 2px; }

nav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  gap: 10px;
}
.logo {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  text-decoration: none;
}
.logo span { color: var(--green); }
.nav-slots {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--red-bg);
  border: 1px solid #ffd0cc;
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.hero { background: var(--white); padding: 32px 20px 36px; border-bottom: 1px solid var(--rule); }
.hero-inner { max-width: 540px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

h1 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: clamp(30px, 9vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
h1 em { font-style: italic; color: var(--green); }
h1 .strike { text-decoration: line-through; text-decoration-color: var(--red); color: var(--muted); }

.hero-sub {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-sub .highlight {
  background: linear-gradient(180deg, transparent 60%, #fff3a8 60%);
  font-weight: 600;
  color: var(--ink);
}

.breaking {
  background: var(--red-bg);
  border: 1px solid #ffd0cc;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 24px;
}
.breaking-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.breaking-tag {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 4px;
  flex-shrink: 0;
}
.breaking-date {
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
}
.breaking p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.55;
}
.breaking strong { color: var(--ink); }

.qual-visual {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 26px;
}
.qual-visual-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.qual-houses { display: flex; gap: 6px; margin-bottom: 12px; font-size: 28px; line-height: 1; }
.qual-house { opacity: 0.25; filter: grayscale(1); }
.qual-house.qualified { opacity: 1; filter: none; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.qual-visual-text { font-size: 13px; color: var(--ink2); line-height: 1.55; }
.qual-visual-text strong { color: var(--ink); font-weight: 700; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 30px; }
.stat-pill { background: var(--bg); border: 1px solid var(--rule); padding: 12px 10px; border-radius: 10px; text-align: center; }
.stat-num { font-family: 'Lora', serif; font-weight: 700; font-size: clamp(20px, 5.5vw, 26px); color: var(--ink); letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.stat-num .up { color: var(--orange); }
.stat-num .good { color: var(--green); }
.stat-label { font-size: 11px; color: var(--muted); line-height: 1.3; }

.timeline-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.timeline-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 6px 0;
}
.timeline-emoji {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.timeline-text { padding-top: 4px; }
.timeline-text strong { font-size: 13px; color: var(--ink); font-weight: 700; display: block; line-height: 1.3; }
.timeline-text span { font-size: 12px; color: var(--muted); }

.form-card { background: var(--white); border: 1px solid var(--rule); box-shadow: var(--shadow-lg); border-radius: 14px; overflow: hidden; position: relative; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%); z-index: 2; }
.form-card-top { background: var(--green); padding: 20px 22px; }
.form-card-top h2 { font-family: 'Lora', serif; font-weight: 600; font-size: 19px; color: #fff; margin-bottom: 5px; letter-spacing: -0.01em; }
.form-card-top p { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; }

.progress-bar {
  background: rgba(0,0,0,0.18);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.progress-dots { display: flex; gap: 4px; flex: 1; }
.progress-dot {
  height: 4px;
  flex: 1;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: background 0.3s;
}
.progress-dot.active { background: var(--yellow); }
.progress-dot.done { background: #6ee7b7; }
.progress-label {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  white-space: nowrap;
}

.step-screen {
  display: none;
  padding: 24px 22px;
  flex-direction: column;
  gap: 16px;
  animation: stepIn 0.3s ease;
}
.step-screen.active { display: flex; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-question {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.step-hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.big-options { display: flex; flex-direction: column; gap: 10px; }
.big-option {
  background: var(--bg);
  border: 2px solid var(--rule);
  border-radius: 12px;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  width: 100%;
}
.big-option:hover { border-color: #bbb; }
.big-option:active { transform: scale(0.99); }
.big-option.selected {
  background: var(--green-bg);
  border-color: var(--green);
  color: var(--green);
}
.big-option-icon { font-size: 22px; flex-shrink: 0; }
.big-option-arrow {
  color: var(--green);
  font-size: 18px;
  opacity: 0.4;
  transition: opacity 0.15s, transform 0.15s;
}
.big-option:hover .big-option-arrow { opacity: 1; transform: translateX(2px); }

.step-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 4px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
}
.step-back:hover { color: var(--ink); }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field label { font-size: 12px; font-weight: 600; color: var(--ink2); }
.field input, .field select {
  background: var(--bg);
  border: 1.5px solid var(--rule);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 13px 14px;
  outline: none;
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: #c5c3bc; }
.field input:focus, .field select:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(45,106,79,0.12); }

.consent-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.consent-box.checked { border-color: var(--green); background: var(--green-bg); }
.consent-checkbox {
  width: 20px; height: 20px;
  border: 2px solid var(--rule);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.15s;
}
.consent-box.checked .consent-checkbox {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.consent-box.checked .consent-checkbox::after { content: '✓'; }
.consent-text { font-size: 11px; color: var(--ink2); line-height: 1.55; }
.consent-text a { color: var(--green); text-decoration: underline; font-weight: 600; }

.cta-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 17px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(45,106,79,0.25);
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 2.6s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }
.cta-btn:active { transform: scale(0.99); }
.cta-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cta-btn:disabled::after { display: none; }

.checking-screen { display: none; padding: 40px 22px; text-align: center; }
.checking-spinner { width: 44px; height: 44px; margin: 0 auto 16px; border: 4px solid var(--green-bg); border-top-color: var(--green); border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.checking-screen h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.checking-steps { display: flex; flex-direction: column; gap: 8px; max-width: 270px; margin: 0 auto; text-align: left; }
.checking-step { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); opacity: 0.4; transition: all 0.3s; }
.checking-step.active { opacity: 1; color: var(--ink2); }
.checking-step.done { opacity: 1; color: var(--green); }
.checking-step::before { content: '○'; font-size: 16px; color: var(--rule); }
.checking-step.active::before { content: '◐'; color: var(--green); }
.checking-step.done::before { content: '✓'; color: var(--green); font-weight: 700; }

.success-screen { display: none; padding: 36px 22px; text-align: center; }
.success-check {
  width: 62px; height: 62px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px;
  animation: popCheck 0.5s ease;
}
@keyframes popCheck { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.received-tag {
  display: inline-block;
  background: var(--yellow);
  color: #4a3800;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.success-screen h3 { font-family: 'Lora', serif; font-size: 23px; font-weight: 700; margin-bottom: 12px; color: var(--ink); line-height: 1.2; }
.success-screen p { font-size: 14px; color: var(--ink2); line-height: 1.65; }
.success-screen strong { color: var(--green); }
.success-tips { margin-top: 20px; padding: 14px; background: var(--bg); border-radius: 10px; text-align: left; font-size: 12px; color: var(--ink2); }
.success-tips h4 { font-weight: 700; font-size: 12px; margin-bottom: 8px; color: var(--ink); }
.success-tips ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.success-tips li { display: flex; gap: 7px; line-height: 1.5; }
.success-tips li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.trust-bar { padding: 18px 16px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink2); font-weight: 500; }

.section { padding: 48px 20px; border-top: 1px solid var(--rule); }
.section-bg { background: var(--bg); }
.section-white { background: var(--white); }
.section-inner { max-width: 540px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.section h2 { font-family: 'Lora', serif; font-weight: 700; font-size: clamp(24px, 7vw, 34px); letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 28px; }
.section h2 em { font-style: italic; color: var(--green); }

.fact-cards { display: flex; flex-direction: column; gap: 10px; }
.fact-card { background: var(--white); border: 1px solid var(--rule); border-radius: 10px; padding: 18px; display: flex; gap: 14px; align-items: flex-start; }
.section-white .fact-card { background: var(--bg); }
.fact-icon { font-size: 22px; margin-top: 2px; min-width: 28px; flex-shrink: 0; }
.fact-body h4 { font-weight: 600; font-size: 15px; margin-bottom: 4px; line-height: 1.3; }
.fact-body p { font-size: 13px; color: var(--ink2); line-height: 1.6; }
.fact-source { font-size: 10px; color: var(--muted); margin-top: 6px; font-style: italic; }

.criteria-list { display: flex; flex-direction: column; gap: 10px; }
.criteria-item { background: var(--white); border: 1px solid var(--rule); border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.section-white .criteria-item { background: var(--bg); }
.criteria-num { background: var(--green-bg); border: 2px solid var(--green); color: var(--green); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.criteria-body h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; line-height: 1.3; }
.criteria-body p { font-size: 12px; color: var(--muted); line-height: 1.4; }

.testi-list { display: flex; flex-direction: column; gap: 12px; }
.testi { background: var(--white); border: 1px solid var(--rule); border-radius: 10px; padding: 18px; }
.testi-stars { color: var(--yellow); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-quote { font-size: 14px; color: var(--ink2); line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.testi-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.testi-loc { font-size: 11px; color: var(--muted); font-weight: 400; }
.savings-badge { background: var(--green-bg); color: var(--green); font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 100px; border: 1px solid rgba(45,106,79,0.2); white-space: nowrap; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.faq-q { padding: 15px 18px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; color: var(--ink); gap: 12px; line-height: 1.4; }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--green); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 18px; font-size: 13px; color: var(--ink2); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; }
.faq-item.open .faq-a { padding: 0 18px 16px; max-height: 400px; }

.cta-block { background: var(--green); padding: 46px 20px; text-align: center; }
.cta-block h2 { font-family: 'Lora', serif; font-weight: 700; font-size: clamp(22px, 6vw, 32px); color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; line-height: 1.2; }
.cta-block p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.cta-block .scarcity { font-size: 12px; font-weight: 700; color: #ffd0cc; margin-bottom: 20px; }
.cta-block a { display: inline-block; background: #fff; color: var(--green); font-weight: 700; font-size: 15px; padding: 15px 32px; border-radius: 10px; text-decoration: none; transition: opacity 0.15s; box-shadow: 0 4px 18px rgba(0,0,0,0.15); }

.disclaimer { padding: 26px 20px; border-top: 1px solid var(--rule); background: var(--white); }
.disclaimer p { font-size: 10px; color: #aaa; line-height: 1.7; max-width: 580px; margin: 0 auto; }
.disclaimer a { color: var(--muted); text-decoration: underline; }

footer { padding: 26px 20px; border-top: 1px solid var(--rule); background: var(--bg); display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer-logo { font-family: 'Lora', serif; font-weight: 700; font-size: 17px; color: var(--ink); }
.footer-logo span { color: var(--green); }
footer p { font-size: 11px; color: var(--muted); line-height: 1.5; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; font-size: 11px; }
.footer-links a { color: var(--green); text-decoration: none; font-weight: 500; }
.footer-links a:hover { text-decoration: underline; }

@keyframes fadeUp { from { opacity:0; transform:translateY(15px); } to { opacity:1; transform:translateY(0); } }
.hero-inner > * { animation: fadeUp 0.5s ease forwards; opacity: 0; }
.eyebrow         { animation-delay:.05s; }
h1               { animation-delay:.12s; }
.breaking        { animation-delay:.18s; }
.hero-sub        { animation-delay:.22s; }
.qual-visual     { animation-delay:.28s; }
.stat-row        { animation-delay:.34s; }
.timeline-card   { animation-delay:.38s; }
.form-card       { animation-delay:.44s; }

.field input.invalid, .field select.invalid { border-color: var(--orange) !important; }

.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 1000; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.2s ease forwards; }
.popup-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.popup-box { background: #fff; border-radius: 16px; padding: 32px 24px 24px; max-width: 360px; width: 100%; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,0.4); animation: popIn 0.3s ease forwards; position: relative; }
@keyframes popIn { from { opacity:0; transform: scale(0.92); } to { opacity:1; transform: scale(1); } }
.popup-close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; padding: 6px; }
.popup-emoji { font-size: 36px; margin-bottom: 12px; }
.popup-box h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--ink); line-height: 1.25; }
.popup-box p { font-size: 13px; color: var(--ink2); line-height: 1.6; margin-bottom: 20px; }
.popup-box .popup-cta { display: block; background: var(--green); color: #fff; font-weight: 700; font-size: 15px; padding: 14px 24px; border-radius: 10px; text-decoration: none; cursor: pointer; width: 100%; border: none; }

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 999;
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-text { flex: 1; min-width: 200px; font-size: 12px; line-height: 1.5; color: #ccc; }
.cookie-text a { color: var(--yellow); text-decoration: underline; }
.cookie-btn {
  background: var(--yellow);
  color: var(--ink);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s ease;
}
.sticky-cta.show { display: flex; }
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.sticky-cta-text {
  flex: 1;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
.sticky-cta-text strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 1px;
}
.sticky-cta-btn {
  background: var(--green);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(45,106,79,0.25);
}
.sticky-cta-btn:active { transform: scale(0.98); }
body.with-sticky { padding-bottom: 80px; }

.legal-page { background: var(--white); min-height: 100vh; }
.legal-header {
  background: var(--green);
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}
.legal-header .breadcrumb {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.legal-header .breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.legal-header h1 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: clamp(26px, 7vw, 36px);
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.legal-header .updated {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.legal-content p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-content h2 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--green); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  margin-top: 24px;
  padding: 10px 16px;
  background: var(--green-bg);
  border-radius: 8px;
}
