/* =============================================================
   Ypso Pump / mylife Loop landing — Pharmaco Diabetes
   Static styles, mobile-first; desktop matches the PDF brief.
   ============================================================= */

@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/BebasNeue-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* mylife brand */
  --mylife-green: #AAC811;
  --trusty-green: #1A5036;
  --catchy-green: #008B3B;
  --spicy-red: #EA5D4F;
  --techy-blue: #006EB7;
  --sunny-yellow: #FFDE14;
  --breezy-green: #DAE49B;
  --breezy-green-40: #F0F4D7;

  /* Pharmaco-observed */
  --orange: #F26B1F;
  --orange-hover: #d85d18;
  --light-grey: #E5E5E5;
  --off-white: #F4F4F4;
  --mid-grey: #888888;
  --dark-grey: #2a2a2a;
  --sticky-red: #D9342B;
  /* Real Pharmaco footer colour: bg-teal-400 = rgb(38 179 193) */
  --pharmaco-teal: #26B3C1;
  --grad-start: #8BB04A;
  --grad-end: #5BB6C9;

  /* Typography */
  --font-heading: 'Bebas Neue', 'Helvetica Neue Condensed', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --container-max: 1280px;
  --container-pad: clamp(20px, 4vw, 64px);
  --section-pad-y: clamp(56px, 8vw, 120px);
  --radius-card: 22px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-grey);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  transition: background-color .2s ease, transform .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--trusty-green); outline-offset: 3px; }
