:root{
  /* Brand (CTA + accents) */
  --brand:#990000;
  --brandDark:#7a0000;

  /* Base UI */
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#ffffff;
  --panel:#f7f7f8;
  --line:#e5e7eb;
  --shadow:0 12px 30px rgba(0,0,0,.08);
  --radius:16px;
  --max:1100px;

  /* Trust / Progress (GREEN) */
  --success:#16a34a;
  --successDark:#166534;
  --successBg:rgba(22,163,74,.12);
  --successLine:rgba(22,163,74,.35);
  --successRing:rgba(22,163,74,.12);
  --successFill:rgba(22,163,74,.04);

  /* Reviews (YELLOW) */
  --star:#facc15;
  --starDark:#eab308;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit}
img{max-width:100%;height:auto;display:block}

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

/* Offset anchor scroll for fixed header */
:target{scroll-margin-top:96px}

/* Accessibility helper */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Header */
.header{
  position:fixed;
  top:0; left:0; right:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid rgba(229,231,235,.7);
  z-index:50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.3px;
}
.brand img{height:34px;width:auto}

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

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:14px;
}

.call strong{display:none}
@media (min-width:768px){
  .call strong{display:inline}
}

/* Buttons */
.btn{
  display:inline-flex;
  width:100%;
  align-items:center;
  justify-content:center;
  padding:14px 16px;
  border-radius:999px;
  border:1px solid var(--brand);
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, transform .05s ease;
}
.btn:hover{background:var(--brandDark); border-color:var(--brandDark)}
.btn:active{transform:translateY(1px)}

.btn.secondary{
  background:#fff;
  color:var(--brand);
  border-color:rgba(153,0,0,.35);
}
.btn.secondary:hover{
  background:rgba(153,0,0,.06);
  border-color:rgba(153,0,0,.55);
}

/* HERO */
.hero{
  padding-top:86px;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#fafafa;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(153,0,0,.08), transparent 60%),
    linear-gradient(180deg, #faf7f7 0%, #ffffff 55%);
  pointer-events:none;
  z-index:1;
}

.background-image-container{
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.22;
  pointer-events:none;
}

.background-image-container img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
}

.hero-inner{
  position:relative;
  z-index:2;
  padding:44px 0 34px;
  display:flex;
  justify-content:center;
}

.hero-copy{
  width:100%;
  max-width:860px;
  text-align:center;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  letter-spacing:.12em;
  font-weight:800;
  color:var(--brand);
  background:rgba(153,0,0,.08);
  border:1px solid rgba(153,0,0,.15);
  padding:6px 10px;
  border-radius:999px;
  margin:0 auto 14px;
  text-transform:uppercase;
}

.hero h1{
  margin:0 auto 12px;
  max-width:24ch;
  font-size:40px;
  line-height:1.08;
  letter-spacing:-.02em;
}

.subhead{
  margin:0 auto 18px;
  max-width:70ch;
  color:var(--muted);
  font-size:16px;
}

/* =========================
   HERO OFFER
   ========================= */
.hero-offer{
  margin:10px auto;
  max-width:760px;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  text-align:left;
}

.hero-offer-main{
  display:grid;
  grid-template-columns:1fr 240px;
  gap:10px;
  align-items:stretch;
}

.hero-offer-main input{
  width:100%;
  height:52px;
  border:1px solid var(--line);
  border-radius:12px;
  padding:14px;
  font-size:16px;
  outline:none;
  background: #f9fafb;
}

.hero-offer-main input:focus{
  background: #ffffff;
  border-color: var(--successLine);
  box-shadow: 0 0 0 3px var(--successRing);
  outline: none;
}

.hero-offer-main .btn{
  width:100%;
  height:52px;
  font-size:14px;
}

/* Address-only input – filled state */
.hero-offer-main input:not(:placeholder-shown){
  background: var(--successFill);
  border-color: var(--successLine);
}

