:root {
  --blue: #bfdce8;
  --blue-deep: #5f98b1;
  --mint: #dce7df;
  --mint-deep: #718b7e;
  --beige: #eee7dc;
  --cream: #f8f5ef;
  --paper: #fffdf9;
  --ink: #243432;
  --muted: #63716e;
  --line: rgba(36, 52, 50, 0.14);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Montserrat", "Avenir Next", "Century Gothic", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(71, 92, 87, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); line-height: 1.65; }
button, a { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 99; padding: 10px 16px; color: #fff; background: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.topbar { min-height: 84px; padding: 14px clamp(22px, 5vw, 72px); display: flex; justify-content: space-between; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); background: rgba(248, 245, 239, .88); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand strong, footer span:first-child { display: block; font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: .08em; line-height: 1; }
.brand small { display: block; margin-top: 5px; font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.brand-mark { width: 36px; height: 46px; flex: 0 0 36px; display: block; background: var(--blue-deep); -webkit-mask: url("assets/purelien-drop.png") center / contain no-repeat; mask: url("assets/purelien-drop.png") center / contain no-repeat; }
.eyebrow, .kicker { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.eyebrow { color: var(--muted); }

.hero { min-height: calc(100vh - 84px); display: grid; grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr); align-items: center; gap: clamp(40px, 6vw, 100px); padding: clamp(60px, 8vw, 120px) clamp(22px, 7vw, 110px); position: relative; overflow: hidden; background: radial-gradient(circle at 10% 70%, rgba(191,220,232,.9), transparent 38%), linear-gradient(135deg, #faf8f3, #f0ebe2); }
.hero::before { content: ""; position: absolute; width: 410px; height: 530px; right: -180px; top: -240px; border: 1px solid rgba(113,139,126,.18); border-radius: 43% 57% 52% 48% / 61% 44% 56% 39%; transform: rotate(22deg); }
.hero-copy { max-width: 600px; position: relative; z-index: 1; }
.kicker { margin: 0 0 16px; color: var(--mint-deep); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(52px, 6.8vw, 92px); letter-spacing: -.045em; }
h1 em { color: var(--blue-deep); font-weight: 400; }
h2 { margin-bottom: 16px; font-size: clamp(38px, 4vw, 60px); letter-spacing: -.035em; }
h3 { font-size: 30px; letter-spacing: -.02em; }
.intro { max-width: 570px; color: var(--muted); font-size: 18px; }
.trust-row { margin-top: 42px; display: flex; gap: 14px 28px; flex-wrap: wrap; color: var(--muted); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row b { color: var(--ink); font-family: var(--serif); font-size: 23px; font-weight: 400; }

.quiz-card { position: relative; z-index: 1; padding: clamp(26px, 4vw, 48px); background: rgba(255,253,249,.93); border: 1px solid rgba(255,255,255,.9); border-radius: 28px; box-shadow: var(--shadow); }
.quiz-card h2 { margin: 16px 0 8px; font-size: clamp(32px, 3vw, 44px); }
.quiz-card > p { margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.step-label { display: flex; align-items: center; gap: 9px; color: var(--mint-deep); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.step-label span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.goal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.goal { min-height: 64px; padding: 13px 14px; display: flex; align-items: center; gap: 11px; text-align: left; border: 1px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.goal:hover { transform: translateY(-2px); border-color: var(--mint-deep); }
.goal[aria-pressed="true"] { border-color: var(--mint-deep); background: #edf3ef; box-shadow: inset 0 0 0 1px var(--mint-deep); }
.goal-icon { width: 29px; height: 29px; flex: 0 0 29px; display: grid; place-items: center; color: var(--mint-deep); background: var(--cream); border-radius: 50%; font-family: var(--serif); font-size: 18px; }
.primary-button, .booking-button { width: 100%; min-height: 57px; margin-top: 20px; padding: 15px 20px; display: flex; justify-content: center; align-items: center; gap: 14px; border: 0; border-radius: 100px; color: #fff; background: var(--ink); text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .18s ease, opacity .18s ease, background .18s ease; }
.primary-button:hover:not(:disabled), .booking-button:hover { transform: translateY(-2px); background: #38504c; }
.primary-button:disabled { cursor: not-allowed; opacity: .38; }
.form-hint { margin: 9px 0 0 !important; text-align: center; font-size: 11px !important; }
.result { animation: reveal .35s ease both; }
.result-heading { margin: 23px 0 13px; padding-top: 22px; display: flex; gap: 14px; border-top: 1px solid var(--line); }
.result-heading small { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.result-heading h3 { margin: 2px 0 0; font-size: 30px; }
.result-mark { width: 37px; height: 37px; flex: 0 0 37px; display: grid; place-items: center; color: #fff; background: var(--mint-deep); border-radius: 50%; }
#result-copy { color: var(--muted); font-size: 14px; }
.selected-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 17px 0; }
.selected-tags span { padding: 6px 10px; color: #50625a; background: #e5ede8; border-radius: 100px; font-size: 10px; font-weight: 700; }
.medical-note { padding: 14px; color: #59645f !important; background: var(--cream); border-left: 3px solid var(--blue-deep); border-radius: 0 10px 10px 0; font-size: 11px !important; }
.text-button { padding: 0; color: var(--muted); background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; font-size: 11px; }
.scroll-cue { margin: 24px auto -10px; padding-top: 17px; display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--muted); border-top: 1px solid var(--line); text-decoration: none; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.scroll-arrow { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: var(--blue-deep); border-radius: 50%; font-size: 17px; line-height: 1; animation: scroll-nudge 1.8s ease-in-out infinite; }
.scroll-cue:hover { color: var(--ink); }
@keyframes scroll-nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.journey { padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px); background: var(--paper); }
.section-heading { max-width: 1220px; margin: 0 auto 58px; display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; }
.section-heading > p { color: var(--muted); }
.timeline-wrap { max-width: 1220px; margin: 0 auto; }
.timeline-tabs { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.timeline-tabs::before { content: ""; position: absolute; left: 8%; right: 8%; top: 25px; height: 2px; background: rgba(95, 152, 177, .72); }
.timeline-tab { position: relative; z-index: 1; padding: 0 8px 18px; display: flex; flex-direction: column; align-items: center; color: var(--muted); background: transparent; border: 0; cursor: pointer; }
.timeline-tab > span { width: 50px; height: 50px; display: grid; place-items: center; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; font-family: var(--serif); font-size: 18px; transition: .2s ease; }
.timeline-tab b { margin-top: 12px; font-size: 12px; }
.timeline-tab small { font-size: 10px; }
.timeline-tab.active > span, .timeline-tab:hover > span { color: #fff; background: var(--blue-deep); border-color: var(--blue-deep); transform: scale(1.05); }
.timeline-tab.active { color: var(--ink); }
.timeline-panel { min-height: 222px; margin-top: 18px; padding: clamp(28px, 4vw, 50px); display: grid; grid-template-columns: 120px 1fr; gap: 34px; align-items: center; background: linear-gradient(130deg, #c2deea, #dfe9e6); border: 1px solid rgba(95, 152, 177, .45); border-radius: 24px; }
.panel-number { font-family: var(--serif); font-size: 74px; line-height: 1; color: rgba(36,52,50,.32); border-right: 1px solid rgba(36,52,50,.17); }
.panel-meta { margin-bottom: 7px; color: var(--mint-deep); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.timeline-panel h3 { margin-bottom: 12px; }
.timeline-panel p:last-child { margin: 0; max-width: 790px; color: #566562; }
.homecare { max-width: 1030px; margin: 110px auto 0; padding: clamp(30px, 5vw, 64px); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(36px, 7vw, 90px); align-items: center; background: var(--cream); border-radius: 28px; }
.homecare h3 { margin-bottom: 17px; font-size: clamp(32px, 4vw, 48px); }
.homecare p { color: var(--muted); }
.kit-visual { min-height: 250px; margin: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.kit-visual img { width: 100%; max-width: 430px; height: auto; display: block; mix-blend-mode: multiply; }
.kit-visual figcaption { max-width: 330px; margin-top: -8px; color: var(--muted); text-align: center; font-size: 10px; line-height: 1.45; }
.accordion-toggle { width: 100%; padding: 17px 0; display: flex; justify-content: space-between; color: var(--ink); background: none; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; font-weight: 700; text-align: left; }
.accordion-toggle span { color: var(--mint-deep); font-size: 22px; line-height: 1; transition: transform .2s ease; }
.accordion-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.accordion-content { padding-top: 15px; }
.accordion-content ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 13px; }

.investment { padding: clamp(80px, 10vw, 145px) clamp(22px, 7vw, 110px) 70px; background: linear-gradient(145deg, #d8e3de, var(--blue)); }
.price-card { max-width: 1120px; margin: 0 auto; padding: clamp(28px, 5vw, 60px); display: grid; grid-template-columns: 1.2fr .65fr 1.15fr; gap: 30px 48px; align-items: center; background: var(--paper); border-radius: 28px; box-shadow: var(--shadow); }
.price-intro h2 { margin-bottom: 14px; font-size: clamp(38px, 4vw, 54px); }
.price-intro p:last-child { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.price { display: grid; grid-template-columns: auto auto; justify-content: center; align-items: start; }
.price span { margin-top: 11px; font-family: var(--serif); font-size: 25px; }
.price strong { font-family: var(--serif); font-size: clamp(70px, 8vw, 100px); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.price small { grid-column: 1 / -1; text-align: right; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.included { display: grid; gap: 15px; }
.included > div { display: flex; gap: 12px; }
.included > div > span { width: 25px; height: 25px; flex: 0 0 25px; display: grid; place-items: center; color: #fff; background: var(--mint-deep); border-radius: 50%; font-size: 11px; }
.included p { margin: 0; line-height: 1.35; }
.included strong { display: block; font-size: 12px; }
.included small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.booking-button { grid-column: 1 / -1; max-width: 400px; margin: 10px auto 0; }
.booking-note { grid-column: 1 / -1; margin: -19px 0 0; color: var(--muted); text-align: center; font-size: 10px; }
.final-note { max-width: 850px; margin: 90px auto 0; text-align: center; }
.final-note > p:not(.kicker) { max-width: 720px; margin: 0 auto; color: #53645f; }
.contact-line { margin-top: 44px; padding: 18px 0; display: flex; justify-content: center; gap: 12px 26px; flex-wrap: wrap; border-top: 1px solid rgba(36,52,50,.16); border-bottom: 1px solid rgba(36,52,50,.16); color: #53645f; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.contact-line a { color: inherit; }
footer { padding: 30px clamp(22px, 7vw, 110px); display: flex; justify-content: space-between; align-items: center; background: var(--ink); color: var(--paper); }
footer span:last-child { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }

:focus-visible { outline: 3px solid #577368; outline-offset: 3px; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .price-card { grid-template-columns: 1fr 1fr; }
  .included { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .topbar { min-height: 72px; }
  .eyebrow { display: none; }
  .hero { min-height: auto; padding-top: 58px; }
  .goal-grid { grid-template-columns: 1fr; }
  .timeline-tabs { gap: 2px; overflow-x: auto; }
  .timeline-tab { min-width: 88px; }
  .timeline-tab b { font-size: 10px; }
  .timeline-panel { grid-template-columns: 1fr; gap: 14px; }
  .panel-number { border-right: 0; border-bottom: 1px solid rgba(36,52,50,.17); font-size: 48px; }
  .homecare { grid-template-columns: 1fr; }
  .kit-visual { min-height: 230px; }
  .price-card { grid-template-columns: 1fr; text-align: center; }
  .included { grid-column: auto; grid-template-columns: 1fr; text-align: left; }
  .booking-button, .booking-note { grid-column: auto; }
  footer { flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