.btn--orange:hover { background: var(--orange-hover); }
.btn--grey { background: var(--mid-grey); }
.btn--grey:hover { background: #6f6f6f; }
.btn--header { padding: 14px 36px; }
.btn--send { padding: 12px 26px; font-size: 13px; }

/* =============================================================
   1. HEADER
   ============================================================= */
.site-header {
  background: var(--off-white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand__logo {
  display: block;
  height: 44px;
  width: auto;
}
@media (max-width: 768px) {
  .brand__logo { height: 30px; }
}

/* =============================================================
   2. HERO
   ============================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  /* Hero asset Website_Asset_Hero.jpg already has the green gradient/treatment baked in by Studio.
     Marija 26 May 2026: show the full image at its supplied dimensions — no cropping — so the
     left and right of the photo are visible. Width-fits via `100% auto`, hero section height
     follows the image's natural aspect ratio (2000 × 924). */
  background-image: url('assets/Website_Asset_Hero.jpg');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -2;
}
/* Force the hero section's height to match the hero photo's natural aspect ratio (2000:924). */
.hero { aspect-ratio: 2000 / 924; min-height: 0; }
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Two-layer overlay:
     1. Subtle bottom vignette for headline contrast.
     2. Soft white radial wash anchored to the bottom-left — acts as a synthetic
        "blur zone" backing the mylife/YpsoPump lockup so that the lockup wordmark
        always sits on a light area regardless of how the photo crops responsively.
        The supplied hero has a baked-in blur in roughly the same spot; this overlay
        reinforces it and fills the gap when the image is cropped (≤ 1024px). */
  /* Anchor the white blur to the same horizontal point as the lockup's container-left edge.
     On wide screens the container caps at 1280px, so the blur sits ~(viewport - 1280)/2 in
     from the left, plus the container's inner padding. Using a viewport-aware calc keeps
     the blur tracking the lockup whatever the viewport width. */
  background:
    radial-gradient(ellipse 55% 50% at max(14%, calc((100vw - 1280px) / 2 + 80px)) 88%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 28%, rgba(255,255,255,0.35) 55%, rgba(255,255,255,0) 80%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  z-index: -1;
}
.hero__content {
  color: #fff;
  padding-top: clamp(60px, 9vw, 120px);
  /* Reserve room at the bottom for the absolutely-positioned lockup + footnote so they
     never collide with the 'Used by 100,000...' line at narrower viewports. */
  padding-bottom: clamp(160px, 18vw, 240px);
  position: relative;
}
.hero__headline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(48px, 8.4vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero__sub {
  /* Marija 25 May: increase the 'Used by over 100,000 people worldwide' size. */
  /* Marija 26 May: keep the whole line — including 'worldwide' — on a single line. */
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  margin: 0 0 32px;
  max-width: none;
  white-space: nowrap;
}
.hero__sub sup { font-size: 0.7em; top: -0.6em; }

/* New hero lockup — Studio-supplied mylife_ypso_pump.svg (replaces the old green-pill custom lockup).
   Marija 26 May 2026: removed the white card behind the lockup — use the transparent asset directly.
   Blake 27 May 2026: lockup anchored to bottom of the hero inside a .container wrapper so it
   follows the same max-width/centring as the headline above (alignment with 'INSULIN CONTROL'
   on wide screens >1280px), with a reduced size for better balance. */
.hero__lockup-anchor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(28px, 5vw, 72px);
  z-index: 1;
  pointer-events: none;
}
.hero__lockup-anchor .container {
  pointer-events: auto;
}
.hero__lockup {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.hero__lockup-img {
  display: block;
  width: clamp(160px, 18vw, 240px);
  height: auto;
}
.hero__footnote {
  margin: 0;
}

/* Small inline lockup (kept for the intro/video badge — still uses old typographic version) */
.lockup__mylife {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 26px;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.lockup__mylife strong { font-weight: 800; }
.lockup__ypso {
  background: #fff;
  color: var(--trusty-green);
  font-weight: 700;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  line-height: 1;
}
.lockup__ypso sup { font-size: 0.6em; }
.lockup__mylife--sm { font-size: 18px; }
.lockup__ypso--sm { font-size: 12px; padding: 4px 10px; }

.hero__footnote {
  font-size: 11px;
  opacity: 0.85;
  color: #444;
}

/* =============================================================
   3. INTRO / VIDEO
   ============================================================= */
.intro {
  background: var(--mylife-green);
  padding: var(--section-pad-y) 0;
  color: var(--trusty-green);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  /* Marija 27 May 2026: top-align so the top of the video matches the top of
     the 'Take control of Type 1 diabetes...' headline (was center-aligned). */
  align-items: start;
}
.intro__video {
  position: relative;
  margin: 0;
  /* Marija 26 May 2026: removed the white border/frame around the video — squared corners,
     transparent background, no padding. The iframe now sits flush on the lime-green section. */
  border-radius: 0;
  overflow: hidden;
  /* Marija 25 May: switched from 4:3 still to a real YouTube embed (16:9). */
  aspect-ratio: 16 / 9;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.intro__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  outline: 0;
  background: transparent;
}

.intro__headline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: #1F2937;
}
.intro__body {
  /* Marija 28 May 2026: body copy locked at 14.5px to match the 4-card tiles + CTA section. */
  font-size: 14.5px;
  line-height: 1.6;
  color: #1F2937;
  margin: 0 0 32px;
  max-width: 56ch;
}

/* =============================================================
   4. FEATURE CARDS
   ============================================================= */
.cards {
  background: var(--light-grey);
  padding: var(--section-pad-y) 0;
}
.cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.card__title {
  /* Reserve 3 lines so all four headings align across the row */
  min-height: calc(0.98em * 3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.card__media--smart { background-image: url('assets/extra2.jpg'); }
.card__media--phone { background-image: url('assets/smartphone-card.png'); }
.card__media--pregnancy { background-image: url('assets/extra3.jpg'); }
.card__media--parents { background-image: url('assets/hero-original.jpeg'); }

.card__body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  justify-content: flex-start;
}
.card__text { flex: 1 1 auto; }
.card__title { margin-bottom: 4px; }
.card__text { margin-top: 0; }
.card__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 0.98;
  color: var(--trusty-green);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.01em;
}
.card__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--dark-grey);
  margin: 0;
}

/* =============================================================
   5. CLOSING CTA
   ============================================================= */
.cta {
  background: #fff;
  /* Marija 28 May 2026: symmetric top + bottom padding, dialled down a notch — the
     full --section-pad-y (up to 120px) felt too airy here. */
  padding: clamp(40px, 5vw, 72px) 0;
}
.cta__inner {
  text-align: center;
  /* Marija 25 May: match the 4-card section container width (1280px) so text doesn't wrap awkwardly. */
  max-width: var(--container-max);
  margin: 0 auto;
}
.cta__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  /* Marija 25 May: heading was too large — step it down. */
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.05;
  color: var(--trusty-green);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.cta__body {
  /* Marija 28 May 2026: body copy locked at 14.5px to match the rest of the page. */
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--dark-grey);
  margin: 0 0 40px;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cta__buttons .btn { padding: 14px 26px; font-size: 13px; }

/* =============================================================
   6. LEGAL
   ============================================================= */
.legal {
  background: var(--light-grey);
  padding: clamp(40px, 5vw, 64px) 0;
}
.legal__inner {
  /* Marija 25 May: match the 4-card section container width. */
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  color: var(--dark-grey);
}
.legal__line {
  /* Marija 28 May 2026: T&C copy stepped up to 13px — bigger than before, still smaller
     than the 14.5px body copy elsewhere. */
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.legal__line--small { font-size: 13px; opacity: 0.85; }

/* =============================================================
   7. FOOTER (matches pharmacodiabetes.co.nz teal-400)
   ============================================================= */
.site-footer {
  /* Marija 26 May 2026: match the gradient footer used on pharmacodiabetes.co.nz — uses the
     same `pharm-grad` background image pulled from the live Pharmaco Diabetes website.
     Marija 28 May 2026: T&Cs/fine print removed — padding tightened so the footer is no
     taller than it needs to be for the nav + contact + brand mark. */
  background: var(--pharmaco-teal) url('assets/footer-gradient.webp') no-repeat right top;
  background-size: cover;
  color: #fff;
  padding: clamp(28px, 3.5vw, 56px) clamp(24px, 4vw, 80px);
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* Tighter gap between the top nav/contact row and the brand mark now that the
     fine-print column is gone. */
  gap: clamp(24px, 3vw, 48px);
}
.footer__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .footer__row--top { flex-direction: row; gap: 96px; align-items: flex-start; justify-content: space-between; }
  .footer__row--top .footer__nav { flex: 0 0 auto; }
  .footer__row--top .footer__contact { flex: 0 0 auto; text-align: right; }
  .footer__row--top .footer__contact .footer__label { text-align: right; }
  /* Marija 28 May 2026: brand mark now sits on its own row — right-align on desktop. */
  .footer__row--bottom { flex-direction: row; gap: 96px; align-items: center; justify-content: flex-end; }
}
.footer__col { flex: 1 1 0; min-width: 0; }

.footer__nav { display: none; }
@media (min-width: 1024px) { .footer__nav { display: block; } }
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__nav a {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.footer__nav a:hover { border-color: rgba(255,255,255,0.85); }

.footer__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: #fff;
}

.footer__contact { text-align: center; }
@media (min-width: 1024px) {
  .footer__contact { text-align: right; }
}
.footer__contact .footer__label { display: none; }
@media (min-width: 1024px) { .footer__contact .footer__label { display: block; } }
.footer__phone {
  display: block;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
}
@media (min-width: 1536px) { .footer__phone { font-size: 48px; } }
.footer__address {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  display: none;
}
@media (min-width: 1024px) { .footer__address { display: block; } }

.footer__row--bottom {
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__row--bottom { text-align: left; }
}
.footer__finePrint { flex: 1; }
.footer__finePrint p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 4px;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}
.footer__brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
@media (min-width: 1024px) { .footer__brand-logo { height: 64px; } }

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* ≤ 1280: tighter container */
@media (max-width: 1280px) {
  :root { --container-pad: clamp(20px, 3.5vw, 48px); }
}