.hero-offer-bottom{
  border-top:1px solid rgba(229,231,235,.45);
  padding-top:8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.hero-offer-micro{
  margin:0;
  font-size:12px;
  color:var(--muted);
  text-align:center;
  line-height:1.2;
}

.hero-offer-trust{
  display:inline-flex;
  width:fit-content;
  max-width:100%;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:0 auto;
  padding:0;
  border-top:none;
  flex-wrap:wrap;
}

.hero-offer-trust img{
  height:38px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
  opacity:.95;
}

@media (max-width:640px){
  .hero-inner{padding:34px 0 26px}
  .hero h1{font-size:30px}
  .hero-offer-main{grid-template-columns:1fr}
  .hero-offer-main .btn{height:52px}
  .hero-offer-trust img{height:40px}
}

/* Sections */
section{padding:44px 0}

.section-title{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.02em;
  text-align:center;
}

.section-sub{
  margin:0 auto 22px;
  max-width:720px;
  color:var(--muted);
  text-align:center;
}

/* Card */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

/* Seen In */
.seen{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
  padding:28px 0;
}

.seen h5{
  margin:0 0 14px;
  text-align:center;
  font-size:14px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
}

.logo-grid{
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  justify-content:center;
  align-items:center;
}

.logo-item{
  flex:0 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(229,231,235,.8);
  background:#fff;
  height:54px;
}

.logo-item img{
  height:34px;
  width:auto;
  max-width:140px;
  object-fit:contain;
}

@media (min-width:768px){
  .logo-item{height:60px}
  .logo-item img{height:38px; max-width:160px}
}

/* PROCESS */
.cards.three{
  display:grid;
  gap:14px;
  padding-top:34px;
}

@media (min-width:900px){
  .cards.three{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    align-items:stretch;
  }
}

.card.process-card{
  position:relative;
  padding-top:54px;
  overflow:visible;
}

.process-icon{
  position:absolute;
  top:-28px;
  left:50%;
  transform:translateX(-50%);
  width:58px;
  height:58px;
  border-radius:999px;
  background:var(--successBg);
  border:1px solid var(--successLine);
  color:var(--successDark);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 22px rgba(22,163,74,.18);
  z-index:2;
}

.process-icon svg{
  width:28px;
  height:28px;
  stroke:currentColor;
}

.process-title{
  margin:0 0 4px;
  font-size:16px;
  font-weight:800;
  letter-spacing:-.01em;
}

.process-sub{
  margin:0 0 10px;
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
}

.process-list{
  margin:0;
  padding-left:16px;
  list-style:disc;
}

.process-list li{
  margin:4px 0;
  font-size:14px;
  color:var(--text);
}

.context-bridge{
  margin:18px auto 0;
  max-width:720px;
  text-align:center;
  font-size:14px;
  color:var(--muted);
  font-style:italic;
}

/* SITUATIONS */
.situations{
  background:#ffffff;
  padding:56px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.situations .section-sub{max-width:760px}

.situations-grid{
  margin-top:26px;
  display:grid;
  gap:14px;
}

@media (min-width:768px){
  .situations-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (min-width:1024px){
  .situations-grid{grid-template-columns:repeat(4, minmax(0, 1fr))}
}

.situation-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  font-size:14px;
  line-height:1.4;
}

.s-icon{font-size:20px;line-height:1}

/* ======================================
   TESTIMONIALS
====================================== */
.testimonials{
  position:relative;
  background:linear-gradient(to bottom, #fafafa 0%, #ffffff 88%);
  padding-top:56px;
  padding-bottom:26px;
}

.testimonials::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:140px;
  height:1px;
  background:rgba(229,231,235,.9);
}

.testimonials + section{padding-top:26px}

.testimonials .testimonial-intro{margin-bottom:18px}
.testimonials .testimonial-intro .section-sub{margin:0 auto 6px}

.testimonials .testimonial-micro{
  margin:0;
  font-size:14px;
  color:var(--muted);
  text-align:center;
  line-height:1.45;
}

.t-shell{position:relative;margin-top:12px}
.t-viewport{outline:none}

.t-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:6px 2px 12px;
  scrollbar-width:none;
}
.t-track::-webkit-scrollbar{display:none}

.t-track .t-card{scroll-snap-align:start;flex:0 0 100%}
@media (min-width:900px){
  .t-track .t-card{flex:0 0 calc((100% - 28px) / 3)}
}

.t-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.t-top{display:flex;align-items:center;justify-content:space-between;gap:10px}

.t-stars{
  font-weight:900;
  letter-spacing:.08em;
  font-size:12px;
  color:var(--star);
}

.t-tag{
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
  padding:6px 10px;
  border-radius:999px;
  color:var(--successDark);
  background:var(--successBg);
  border:1px solid var(--successLine);
}

.t-quote{margin:0;color:var(--text);font-size:14px;line-height:1.55}

.t-person{
  margin-top:auto;
  padding-top:10px;
  border-top:1px solid rgba(229,231,235,.7);
}

.t-person strong{display:block;font-size:13px;font-weight:900}
.t-person span{display:block;margin-top:2px;font-size:12px;color:var(--muted)}

.t-more{
  border:1px solid rgba(229,231,235,.8);
  border-radius:12px;
  background:rgba(255,255,255,.7);
  padding:10px 12px;
}

.t-more summary{cursor:pointer;font-weight:900;list-style:none}
.t-more summary::-webkit-details-marker{display:none}
.t-more p{margin:10px 0 0;color:var(--muted);font-size:13px;line-height:1.5}

.t-nav{display:none !important}

/* --- DOTS (FULL OVERWRITE: red + oblong + button reset) --- */
.t-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}

