*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose: #d6336c;
  --rose-dark: #a61e4d;
  --rose-deep: #7a1237;
  --blush: #fff0f6;
  --blush-2: #ffe3ee;
  --paper: #fffafc;
  --white: #ffffff;
  --ink: #1f0a1a;
  --ink-soft: #6c5260;
  --line: #f3d9e5;
  --radius: 26px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --shadow: 0 30px 60px -30px rgba(122, 18, 55, 0.28);
  --shadow-sm: 0 10px 30px -18px rgba(122, 18, 55, 0.22);
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 22px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--rose); color: #fff; padding: 12px 20px;
  border-radius: 0 0 14px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.top-strip {
  background: linear-gradient(90deg, var(--rose-deep), var(--rose), var(--rose-dark));
  color: #ffe9f1;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 9px 0;
}
.top-strip .wrap {
  display: flex; flex-wrap: wrap; gap: 6px 22px;
  justify-content: space-between; align-items: center;
}
.top-strip a { color: #fff; font-weight: 600; }
.top-strip a:hover { text-decoration: underline; text-underline-offset: 3px; }

.pulse { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.pulse::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fef08a;
  box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(254, 240, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 240, 138, 0); }
}

.nav-shell {
  position: sticky; top: 14px; z-index: 60;
  padding: 0 22px;
}
.nav-inner {
  max-width: var(--max); margin-inline: auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: 0 20px 40px -26px rgba(122, 18, 55, 0.35);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(140deg, var(--rose), var(--rose-deep));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1rem; letter-spacing: -0.02em;
  box-shadow: 0 8px 18px -6px rgba(214, 51, 108, 0.6);
  flex-shrink: 0;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-size: 1rem; letter-spacing: -0.02em; }
.brand-name em {
  font-style: normal; font-size: 0.68rem; color: var(--rose); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-links a {
  padding: 9px 14px; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
  transition: 0.2s;
}
.nav-links a:hover { color: var(--rose); background: var(--blush); }
.nav-links a[aria-current="page"] { color: var(--rose); background: var(--blush); }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 11px 22px !important; font-weight: 700 !important;
  box-shadow: 0 12px 26px -14px rgba(31, 10, 26, 0.6);
}
.nav-cta:hover { background: var(--rose) !important; color: #fff !important; }

.nav-burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 12px; padding: 9px 12px;
  cursor: pointer; font: inherit; color: var(--ink); font-weight: 600;
}

.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; pointer-events: none; }
.hero-blob.b1 { width: 480px; height: 480px; background: #fbcfe8; top: -120px; right: -100px; }
.hero-blob.b2 { width: 380px; height: 380px; background: #fce7f3; bottom: -160px; left: -120px; }
.hero-blob.b3 { width: 260px; height: 260px; background: #fda4af; top: 200px; right: 30%; opacity: 0.35; }

.hero-layout {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 50px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 8px 16px 8px 10px;
  font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-tag .mini {
  background: linear-gradient(140deg, var(--rose), var(--rose-dark));
  color: #fff; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 10px; border-radius: var(--radius-pill);
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.85rem);
  line-height: 1.05; letter-spacing: -0.04em; font-weight: 800; margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--rose), var(--rose-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 800;
}
.hero-lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 56ch; margin-bottom: 34px; }
.hero-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius-pill);
  font: inherit; font-weight: 700; font-size: 0.94rem;
  border: 1px solid transparent; cursor: pointer; transition: 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 20px 36px -18px rgba(214, 51, 108, 0.8);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 44px -18px rgba(214, 51, 108, 0.85); }
.btn-outline { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--rose); }

.hero-mini-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.mini-stat {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 20px;
  box-shadow: var(--shadow-sm);
}
.mini-stat b { display: block; font-size: 1.4rem; letter-spacing: -0.03em; }
.mini-stat span {
  font-size: 0.72rem; color: var(--ink-soft); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.hero-visual { position: relative; }
.hero-img-main {
  border-radius: 32px 32px 32px 8px;
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(122, 18, 55, 0.5);
  aspect-ratio: 4 / 5;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute; bottom: -26px; left: -30px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex; gap: 12px; align-items: center; max-width: 260px;
}
.floating-card .fc-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--blush); color: var(--rose);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 800;
  flex-shrink: 0;
}
.floating-card strong { display: block; font-size: 0.92rem; letter-spacing: -0.01em; }
.floating-card span { font-size: 0.74rem; color: var(--ink-soft); }
.float-pill {
  position: absolute; top: 22px; right: -14px;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 14px 30px -12px rgba(31, 10, 26, 0.5);
  display: flex; align-items: center; gap: 8px;
}
.float-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }

.trust-strip { padding: 34px 0 56px; border-bottom: 1px solid var(--line); }
.trust-strip .wrap {
  display: flex; flex-wrap: wrap; gap: 18px 46px;
  align-items: center; justify-content: center;
}
.trust-strip span {
  font-size: 0.82rem; font-weight: 700; color: var(--ink-soft);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.trust-strip b {
  font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
  font-size: 0.98rem; text-transform: none;
}

.section { padding: 92px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--rose); border-radius: 2px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.12; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento-cell {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.3s ease;
}
.bento-cell:hover { transform: translateY(-4px); }
.bento-cell.tall { grid-column: span 2; grid-row: span 2; }
.bento-cell.wide { grid-column: span 4; }
.bento-cell.half { grid-column: span 3; }
.bento-cell.third { grid-column: span 2; }
.bento-cell.dark {
  background: linear-gradient(150deg, var(--rose-deep), var(--ink));
  color: #fff; border-color: transparent;
}
.bento-cell.dark .bc-icon { background: rgba(255,255,255,0.14); color: #fbcfe8; }
.bento-cell.dark p { color: #e8d3de; }
.bento-cell.soft { background: var(--blush); border-color: var(--blush-2); }
.bc-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--blush); color: var(--rose);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 20px;
}
.bento-cell h3 { font-size: 1.1rem; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 800; }
.bento-cell p { font-size: 0.92rem; color: var(--ink-soft); }
.bento-cell .big-num {
  font-size: 3.2rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  background: linear-gradient(120deg, var(--rose), var(--rose-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.bento-cell.dark .big-num {
  background: linear-gradient(120deg, #fbcfe8, #fda4af);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.steps-shell { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.step-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px 30px;
  position: relative; box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--ink); color: #fff; font-weight: 800; font-size: 1rem;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.step-card:nth-child(2) .step-num { background: var(--rose); }
.step-card:nth-child(3) .step-num { background: var(--rose-dark); }
.step-card:nth-child(4) .step-num { background: var(--rose-deep); }
.step-card h3 { font-size: 1.02rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.step-card p { font-size: 0.9rem; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  border-radius: 32px 8px 32px 32px;
  overflow: hidden; position: relative; aspect-ratio: 5 / 4;
  box-shadow: 0 40px 70px -32px rgba(122, 18, 55, 0.42);
}
.split.reverse .split-media { border-radius: 8px 32px 32px 32px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.14; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 16px;
}
.split p { color: var(--ink-soft); margin-bottom: 18px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 30px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.94rem; color: var(--ink-soft);
}
.check-list li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--blush); color: var(--rose); font-weight: 800; font-size: 0.72rem;
  display: grid; place-items: center; margin-top: 2px;
}

.coverage-band {
  background: var(--blush); border-radius: 40px;
  padding: 56px 44px; border: 1px solid var(--blush-2);
}
.coverage-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px; margin-top: 30px;
}
.cov {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 13px 16px; font-size: 0.87rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
}
.cov::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(214, 51, 108, 0.15);
}

.price-rail {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: stretch;
}
.price-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease; position: relative;
}
.price-tile:hover { transform: translateY(-6px); }
.price-tile.hot {
  background: linear-gradient(165deg, var(--rose-deep), var(--ink));
  color: #fff; border-color: transparent;
  box-shadow: 0 40px 70px -30px rgba(122, 18, 55, 0.7);
}
.price-tile.hot .price-tile-note { color: #e8d3de; }
.price-tile.hot li { color: #f0dee8; }
.price-tile.hot li::before { color: #fda4af; }
.price-tile.hot .pt-label { background: rgba(255,255,255,0.14); color: #fbcfe8; }
.price-tile-note { font-size: 0.86rem; color: var(--ink-soft); }
.pt-label {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--blush); color: var(--rose);
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.price-tile h3 { font-size: 1.15rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.pt-price { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.05em; margin: 14px 0 4px; }
.pt-price small { font-size: 0.8rem; font-weight: 600; opacity: 0.7; }
.price-tile ul { display: grid; gap: 11px; margin: 22px 0 30px; flex: 1; }
.price-tile ul li {
  font-size: 0.88rem; color: var(--ink-soft);
  display: flex; gap: 10px; align-items: flex-start;
}
.price-tile ul li::before { content: "—"; color: var(--rose); font-weight: 800; }
.price-tile .btn { width: 100%; }

.quote-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.quote::before {
  content: "“"; position: absolute; top: -30px; right: 18px;
  font-size: 8rem; color: var(--blush-2); font-weight: 800; line-height: 1;
  pointer-events: none;
}
.quote p {
  font-size: 0.95rem; color: var(--ink-soft);
  position: relative; z-index: 1; margin-bottom: 22px;
}
.quote footer { font-size: 0.84rem; font-weight: 700; position: relative; z-index: 1; }
.quote footer em {
  display: block; font-style: normal; font-weight: 500;
  color: var(--ink-soft); font-size: 0.78rem; margin-top: 2px;
}
.stars { color: var(--rose); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; display: block; }

.appt-block {
  background: linear-gradient(155deg, #2a0d1e 0%, #1f0a1a 60%, var(--rose-deep) 120%);
  color: #fff; border-radius: 40px;
  padding: 66px 52px; position: relative; overflow: hidden;
}
.appt-block::before {
  content: ""; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(214, 51, 108, 0.5), transparent 70%);
  top: -200px; right: -150px; border-radius: 50%; pointer-events: none;
}
.appt-block::after {
  content: ""; position: absolute; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(253, 164, 175, 0.25), transparent 70%);
  bottom: -180px; left: -100px; border-radius: 50%; pointer-events: none;
}
.appt-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
}
.appt-side h2 {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.14; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 18px;
}
.appt-side p { color: #e0cbd7; margin-bottom: 26px; font-size: 0.96rem; }
.appt-facts { display: grid; gap: 14px; }
.appt-fact {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.appt-fact .af-mark {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: rgba(214, 51, 108, 0.35); color: #fbcfe8;
  display: grid; place-items: center; font-weight: 800; font-size: 0.85rem;
}
.appt-fact b { display: block; font-size: 0.86rem; letter-spacing: -0.01em; }
.appt-fact span { font-size: 0.78rem; color: #b89bab; }

.appt-form {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 34px 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.appt-form .full { grid-column: 1 / -1; }
.appt-form label {
  display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fbcfe8; margin-bottom: 6px;
}
.appt-form input,
.appt-form select,
.appt-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.28); color: #fff;
  font: inherit; font-size: 0.92rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.appt-form input::placeholder,
.appt-form textarea::placeholder { color: #8b6d7e; }
.appt-form input:focus,
.appt-form select:focus,
.appt-form textarea:focus {
  border-color: #fda4af; background: rgba(0,0,0,0.4);
}
.appt-form select option { color: var(--ink); background: #fff; }
.appt-form textarea { resize: vertical; min-height: 96px; }
.appt-form .btn { grid-column: 1 / -1; padding: 16px 34px; }
.appt-form .form-note { grid-column: 1 / -1; font-size: 0.76rem; color: #b89bab; }

.footer {
  background: #140410; color: #a68a99;
  padding: 76px 0 30px; margin-top: 80px; font-size: 0.88rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { margin-top: 18px; line-height: 1.65; font-size: 0.86rem; }
.footer-brand .contact-lines { margin-top: 18px; display: grid; gap: 6px; }
.footer-brand .contact-lines a { color: #fff; font-weight: 600; }
.footer-brand .contact-lines a:hover { color: #fda4af; }
.footer-brand .contact-lines span { font-size: 0.84rem; }
.f-col h4 {
  color: #fff; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 800; margin-bottom: 16px;
}
.f-col ul { display: grid; gap: 9px; }
.f-col a { color: #a68a99; transition: color 0.2s; }
.f-col a:hover { color: #fda4af; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 54px; padding-top: 26px;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px; align-items: center; font-size: 0.8rem;
}
.footer-bottom a { color: #a68a99; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

.cookie {
  position: fixed; z-index: 400; left: 20px; right: 20px; bottom: 20px;
  max-width: 880px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 26px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  transform: translateY(140%); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie p { font-size: 0.85rem; color: var(--ink-soft); max-width: 60ch; }
.cookie a { color: var(--rose); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button {
  padding: 10px 20px; border-radius: var(--radius-pill);
  font: inherit; font-size: 0.85rem; font-weight: 700; cursor: pointer;
  border: 1px solid var(--line); transition: 0.2s;
}
.cookie-yes { background: var(--rose); color: #fff; border-color: var(--rose); }
.cookie-yes:hover { background: var(--rose-dark); }
.cookie-no { background: transparent; color: var(--ink-soft); }
.cookie-no:hover { background: var(--blush); }

.modal-shell {
  position: fixed; inset: 0; z-index: 500; padding: 20px;
  display: grid; place-items: center;
  background: rgba(31, 10, 26, 0.55); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-shell.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  width: 100%; max-width: 460px;
  padding: 38px 32px; box-shadow: var(--shadow);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: left;
}
.modal-shell.open .modal-box { transform: translateY(0) scale(1); }
.modal-mark {
  width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(140deg, var(--rose), var(--rose-deep));
  color: #fff; display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 800; margin-bottom: 20px;
}
.modal-box h3 { font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.modal-box p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 24px; }
.modal-box .btn { width: 100%; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-cell.tall { grid-column: span 2; grid-row: span 2; }
  .bento-cell.wide { grid-column: span 4; }
  .bento-cell.half { grid-column: span 2; }
  .bento-cell.third { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .appt-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 820px) {
  .nav-links {
    display: none; position: absolute; left: 0; right: 0;
    top: calc(100% + 12px);
    background: var(--white); border: 1px solid var(--line);
    border-radius: 22px; padding: 14px;
    flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-burger { display: inline-block; }
  .steps-shell { grid-template-columns: 1fr 1fr; }
  .price-rail, .quote-rail { grid-template-columns: 1fr; }
  .coverage-band { padding: 40px 26px; border-radius: 30px; }
  .section { padding: 68px 0; }
  .appt-block { padding: 48px 26px; border-radius: 28px; }
  .appt-form { grid-template-columns: 1fr; padding: 26px 22px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-cell.tall,
  .bento-cell.wide,
  .bento-cell.half,
  .bento-cell.third { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .steps-shell { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell.tall,
  .bento-cell.wide,
  .bento-cell.half,
  .bento-cell.third { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-card { position: static; margin-top: 20px; max-width: none; }
  .float-pill { right: 8px; }
  .mini-stat { flex: 1 1 calc(50% - 14px); }
}