/* ≤ 1024: tablet */
@media (max-width: 1024px) {
  .cards__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__grid { gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__contact { grid-column: 1 / -1; }
  /* On smaller viewports the full-bleed image gets too short, so fall back to a min-height
     and crop the photo via `cover` again (single-line 'worldwide' is desktop-only anyway).
     Bias the photo crop toward the upper-right so the bottom-left stays in the white-blur zone
     where the lockup is anchored. */
  .hero { aspect-ratio: auto; min-height: 640px; }
  .hero__media { background-size: cover; background-position: 70% center; }
  .hero__sub { white-space: normal; }
}

/* ≤ 768: stack intro, footer, etc. */
@media (max-width: 768px) {
  .header-inner { gap: 12px; }
  .brand__name { font-size: 22px; }
  .brand__sub { font-size: 11px; }
  .brand__icon { width: 36px; height: 36px; }
  .btn--header { padding: 11px 22px; font-size: 12px; }

  .hero { aspect-ratio: auto; min-height: 620px; }
  .hero__headline { max-width: 100%; }
  .hero__lockup-anchor { bottom: 40px; }

  .intro__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__contact { grid-column: auto; }
  .footer__bottom { grid-template-columns: 1fr; }
  .footer__lockup { text-align: left; align-items: flex-start; }

  .cta__heading { font-size: clamp(28px, 6.5vw, 44px); }
  .cta__buttons { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { width: 100%; }
}

/* ≤ 480: phone */
@media (max-width: 480px) {
  :root { --container-pad: 18px; --section-pad-y: 56px; }
  .cards__grid { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(40px, 11vw, 64px); }
  .hero__sub { font-size: clamp(15px, 4.4vw, 19px); margin-bottom: 28px; max-width: none; }
  .hero__lockup-img { width: clamp(140px, 42vw, 200px); }
  .hero__lockup-anchor { bottom: 32px; }
  .hero__footnote { font-size: 10px; }
  .cta__heading { font-size: clamp(26px, 7.5vw, 38px); }
  .footer__phone { font-size: 36px; }
  .newsletter { flex-wrap: wrap; }
  .newsletter input { width: 100%; }
  .btn--send { width: 100%; }
  .lockup__mylife { font-size: 22px; }
  .lockup__ypso { font-size: 14px; }
  .card__title { min-height: 0; }
}

/* =========================================================
   SPEAK TO A PRODUCT EXPERT — POPUP / MODAL (Klaviyo)
   ========================================================= */
.expert-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.expert-modal[hidden] { display: none; }
.expert-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 20, 0.55);
  backdrop-filter: blur(2px);
  animation: expert-fade .2s ease;
}
.expert-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 44px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: expert-pop .22s ease;
}
.expert-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--mid-grey);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color .15s ease, color .15s ease;
}
.expert-modal__close:hover { background: var(--off-white); color: var(--dark-grey); }
.expert-modal__lockup {
  display: block;
  height: 40px;
  width: auto;
  margin: 0 auto 18px;
}
.expert-modal__title {
  font-family: var(--font-heading);
  color: var(--mylife-green);
  font-size: clamp(34px, 7vw, 48px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
}
.expert-modal__intro {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--dark-grey);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  max-width: 36ch;
  margin: 0 auto 26px;
}
.expert-field { margin-bottom: 18px; }
.expert-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark-grey);
  margin-bottom: 8px;
}
.expert-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-grey);
  padding: 15px 18px;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.expert-field input::placeholder { color: #9a9a9a; }
.expert-field input:focus {
  outline: 0;
  border-color: var(--mylife-green);
  box-shadow: 0 0 0 3px rgba(170, 200, 17, 0.25);
}
.expert-field input.is-invalid { border-color: var(--spicy-red); }
.expert-phone {
  display: flex;
  align-items: center;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.expert-phone:focus-within {
  border-color: var(--mylife-green);
  box-shadow: 0 0 0 3px rgba(170, 200, 17, 0.25);
}
.expert-phone__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px 0 18px;
  flex-shrink: 0;
}
.expert-phone__flag img { border-radius: 2px; display: block; }
.expert-phone input {
  border: 0;
  border-radius: 0;
  padding-left: 6px;
  flex: 1;
}
.expert-phone input:focus { outline: 0; box-shadow: none; }
.expert-form__error {
  color: var(--spicy-red);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 14px;
}
.expert-submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 8px auto 0;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-grey);
  background: var(--mylife-green);
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease;
}
.expert-submit:hover { background: #98b30f; }
.expert-submit:disabled { opacity: 0.6; cursor: default; }
.expert-submit--close { color: #fff; }
.expert-modal__success { text-align: center; padding: 12px 0 4px; }
.expert-success__tick {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--mylife-green);
  color: #fff;
  font-size: 34px;
  line-height: 64px;
}
@keyframes expert-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes expert-pop { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }

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