.t-dot{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  padding:0;
  margin:0;
  background:transparent;
  font:inherit;
  line-height:0;
  -webkit-tap-highlight-color: transparent;

  width:22px;
  height:7px;
  border-radius:999px;
  border:1px solid rgba(153,0,0,.28);
  background:rgba(153,0,0,.14);
  cursor:pointer;
  opacity:1;
  transition:transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.t-dot:hover{ transform:translateY(-1px); }
.t-dot:active{ transform:translateY(0); }

.t-dot.is-active{
  background:var(--brand);
  border-color:var(--brand);
  transform:translateY(-1px);
  box-shadow:0 10px 18px rgba(153,0,0,.18);
}

.t-dot:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(153,0,0,.22);
}

/* ======================================
   OFFER SECTION (form + trust as a unit)
====================================== */
section[aria-label="Consultation Form"]{
  position:relative;
  padding-top:32px;
}

section[aria-label="Consultation Form"]::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:140px;
  height:1px;
  background:rgba(229,231,235,.9);
}

.offer-grid{
  display:grid;
  gap:18px;
  align-items:start;
}

@media (min-width:900px){
  .offer-grid{
    grid-template-columns: minmax(0, 760px) minmax(0, 420px);
    justify-content:center;
    gap:22px;
  }
}

/* Button spacing consistency inside offer form */
.offer-form .btn{
  margin-top:4px;
}

.offer-form{max-width:none}

.offer-trust{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  height:auto;
  display:flex;
  flex-direction:column;
}

@media (min-width: 900px){
  .offer-trust{
    position: sticky;
    top: 96px;
    align-self: start;
  }
}

.offer-trust-title{
  margin:0 0 10px;
  font-size:17px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.01em;
}

.offer-trust-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.offer-trust-list li{
  position:relative;
  padding-left:30px;
  font-size:14px;
  line-height:1.45;
  color:var(--text);
}

.offer-trust-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0.05em;
  width:20px;
  height:20px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:13px;
  background:var(--successBg);
  border:1px solid var(--successLine);
  color:var(--success);
}

.offer-badges{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center; /* center horizontally */
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(229,231,235,.7);
}

.offer-badges img{
  height:34px;
  width:auto;
  object-fit:contain;
  display:block;
  opacity:.95;
}

/* FORM */
.form-wrap{
  max-width:760px;
  margin:0 auto;
}

.form-title{
  margin:0 0 6px;
  font-weight:900;
  font-size:18px;
  text-align:center;
}

.form-sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}

/* FORM SPACING SYSTEM (gap-based, scoped) */
.offer-form form{
  display:flex;
  flex-direction:column;
  gap:20px; /* vertical rhythm between groups */
}

/* remove margin-driven spacing inside this form */
/* Labels (exclude consent rows so they can be flex) */
.offer-form label:not(.consent-row){
  display:block;
  font-weight:700;
  font-size:12px;
  letter-spacing:.02em;
  margin:0; /* form gap controls spacing */
}

/* each group controls label->input spacing */
.offer-form .form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--panel);
  font-size:14px;
  outline:none;
}

input:focus,
select:focus,
textarea:focus{
  border-color: rgba(22,163,74,.45);
  box-shadow: 0 0 0 3px var(--successRing);
  background: #ffffff;
}

* Filled state only when user actually entered something */
.offer-form input:not(:placeholder-shown),
.offer-form textarea:not(:placeholder-shown){
  background: var(--successFill);
  border-color: var(--successLine);
}

.offer-form select:valid{
  background: var(--successFill);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr;
  gap:20px; /* match vertical rhythm */
}

@media (min-width:560px){
  .grid-2{
    grid-template-columns:1fr 1fr;
    gap:16px; /* tighter horizontal spacing on desktop */
  }
}

/* Post-submit text spacing (consistent rhythm) */
.under-submit{
  margin:0;              /* let form gap control */
  margin-top:-6px;       /* optional micro tighten */
  color:var(--muted);
  font-size:12px;
  text-align:center;
}

