:root {
  --ink: #082033;
  --deep: #12394b;
  --green: #00a86b;
  --green-dark: #078158;
  --aqua: #a1c8d1;
  --mist: #eef6fa;
  --ivory: #fff9f2;
  --sun: #f2c94c;
  --coral: #ef8d7a;
  --muted: #586977;
  --white: #fff;
  --line: rgba(8, 32, 51, .12);
  --shadow: 0 24px 70px rgba(8, 32, 51, .12);
  --shadow-soft: 0 14px 42px rgba(8, 32, 51, .08);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); line-height: .98; margin-bottom: 1.4rem; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.05; margin-bottom: 1rem; }
h3 { font-size: 1.45rem; line-height: 1.2; margin-bottom: .65rem; }
p { color: var(--muted); }

.container { width: min(1180px, calc(100% - 88px)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section.soft { background: var(--mist); }
.section.white { background: white; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }
.lead { color: var(--deep); font-size: 1.12rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 99px; }

.topbar { background: var(--deep); color: rgba(255,255,255,.82); font-size: .78rem; }
.topbar-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar a { color: white; font-weight: 800; text-decoration: none; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,249,242,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 245px; text-decoration: none; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: .94rem; line-height: 1.12; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(13px, 1.7vw, 24px); }
.nav-links a { text-decoration: none; font-size: .78rem; font-weight: 800; white-space: nowrap; }
.nav-links a[aria-current="page"] { color: var(--green-dark); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--green); box-shadow: 0 12px 30px rgba(0,168,107,.22); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { color: var(--ink); background: white; border-color: var(--line); }
.btn-secondary:hover { box-shadow: var(--shadow-soft); }

.hero { position: relative; padding: 86px 0 94px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: -260px; top: -160px; border-radius: 50%; background: rgba(161,200,209,.26); }
.hero::after { content: ""; position: absolute; width: 280px; height: 280px; right: -70px; bottom: 18px; border-radius: 50%; background: rgba(242,201,76,.18); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(44px, 7vw, 86px); align-items: center; }
.hero-copy p:not(.eyebrow) { max-width: 640px; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; padding: 0; list-style: none; }
.trust-row li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(0,168,107,.18); border-radius: 999px; color: var(--deep); background: rgba(255,255,255,.78); font-size: .74rem; font-weight: 800; }
.trust-row li::before { content: "♡"; color: var(--green-dark); }
.hero-visual { position: relative; min-height: 560px; }
.hero-image { position: absolute; inset: 0 16px 0 42px; overflow: hidden; border-radius: 190px 190px 34px 34px; background: var(--aqua); box-shadow: var(--shadow); }
.hero-image img { height: 100%; object-fit: cover; }
.floating-card { position: absolute; z-index: 2; max-width: 245px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.9); border-radius: 19px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: var(--muted); font-size: .68rem; }
.floating-card.one { left: 0; bottom: 72px; }
.floating-card.two { right: 0; top: 68px; }
.doodle { position: absolute; z-index: 3; pointer-events: none; }
.doodle.sun { right: 24px; bottom: 26px; width: 82px; height: 82px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--sun); font-family: var(--serif); font-weight: 700; animation: float 5s ease-in-out infinite; }
.doodle.cloud { left: 34px; top: 32px; padding: 9px 15px; border-radius: 999px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); font-size: .72rem; font-weight: 850; animation: float 5.5s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-9px) rotate(2deg); } }

