:root {
  --bg: #f4f0e9;
  --bg-deep: #e8dfd4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #fbf9f5;
  --soft: #eee8e0;
  --ink: #171513;
  --muted: #6f6a64;
  --accent: #897364;
  --accent-dark: #5d4c41;
  --accent-soft: #ded1c5;
  --plum: #897364;
  --plum-dark: #5d4c41;
  --plum-soft: #ede5dd;
  --line: rgba(55, 47, 41, 0.14);
  --success: #66725e;
  --radius: 30px;
  --shadow: 0 26px 70px rgba(69, 55, 44, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.5 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.98), transparent 25%),
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.74), transparent 22%),
    linear-gradient(125deg, #f7f4ee 0%, #eee7de 48%, #f8f5f0 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  justify-self: start;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name { font-size: 22px; font-weight: 500; letter-spacing: .38em; }
.brand-note {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-nav { display: flex; gap: 34px; }
.site-nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--ink); }
.text-button {
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.46);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
  padding: 70px 0 96px;
}
.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.hero h1,
.section-heading h2,
.document h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(52px, 6vw, 83px);
  line-height: .96;
  letter-spacing: -.055em;
  margin-bottom: 32px;
}
.hero h1 em {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 400;
  font-style: italic;
}
.lead {
  max-width: 530px;
  color: #585550;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; }
.primary-button,
.secondary-button,
.plan-button {
  min-height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.primary-button {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(54,44,36,.12), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
}
.primary-button:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(54,44,36,.16);
}
.primary-button span { font-size: 18px; font-weight: 400; }
.secondary-button { color: var(--ink); border: 1px solid transparent; padding-inline: 18px; }
.secondary-button:hover { border-color: var(--line); background: rgba(255,255,255,.3); }
.fine-print { margin: 16px 0 0; font-size: 12px; letter-spacing: .02em; color: var(--muted); }

.hero-visual {
  height: 590px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.light-orb { position: absolute; border-radius: 999px; filter: blur(24px); z-index: -1; }
.orb-one { width: 410px; height: 410px; background: rgba(255,255,255,.82); left: 4%; top: 9%; }
.orb-two { width: 310px; height: 250px; background: rgba(205,189,174,.42); right: 0; bottom: 5%; }
.phone-shell {
  width: 315px;
  height: 584px;
  border-radius: 48px;
  padding: 9px;
  background: linear-gradient(145deg, #4c4a47, #111 34%, #77736d 72%, #171615);
  box-shadow: 0 38px 75px rgba(36,29,24,.25);
  transform: rotate(3.5deg);
  position: relative;
}
.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  border-radius: 99px;
  background: #121212;
}
.phone-screen {
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(155deg, #fbfaf8, #eee9e3);
  padding: 30px 14px 14px;
  display: flex;
  flex-direction: column;
}
.phone-head {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  text-align: center;
  color: #292725;
  font-size: 15px;
}
.phone-head > div { display: flex; flex-direction: column; }
.phone-head b { font-size: 10px; letter-spacing: .38em; font-weight: 500; }
.phone-head small { margin-top: 4px; font-size: 5px; letter-spacing: .32em; color: #8b857e; }
.scheme-title { font-family: Georgia, serif; text-align: center; font-size: 25px; margin: 16px 0 3px; }
.eye-sketch { margin: 0 -4px; }
.eye-sketch svg { display: block; width: 100%; height: auto; }
.lid, .lower-lid { fill: none; stroke: #292725; stroke-width: 3; stroke-linecap: round; }
.lower-lid { stroke-width: 1.5; }
.iris { fill: #b8cac5; stroke: #728985; stroke-width: 2; }
.pupil { fill: #272725; }
.lash-base { fill: none; stroke: #242321; stroke-width: 9; stroke-linecap: round; }
.map-lines path { fill: none; stroke: #494743; stroke-width: 1.4; stroke-linecap: round; }
.map-labels text { font-family: Inter, sans-serif; fill: #36332f; font-size: 11px; font-weight: 500; text-anchor: middle; }
.scheme-params {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
  margin-top: 2px;
  padding: 13px 6px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(61,50,41,.07);
}
.scheme-params span { text-align: center; border-right: 1px solid var(--line); }
.scheme-params span:last-child { border: 0; }
.scheme-params small { display: block; font-size: 6px; color: var(--muted); margin-bottom: 3px; }
.scheme-params b { font-size: 10px; font-weight: 600; }
.phone-dock {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 10px 24px rgba(64,52,42,.09);
  color: #2a2825;
}
.phone-dock i { font-style: normal; font-size: 16px; }
.floating-note {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 23px;
  padding: 13px 16px;
  box-shadow: 0 18px 40px rgba(57,47,39,.12);
  backdrop-filter: blur(20px);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.28;
}
.floating-note b { font-weight: 500; color: var(--ink); }
.note-top { right: -7px; top: 98px; }
.note-bottom { left: -15px; bottom: 72px; }
.mini-icon {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
}

.quiet-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.28); backdrop-filter: blur(12px); }
.strip-inner {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.strip-inner i { height: 1px; width: 54px; background: var(--line); }

.care, .editorial, .details, .scheme-showcase, .plans, .steps, .faq { padding: 120px 0; }
.section-heading { max-width: 720px; }
.section-heading h2 { font-size: clamp(43px, 5vw, 66px); letter-spacing: -.045em; line-height: 1.02; margin-bottom: 22px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; max-width: 590px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.care { text-align: center; }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 62px; }
.care-grid article { padding: 0 28px; }
.round-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255,255,255,.66);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.9);
  margin: 0 auto 28px;
  box-shadow: 0 18px 38px rgba(72,58,47,.1);
}
.round-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.care-grid h3 { font-family: Georgia,serif; font-size: 28px; font-weight: 400; letter-spacing: -.03em; margin-bottom: 10px; }
.care-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.editorial {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 90px;
  align-items: center;
}
.work-preview {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(255,255,255,.45), rgba(211,198,185,.34));
  border: 1px solid rgba(255,255,255,.7);
  overflow: hidden;
}
.preview-glow { position: absolute; width: 360px; height: 460px; border-radius: 50%; background: rgba(255,255,255,.7); filter: blur(35px); }
.mini-app {
  position: relative;
  z-index: 1;
  width: min(390px, calc(100% - 50px));
  padding: 27px;
  border-radius: 35px;
  background: rgba(251,249,245,.82);
  border: 1px solid rgba(255,255,255,.94);
  box-shadow: 0 35px 70px rgba(52,43,36,.16);
  transform: rotate(-2.4deg);
  backdrop-filter: blur(18px);
}
.mini-app-head { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 13px; }
.mini-app-head button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.8); color: var(--ink); }
.mini-app > h3 { font-family: Georgia,serif; font-size: 34px; line-height: 1.06; font-weight: 400; margin: 34px 0 25px; }
.visit-card { display: flex; flex-direction: column; padding: 22px; border-radius: 25px; color: #f7f3ec; background: #7b8170; box-shadow: 0 18px 35px rgba(67,72,61,.2); }
.visit-card small { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; opacity: .72; }
.visit-card b { font-family: Georgia,serif; font-size: 25px; font-weight: 400; margin: 14px 0 2px; }
.visit-card span { font-size: 11px; opacity: .82; }
.visit-card i { margin-top: 20px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.25); font-style: normal; font-size: 12px; }
.mini-app > p { margin: 25px 0 12px; font-size: 12px; color: var(--muted); }
.schedule-row { display: grid; grid-template-columns: 52px 1fr 18px; align-items: center; gap: 10px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 12px; }
.schedule-row b { font-weight: 500; }
.schedule-row span { line-height: 1.25; }
.schedule-row small { color: var(--muted); }
.schedule-row i { font-size: 20px; font-style: normal; }
.editorial-copy h2, .details-copy h2, .final-cta h2 {
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(46px,5vw,70px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
  margin-bottom: 27px;
}
.editorial-copy > p:not(.eyebrow), .details-copy > p:not(.eyebrow) { color: var(--muted); font-size: 19px; max-width: 520px; }
.text-link { display: inline-flex; gap: 35px; margin-top: 20px; color: var(--ink); text-decoration: none; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 14px; }

.details-section { background: rgba(255,255,255,.26); border-block: 1px solid rgba(255,255,255,.55); }
.details { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.details-list { display: grid; gap: 14px; }
.details-list > div {
  min-height: 91px;
  display: grid;
  grid-template-columns: 62px 1fr 30px;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 18px 38px rgba(65,51,41,.08);
}
.line-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-family: Georgia,serif; font-size: 25px; }
.details-list b { font-weight: 400; font-size: 18px; }
.details-list i { font-family: Georgia,serif; font-style: normal; font-size: 33px; font-weight: 300; }

.scheme-showcase > .section-heading { text-align: center; margin-inline: auto; }
.scheme-showcase > .section-heading > p:last-child { margin-inline: auto; }
.scheme-stage {
  position: relative;
  margin-top: 62px;
  padding: 55px 55px 32px;
  border-radius: 46px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 30px 70px rgba(66,52,42,.1);
  overflow: hidden;
}
.scheme-stage::before { content:""; position:absolute; width:470px; height:240px; left:50%; top:40px; transform:translateX(-50%); background:rgba(227,203,188,.6); filter:blur(55px); border-radius:50%; }
.scheme-stage-label { position: relative; z-index: 1; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); text-align: center; }
.scheme-stage svg { position: relative; z-index: 1; display: block; width: min(820px,100%); margin: 8px auto 0; }
.stage-lid,.stage-lower,.stage-lashes,.stage-arrows path { fill:none; stroke:#302d29; stroke-linecap:round; }
.stage-lid { stroke-width:4; }.stage-lower{stroke-width:2}.stage-lashes{stroke-width:13}.stage-arrows path{stroke-width:2}
.stage-iris{fill:#aebfbd;stroke:#71837f;stroke-width:2}.stage-pupil{fill:#2b2926}
.stage-values text{font:500 14px Inter,sans-serif;fill:#2c2926;text-anchor:middle}
.stage-summary { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5,1fr); padding: 20px; border-radius: 26px; background: rgba(250,248,244,.78); border:1px solid rgba(255,255,255,.9); box-shadow:0 15px 35px rgba(64,51,41,.08); }
.stage-summary span { text-align:center; border-right:1px solid var(--line); }
.stage-summary span:last-child { border:0; }
.stage-summary small { display:block; color:var(--muted); font-size:10px; margin-bottom:4px; }
.stage-summary b { font-size:14px; font-weight:500; }

.final-cta {
  padding: 150px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta h2 { max-width: 850px; margin-inline: auto; }
.final-cta .primary-button { min-width: 270px; margin-top: 16px; }
.final-cta > p:last-child { margin: 90px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .32em; text-transform: uppercase; }

.plan-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.plan-card {
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 28px;
  padding: 28px 22px 22px;
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 38px rgba(69,55,44,.07);
}
.plan-card.featured { background: #282521; color: #f8f5f0; border-color: #282521; box-shadow: 0 25px 55px rgba(38,31,26,.2); }
.tag {
  position: absolute;
  right: 18px;
  top: 17px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #fff;
  padding: 5px 9px;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-period { font-weight: 500; font-size: 15px; margin-bottom: 31px; }
.plan-price { font-family: Georgia,serif; font-size: 39px; line-height: 1; font-weight: 400; margin-bottom: 11px; font-variant-numeric: tabular-nums; }
.plan-price small { font-family: Inter,sans-serif; font-size: 17px; }
.plan-rate { color: var(--muted); font-size: 12px; margin: 0; }
.featured .plan-rate { color: #bbb3ab; }
.plan-rate b { color: var(--success); font-weight: 600; margin-left: 3px; }
.featured .plan-rate b { color: #c7d2bd; }
.plan-button {
  margin-top: auto;
  width: 100%;
  min-height: 49px;
  background: rgba(255,255,255,.55);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.85);
  padding: 0;
}
.plan-button:hover { background: #fff; transform: translateY(-1px); }
.featured .plan-button { background: #f4f0e9; color: #211f1c; border-color: #f4f0e9; }
.payments-note { margin: 24px 0 0; color: var(--muted); font-size: 13px; }
.payments-note span { color: var(--accent); font-size: 20px; vertical-align: -2px; }

.steps ol { list-style: none; margin: 52px 0 0; padding: 0; border-top: 1px solid var(--line); }
.steps li { padding: 25px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; gap: 18px; }
.steps li > span { font-size: 12px; color: var(--muted); letter-spacing: .14em; font-variant-numeric: tabular-nums; }
.steps h3 { font-family: Georgia,serif; font-size: 24px; font-weight: 400; margin-bottom: 4px; }
.steps p { margin: 0; color: var(--muted); }
.faq { padding-top: 40px; }
.faq details { border-bottom: 1px solid var(--line); padding: 21px 0; }
.faq summary { list-style: none; cursor: pointer; font-size: 18px; font-weight: 400; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 25px; line-height: .8; color: var(--accent); font-weight: 300; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 45px 0 0; color: var(--muted); max-width: 700px; }

.site-footer { border-top: 1px solid var(--line); padding: 34px 0; background: rgba(255,255,255,.2); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { font-size: 12px; color: var(--muted); margin: 0; }
.footer-inner nav { display: flex; gap: 18px; }
.footer-inner nav a, .legal-small a { font-size: 12px; color: var(--muted); }
.site-footer .brand { display: inline-flex; }

.auth-dialog {
  width: min(430px, calc(100% - 32px));
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 30px;
  padding: 34px;
  background: rgba(248,245,240,.94);
  box-shadow: 0 30px 100px rgba(36,31,35,.28);
  color: var(--ink);
  backdrop-filter: blur(22px);
}
.auth-dialog::backdrop { background: rgba(36,31,35,.32); backdrop-filter: blur(7px); }
.auth-dialog h2 { font-family: Georgia,serif; font-size: 36px; line-height: 1.05; font-weight: 400; letter-spacing: -.04em; margin-bottom: 11px; }
.auth-dialog > p:not(.eyebrow):not(.legal-small) { color: var(--muted); margin-bottom: 25px; }
.dialog-close { position: absolute; top: 15px; right: 18px; border: 0; background: transparent; font-size: 28px; line-height: 1; color: var(--muted); cursor: pointer; }
.auth-dialog form { display: grid; gap: 8px; }
.auth-dialog label { font-size: 13px; font-weight: 500; }
.auth-dialog input { height: 54px; border: 1px solid var(--line); border-radius: 999px; padding: 0 18px; color: var(--ink); background: rgba(255,255,255,.68); font-size: 16px; outline: none; }
.auth-dialog input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.auth-dialog .primary-button { margin-top: 8px; width: 100%; background: #25221f; color: #fff; border-color: #25221f; }
.form-status { min-height: 23px; margin: 14px 0 5px; color: var(--success); font-size: 14px; }
.form-status.error { color: #a4494d; }
.legal-small { font-size: 11px; color: var(--muted); line-height: 1.4; margin: 0; }

.document { padding: 80px 0 120px; max-width: 780px; }
.document h1 { font-size: clamp(43px,6vw,66px); line-height: 1; letter-spacing: -.04em; }
.document h2 { font-family: Georgia,serif; font-size: 27px; font-weight: 400; margin-top: 40px; }
.document p, .document li { color: #514b46; }
.document .notice { background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.8); padding: 18px; border-radius: 18px; color: #443a34; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 70px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { height: 610px; }
  .editorial, .details { grid-template-columns: 1fr; gap: 60px; }
  .editorial-copy { order: -1; }
  .details-copy { max-width: 720px; }
  .plan-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 560px); }
  .site-header { height: 76px; }
  .brand-name { font-size: 18px; }
  .brand-note { font-size: 7px; margin-top: 6px; }
  .text-button { padding: 9px 16px; font-size: 13px; }
  .hero { display: block; min-height: 0; padding: 64px 0 72px; }
  .hero h1 { font-size: clamp(46px, 13.7vw, 62px); line-height: .98; }
  .lead { font-size: 17px; line-height: 1.48; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-button, .secondary-button { width: 100%; min-height: 55px; }
  .secondary-button { border-color: var(--line); }
  .fine-print { text-align: center; }
  .hero-visual { height: 545px; margin-top: 60px; }
  .phone-shell { width: 276px; height: 512px; border-radius: 43px; }
  .phone-screen { border-radius: 35px; }
  .phone-speaker { width: 74px; height: 17px; }
  .note-top { right: -3px; top: 66px; }
  .note-bottom { left: -4px; bottom: 45px; }
  .floating-note { padding: 10px 12px; border-radius: 19px; font-size: 10px; }
  .mini-icon { width: 27px; height: 27px; }
  .quiet-strip { overflow: hidden; }
  .strip-inner { width: max-content; min-width: 100%; justify-content: flex-start; gap: 16px; font-size: 9px; white-space: nowrap; }
  .strip-inner i { width: 25px; }
  .care, .editorial, .details, .scheme-showcase, .plans, .steps, .faq { padding-top: 84px; padding-bottom: 84px; }
  .section-heading h2 { font-size: 44px; }
  .section-heading > p:last-child { font-size: 16px; }
  .care-grid { grid-template-columns: 1fr; gap: 45px; margin-top: 45px; }
  .care-grid article { max-width: 350px; margin-inline: auto; padding: 0; }
  .round-icon { width: 92px; height: 92px; margin-bottom: 20px; }
  .round-icon svg { width: 36px; height: 36px; }
  .care-grid h3 { font-size: 25px; }
  .editorial { gap: 38px; }
  .editorial-copy h2, .details-copy h2, .final-cta h2 { font-size: 46px; }
  .editorial-copy > p:not(.eyebrow), .details-copy > p:not(.eyebrow) { font-size: 16px; }
  .work-preview { min-height: 535px; border-radius: 35px; }
  .mini-app { padding: 22px; }
  .mini-app > h3 { font-size: 30px; }
  .details-list > div { min-height: 77px; grid-template-columns: 50px 1fr 20px; gap: 12px; padding: 11px 16px; border-radius: 23px; }
  .line-icon { width: 45px; height: 45px; }
  .details-list b { font-size: 15px; }
  .scheme-stage { margin-top: 40px; padding: 32px 14px 16px; border-radius: 30px; }
  .scheme-stage svg { width: 125%; margin-left: -12.5%; }
  .stage-summary { grid-template-columns: repeat(5,1fr); padding: 13px 5px; border-radius: 20px; }
  .stage-summary small { font-size: 7px; }
  .stage-summary b { font-size: 9px; }
  .plan-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 34px; }
  .plan-card { min-height: 235px; padding: 21px 15px 15px; border-radius: 23px; }
  .plan-period { font-size: 13px; margin-bottom: 22px; }
  .plan-price { font-size: 30px; }
  .plan-price small { font-size: 14px; }
  .plan-rate { font-size: 10px; }
  .tag { position: static; align-self: flex-start; margin: -3px 0 10px; font-size: 7px; }
  .steps li { grid-template-columns: 50px 1fr; padding: 20px 0; }
  .steps h3 { font-size: 21px; }
  .final-cta { padding-block: 105px; }
  .final-cta .primary-button { width: 100%; min-width: 0; }
  .final-cta > p:last-child { margin-top: 70px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner nav { gap: 20px; flex-wrap: wrap; }
  .document { padding-top: 48px; }
}