.fineprint{
  margin:0;
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
  display:flex;
  gap:8px;
  align-items:flex-start;
  justify-content:center;
}

.consent{
  margin:0;
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
  line-height:1.35;
  text-align:center;
}

/* WHO IT’S FOR / NOT FOR */
.fit-grid{
  display:grid;
  gap:14px;
  margin-top:6px;
}

@media (min-width:900px){
  .fit-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    align-items:stretch;
  }
}

.fit-card{padding:18px}

.fit-title{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  letter-spacing:-.01em;
}

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

.fit-list li{
  position:relative;
  padding-left:32px;
  font-size:14px;
  line-height:1.45;
}

.fit-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.15em;
  width:20px;
  height:20px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:13px;
  line-height:1;
}

.fit-yes li::before{
  content:"✓";
  background:var(--successBg);
  border:1px solid var(--successLine);
  color:var(--success);
}

.fit-no li::before{
  content:"✕";
  background:rgba(107,114,128,.10);
  border:1px solid rgba(107,114,128,.25);
  color:var(--muted);
}

.fit-cta{text-align:center;margin-top:18px}
.fit-micro{margin-top:8px;color:var(--muted);font-size:12px}

.fit-card:first-child{
  box-shadow:0 16px 40px rgba(22,163,74,.12);
  border-color:rgba(22,163,74,.25);
}

/* FAQ */
.faq{max-width:860px;margin:0 auto}

details{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:14px 14px;
  margin-bottom:12px;
}

summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
summary::-webkit-details-marker{display:none}

details p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
}

/* FAQ band with divider */
.faq-band{
  border-top:1px solid var(--line);
  background:#fff;
  padding:56px 0 44px;
}

/* FAQ accordion — LEFT icon (+ / -) */
.faq summary {
  position: relative;
  padding-left: 52px; /* room for icon on left */
  padding-right: 16px;
  cursor: pointer;
  font-weight: 800;
}

/* remove default marker */
.faq summary::-webkit-details-marker {
  display: none;
}

/* left-side icon */
.faq summary::before {
  content: "+";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px; /* square-ish like your reference */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  color: var(--brand);
  background: rgba(153,0,0,.08);
  border: 1px solid rgba(153,0,0,.18);
  transition: transform .2s ease, background .2s ease;
}

/* open state = minus */
.faq details[open] summary::before {
  content: "–";
  background: rgba(153,0,0,.14);
}

/* FOOTER BAND */
.footer-band{
  border-top:1px solid var(--line);
  background:#fff;
}

footer{
  padding:26px 0 48px;
  color:var(--muted);
  font-size:12px;
}
footer a{color:var(--muted)}

.footer-grid{
  display:grid;
  gap:16px;
  align-items:start;
}

@media (min-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr}
}

/* =========================
   THANK YOU PAGE
   ========================= */

.ty-page{
  padding-top: 96px; /* matches fixed header offset if header is present */
  padding-bottom: 64px;
  background: #fafafa;
}

.ty-hero{
  padding: 22px;
  text-align: center;
  margin-bottom: 18px;
}

.ty-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  letter-spacing:.12em;
  font-weight:900;
  color: var(--successDark);
  background: var(--successBg);
  border:1px solid var(--successLine);
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  margin: 0 auto 10px;
}

.ty-title{
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.ty-sub{
  margin: 0 auto 14px;
  max-width: 72ch;
  color: var(--muted);
  font-size: 16px;
}

.ty-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 10px;
}

.ty-actions .btn{ width:auto; min-width: 220px; }