.proof-bar { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; margin-top: -36px; position: relative; z-index: 5; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.proof { min-height: 118px; padding: 24px; border-right: 1px solid var(--line); }
.proof:last-child { border-right: 0; }
.proof strong { display: block; font-family: var(--serif); font-size: 1.18rem; }
.proof span { display: block; color: var(--muted); font-size: .74rem; line-height: 1.35; }

.warm-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(0,168,107,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.warm-banner .badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-family: var(--serif);
  font-size: 1.2rem;
}
.warm-banner p { margin: 0; font-size: .82rem; }

.local-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.local-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(161,200,209,.2);
  font-size: .72rem;
  font-weight: 850;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.info-card { padding: 30px 28px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 8px 24px rgba(8,32,51,.04); }
.info-card.tint { background: linear-gradient(180deg, rgba(255,249,242,.92), white); }
.icon-pill { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 16px; color: white; background: var(--deep); font-weight: 900; }
.info-card:nth-child(2) .icon-pill { color: var(--ink); background: var(--sun); }
.info-card:nth-child(3) .icon-pill { background: var(--green); }
.info-card:nth-child(4) .icon-pill { color: var(--ink); background: var(--aqua); }
.info-card.featured {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep), #16506a);
}
.info-card.featured h3, .info-card.featured p { color: white; }
.info-card.featured p { color: rgba(255,255,255,.75); }
.info-card.featured .icon-pill { color: var(--ink); background: var(--sun); }

.comfort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comfort-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}
.comfort-card strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 1.2rem; }
.comfort-card p { margin: 0; font-size: .84rem; }

.mini-testimony {
  margin-top: 24px;
  padding: 24px;
  border-left: 4px solid var(--green);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.mini-testimony p {
  margin: 0;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.18rem;
}
.mini-testimony small { display: block; margin-top: 10px; color: var(--muted); font-weight: 800; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 78px; align-items: center; }
.photo-card { position: relative; }
.photo-card img { aspect-ratio: 4/5; object-fit: cover; border-radius: 34px 145px 34px 34px; box-shadow: var(--shadow); }
.note { margin-top: 22px; padding: 18px 20px; border: 1px dashed rgba(0,168,107,.32); border-radius: 18px; color: var(--deep); background: rgba(255,255,255,.8); font-size: .84rem; font-weight: 800; }

.timeline { display: grid; gap: 18px; counter-reset: steps; }
.timeline-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.timeline-item::before { counter-increment: steps; content: counter(steps); width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-family: var(--serif); font-size: 1.25rem; }
.timeline-item p { margin-bottom: 0; font-size: .86rem; }

.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
}
.journey-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  font-family: var(--serif);
  font-weight: 700;
}
.journey-card p { margin-bottom: 0; font-size: .84rem; }

.seo-block {
  padding: 38px;
  border: 1px solid rgba(8,32,51,.08);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,249,242,.96), rgba(161,200,209,.16));
}
.seo-block p:last-child { margin-bottom: 0; }

.promise-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.promise-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}
.promise-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: var(--green);
  font-weight: 900;
}
.promise-item p { margin: 0; font-size: .82rem; }

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.comparison > div { padding: 34px; }
.comparison > div:first-child { background: var(--mist); }
.comparison ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.comparison li + li { margin-top: 8px; }

.legal-content {
  max-width: 900px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.legal-content h2 { margin-top: 34px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: .9rem; }

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  display: none;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(0,168,107,.24);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 900;
}

.cta-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; padding: 56px; border-radius: 34px; color: white; background: var(--green-dark); box-shadow: 0 30px 80px rgba(7,129,88,.22); }
.cta-panel h2 { color: white; }
.cta-panel p { color: rgba(255,255,255,.78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.page-hero { padding: 78px 0 72px; background: linear-gradient(135deg, var(--ivory), var(--mist)); }
.page-hero .container { max-width: 980px; }
.breadcrumb { margin-bottom: 22px; color: var(--muted); font-size: .78rem; font-weight: 800; }
.breadcrumb a { text-decoration: none; color: var(--green-dark); }

.form-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 44px; align-items: start; }
.form-aside { position: sticky; top: 110px; padding: 30px; border-radius: 28px; background: var(--deep); color: white; }
.form-aside p { color: rgba(255,255,255,.75); }
.step-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.step-list li { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 800; }
.step-list span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); }
.secure-form { padding: 34px; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow-soft); }
.form-step { padding: 26px 0; border-bottom: 1px solid var(--line); }
.form-step:first-child { padding-top: 0; }
.form-step:last-of-type { border-bottom: 0; }
.form-step h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 900; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: white;
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,168,107,.12); }
.field-error { color: #b42318; font-size: .68rem; font-weight: 900; }
.form-status { min-height: 24px; margin: 18px 0 0; font-size: .82rem; font-weight: 900; }
.form-status.success { color: var(--green-dark); }
.form-status.error { color: #b42318; }
.bot-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.privacy-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(0,168,107,.18);
  border-radius: 18px;
  background: rgba(0,168,107,.07);
  font-size: .78rem;
}
.privacy-box strong { color: var(--deep); }

details.faq-item { border-top: 1px solid var(--line); background: white; }
details.faq-item:last-child { border-bottom: 1px solid var(--line); }
details.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item p { padding-bottom: 18px; margin-bottom: 0; font-size: .86rem; }

.contact-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: white; box-shadow: var(--shadow-soft); }
.map-placeholder { min-height: 430px; display: grid; place-items: center; background: var(--mist); }
.map-pin { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50% 50% 50% 8px; color: white; background: var(--green); transform: rotate(-45deg); box-shadow: 0 22px 45px rgba(0,168,107,.3); }
.map-pin span { transform: rotate(45deg); font-size: 1.8rem; }
.contact-copy { padding: 52px; }
.contact-list { display: grid; gap: 16px; margin: 28px 0; }
.contact-list a { color: var(--green-dark); font-weight: 850; text-decoration: none; }

.footer { color: white; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 44px; padding: 72px 0 54px; }
.footer p, .footer a { color: rgba(255,255,255,.66); }
.footer h3 { font-family: var(--sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; font-size: .76rem; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 58px; height: 58px; padding: 5px; object-fit: contain; border-radius: 50%; background: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .68rem; }

.mobile-actions { display: none; }

@media (min-width: 721px) {
  .sticky-cta { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 1080px) {
  .container { width: min(100% - 56px, 1180px); }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 104px 22px auto; display: none; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links a { font-size: .96rem; padding: 6px 0; }
  .hero-grid, .split, .form-shell { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; width: 100%; margin-inline: auto; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .proof:nth-child(2) { border-right: 0; }
  .proof:nth-child(3), .proof:nth-child(4) { border-top: 1px solid var(--line); }
  .form-aside { position: static; }
}

@media (max-width: 720px) {
  body { padding-bottom: 66px; }
  .container { width: min(100% - 38px, 1180px); }
  .section { padding: 76px 0; }
  .topbar { display: none; }
  .nav { min-height: 74px; }
  .brand { min-width: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand small { display: none; }
  .brand strong { max-width: 180px; font-size: .78rem; }
  .hero { padding: 56px 0 78px; }
  .hero-visual { min-height: 420px; }
  .hero-image { inset: 0; border-radius: 120px 120px 26px 26px; }
  .floating-card { padding: 13px; max-width: 190px; }
  .floating-card.one { left: -8px; bottom: 24px; }
  .floating-card.two { right: -8px; top: 24px; }
  .doodle.cloud { display: none; }
  .proof-bar, .card-grid, .card-grid.four, .cta-panel, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
  .warm-banner, .comfort-grid, .journey-grid, .promise-wall, .comparison { grid-template-columns: 1fr; }
  .warm-banner { align-items: start; }
  .sticky-cta { display: none; }
  .proof { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof:last-child { border-bottom: 0; }
  .photo-card img { aspect-ratio: 4/3; }
  .cta-panel { padding: 36px 24px; }
  .cta-actions { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .secure-form { padding: 24px 18px; }
  .contact-copy { padding: 34px 22px; }
  .footer-bottom { display: grid; }
  .mobile-actions { position: fixed; inset: auto 0 0; z-index: 80; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 66px; padding: 8px 12px; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; border-radius: 999px; text-decoration: none; font-size: .75rem; font-weight: 900; }
  .mobile-actions a:first-child { color: var(--ink); }
  .mobile-actions a:last-child { color: white; background: var(--green); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