.ty-micro{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.ty-grid{
  display:grid;
  gap: 18px;
  align-items: start;
  margin-top: 16px;
}

@media (min-width: 900px){
  .ty-grid{
    grid-template-columns: minmax(0, 760px) minmax(0, 420px);
    justify-content:center;
    gap: 22px;
  }
}

/* Calendar card */
.ty-calendar{
  padding: 18px;
}

.ty-section-title{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.ty-section-sub{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.ty-inline-cta{
  margin: 10px 0 14px;
}

.ty-inline-note{
  font-size: 14px;
  color: var(--muted);
}
.ty-inline-note a{
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.ty-embed{
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

/* Give the embed enough height so it doesn't look "cut off" */
.ty-embed iframe{
  display:block;
  width:100%;
  min-height: 760px;
}

.ty-after{
  margin-top: 14px;
  border-top: 1px solid rgba(229,231,235,.7);
  padding-top: 14px;
}

.ty-mini-title{
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.ty-steps{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}
.ty-steps li{
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.45;
}
.ty-fine{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Trust card: reuse offer-trust styles but keep spacing tight */
.ty-trust{
  height: auto;
}

/* Mini testimonial inside trust */
.ty-quote{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(229,231,235,.7);
}

.ty-stars{
  color: var(--star);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
}

.ty-quote-text{
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.ty-quote-who{
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

/* Note block */
.ty-note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(17,24,39,.03);
  border: 1px solid rgba(17,24,39,.06);
  color: #374151;
  font-size: 13px;
  line-height: 1.45;
}

/* Secondary reassurance */
.ty-reassure{
  margin-top: 18px;
  padding: 18px;
}

.ty-reassure-grid{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}
@media (min-width: 900px){
  .ty-reassure-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.ty-reassure-item{
  border: 1px solid rgba(229,231,235,.8);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}
.ty-reassure-item p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Mobile */
@media (max-width: 900px){
  .ty-title{ font-size: 26px; }
  .ty-embed iframe{ min-height: 880px; }
  .ty-actions .btn{ width: 100%; }
}

/* THANK YOU – TEXT-BASED PRIMARY CTA */

.ty-top-note{
  margin: 14px auto 6px;
  max-width: 680px;
  font-size: 15px;
  color: var(--text);
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.ty-calendar-note{
  margin: 10px 0 14px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* THANK YOU – proof snippets under badges (GREEN, consistent) */
.ty-proof{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(229,231,235,.7);
  display: grid;
  gap: 12px;
}

.ty-proof-item{
  background: var(--successBg);
  border: 1px solid var(--successLine);
  border-radius: 14px;
  padding: 12px;
}

.ty-proof-text{
  margin: 6px 0 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.45;
}

.ty-proof-who{
  margin-top: 8px;
  font-size: 12px;
  color: var(--successDark);
}

/* If you still use .ty-quote anywhere, keep it consistent too */
.ty-quote{
  background: var(--successBg);
  border: 1px solid var(--successLine);
}

.ty-quote-who{
  color: var(--successDark);
}

/* =========================================================
   FINAL FORM NORMALIZATION + CONSENT ROW ALIGNMENT (CLEAN)
   Paste at VERY BOTTOM
========================================================= */

:root{
  --field-h: 56px;
  --field-fz: 16px;
  --field-radius: 12px;
  --field-pad-x: 16px;
  --field-bg: #f9fafb;
}

/* Normalize offer-form controls */
.offer-form input,
.offer-form select,
.offer-form textarea{
  font-size: var(--field-fz);
  border-radius: var(--field-radius);
  background: var(--field-bg);
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
}

.offer-form input,
.offer-form select{
  height: var(--field-h);
  padding: 0 var(--field-pad-x);
  line-height: calc(var(--field-h) - 2px);
}

.offer-form textarea{
  min-height: 120px;
  padding: 14px var(--field-pad-x);
  line-height: 1.5;
}

/* Match HERO address input + CTA height */
.hero-offer-main input{
  height: var(--field-h);
  font-size: var(--field-fz);
  border-radius: var(--field-radius);
  padding: 0 var(--field-pad-x);
  line-height: calc(var(--field-h) - 2px);
  background: var(--field-bg);
}

.hero-offer-main .btn{
  height: var(--field-h);
}

/* Autofill edge cases */
.offer-form input:-webkit-autofill,
.offer-form select:-webkit-autofill,
.offer-form textarea:-webkit-autofill{
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0px 1000px var(--field-bg) inset;
  caret-color: var(--text);
}

/* =========================
   CONSENT BLOCK (single source of truth)
========================= */

/* wrapper */
.offer-form .consent-block{
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-align: left;
}

/* the row itself (works whether it's label.consent-row or .consent-row) */
.offer-form :is(label.consent-row, .consent-row){
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:0 0 10px;
  padding:0;
  width:100%;
  line-height:1.45;
  font-size:12px;
  font-weight:400;
  color:var(--muted);
}

/* checkbox */
.offer-form :is(label.consent-row, .consent-row) input[type="checkbox"]{
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin: 2px 0 0 0;
}

/* text next to checkbox — catches raw text, span, or nested label */
.offer-form :is(label.consent-row, .consent-row) :is(span, p, small, .consent-text, label){
  margin:0;
  padding:0;
  font-weight:400;
  color:var(--muted);
}

/* links under consent */
.offer-form .consent-links{
  margin-top: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.offer-form .consent-links a{
  color: var(--muted);
  font-weight: 400;
  text-decoration: none;
}

.offer-form .consent-links a:hover{
  text-decoration: underline;
}
