/* ============================================================
   קלפים טיפוליים – מעבר לתמונה  ·  Landing page styles
   Hebrew · RTL · warm, calming purple–blue
   ============================================================ */

:root {
  /* palette — warm, bold purple */
  --bg:        #E9DAFB;   /* light purple page background */
  --bg-tint:   #DCC9F6;   /* deeper lavender (tinted sections) */
  --bg-blue:   #E3D2F9;   /* mid lavender */
  --bg-deep:   #3A1E66;   /* deep royal purple (dark sections) */
  --bg-deep-2: #4B2789;

  --ink:    #2A1B4D;      /* primary text */
  --muted:  #6E5E8C;      /* secondary text */
  --line:   #E6D8F4;      /* hairline */

  --primary:   #7C2FB8;   /* warm bold purple */
  --primary-d: #5E2192;
  --blue:      #A24CE0;   /* warm violet accent */
  --gold:      #C79A52;   /* warm gold accent */

  --grad: linear-gradient(135deg, #7C2FB8 0%, #B24AD0 100%);

  --r:   18px;            /* card radius */
  --r-s: 12px;
  --shadow:   0 18px 50px -22px rgba(42, 33, 80, .35);
  --shadow-s: 0 8px 24px -12px rgba(42, 33, 80, .28);

  --maxw: 1080px;
  --pad: clamp(20px, 5vw, 56px);

  /* hero tuning — author-chosen values from Claude Design (applied here so the
     live page matches the design without the author-only tweaks runtime) */
  --hero-w: 720px;
  --hero-x: 0px;
  --hero-y: -95px;
}

* { box-sizing: border-box; }

/* user-fillable image slots inherit sizing from layout classes */
image-slot { display: block; }

/* <img> tags that replaced the design's <image-slot> elements — keep the
   shapes the slots used (hero rounded, strip rounded, Daniel circular) */
.hero-img  { object-fit: contain; }
.strip-img { object-fit: contain; }
.about-photo { border-radius: 50%; object-fit: cover; }
.price-img { display: block; width: 100%; max-width: 620px; height: auto; margin: 38px auto 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Assistant", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

section { padding-block: clamp(56px, 9vw, 110px); position: relative; }
.pain { padding-top: clamp(28px, 4vw, 52px); } /* hero אחרי הסרת הכפתור — לצמצם את הרווח */
.sec-tint { background: var(--bg-tint); }
.sec-blue { background: var(--bg-blue); }
.sec-deep { background: var(--bg-deep); color: #fff; }
.sec-deep h1, .sec-deep h2, .sec-deep h3 { color: #fff; }

/* kicker label */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Assistant", sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .08em;
  color: var(--primary);
  text-transform: none;
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad);
}
.sec-deep .kicker { color: #C9BEF2; }
.sec-deep .kicker::before { background: linear-gradient(135deg,#C9BEF2,#9FB4F0); }

.sec-title { font-size: clamp(28px, 4.4vw, 46px); }
.sec-lead  { color: var(--muted); font-size: clamp(18px, 2.2vw, 21px); max-width: 60ch; margin-top: 18px; }
.sec-deep .sec-lead { color: #C8C2E0; }

.center { text-align: center; }
.center .sec-lead, .center .kicker { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Assistant", sans-serif; font-weight: 700; font-size: 19px;
  padding: 17px 36px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--grad); color: #fff; text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(62, 73, 168, .6);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  line-height: 1.2; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(62, 73, 168, .7); filter: saturate(1.08); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 21px; padding: 20px 46px; }
.btn-ghost {
  background: transparent; color: var(--primary);
  border: 1.5px solid rgba(90,73,168,.35); box-shadow: none;
}
.btn-ghost:hover { background: rgba(90,73,168,.06); box-shadow: none; }
.sec-deep .btn-light { background: #fff; color: var(--bg-deep); box-shadow: 0 14px 30px -12px rgba(0,0,0,.4); }

/* a repeating CTA block after sections */
.cta-block { margin-top: clamp(32px, 5vw, 52px); }
.center .cta-block { display: flex; justify-content: center; }

/* ---------- image placeholders ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg,
      rgba(90,73,168,.05) 0 14px,
      rgba(90,73,168,.10) 14px 28px);
  border: 1px solid rgba(90,73,168,.18);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  color: #7A719A;
}
.ph span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px; letter-spacing: .02em; line-height: 1.6;
  background: rgba(251,249,246,.82); padding: 8px 14px; border-radius: 8px;
  max-width: 80%;
}
.ph-round { border-radius: 50%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(90,73,168,.10), transparent 55%),
    radial-gradient(110% 80% at 0% 20%, rgba(62,91,201,.10), transparent 50%),
    var(--bg);
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(22px, 3vw, 36px);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.hero-copy { max-width: 680px; margin-inline: auto; text-align: center; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); text-align: center; }
.hero-sub { font-size: clamp(19px, 2.6vw, 24px); color: var(--ink); margin-top: 20px; font-weight: 600; }
.hero-reinforce { color: var(--muted); font-size: clamp(17px, 2vw, 19px); margin-top: 14px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* hero banners (date + price images) */
.hero-banner { display: block; margin-top: 16px; margin-inline: auto; line-height: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-s); width: 100%; max-width: 330px; }
.hero-banner img { width: 100%; height: auto; display: block; }
a.hero-banner { transition: transform .15s ease, box-shadow .15s ease; }
a.hero-banner:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(74,42,130,.22); }
.date-banner { margin-top: 24px; }
.price-full { margin-top: 20px; font-size: 22px; font-weight: 700; }
.price-full b { color: var(--primary); }
/* moved date/price/countdown block (in the gift section) */
.urgency-block { max-width: 680px; margin: 32px auto 0; text-align: center; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: 16px; box-shadow: var(--shadow-s);
  white-space: nowrap;
}
.chip b { color: var(--primary); font-weight: 800; }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.hero-note { color: var(--muted); font-size: 15px; }

.hero-visual { position: relative; }
.hero-img {
  aspect-ratio: 4 / 3; width: var(--hero-w, 480px); max-width: none; height: auto;
  transform: translate(var(--hero-x, 0px), var(--hero-y, 0px));
}
.hero-img.ph { border-radius: var(--r); }
.hero-badge {
  position: absolute; inset-inline-start: -18px; bottom: 26px;
  background: #fff; border-radius: var(--r-s); padding: 14px 18px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px; max-width: 80%;
  pointer-events: none; /* let reframe drags reach the image slot underneath */
}
.hero-badge .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-tint);
  display: grid; place-items: center; font-size: 20px; }
.hero-badge b { font-size: 15px; }
.hero-badge small { color: var(--muted); font-size: 13px; display: block; }

/* ---------- countdown ---------- */
.countdown {
  margin-top: 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 22px; box-shadow: var(--shadow-s);
}
.countdown.cd-deep { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); box-shadow: none; }
.countdown .cd-label { font-weight: 700; font-size: 15px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; }
.cd-deep .cd-label { color: #C8C2E0; }
.cd-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(62,91,201,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(62,91,201,.45);} 70%{box-shadow:0 0 0 10px rgba(62,91,201,0);} 100%{box-shadow:0 0 0 0 rgba(62,91,201,0);} }
.cd-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; direction: ltr; }
.cd-box { background: var(--bg); border-radius: var(--r-s); padding: 12px 6px; text-align: center; border: 1px solid var(--line); }
.cd-deep .cd-box { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.cd-num { font-family: "Frank Ruhl Libre", serif; font-weight: 700; font-size: clamp(26px, 4vw, 36px); color: var(--primary); line-height: 1; font-variant-numeric: tabular-nums; }
.cd-deep .cd-num { color: #fff; }
.cd-unit { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 600; }
.cd-deep .cd-unit { color: #C8C2E0; }

/* ============================================================
   content blocks
   ============================================================ */

/* pain – rhetorical questions */
.q-list { display: grid; gap: 14px; margin-top: 30px; max-width: 760px; }
.q-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 24px; box-shadow: var(--shadow-s);
}
.q-item .mark { flex: none; color: var(--primary); font-family: "Frank Ruhl Libre", serif; font-size: 28px; line-height: 1; font-weight: 700; }
.q-item p { font-size: 18px; font-weight: 600; }
.pain-intro { color: var(--muted); font-size: 19px; margin-top: 18px; max-width: 66ch; }

/* identification – checklist */
.id-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.id-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-s); padding: 18px 20px;
}
.id-item .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-tint);
  display: grid; place-items: center; color: var(--primary); }
.id-item p { font-size: 17px; font-weight: 600; }
.id-close { text-align: center; font-family: "Frank Ruhl Libre", serif; font-size: clamp(22px,3vw,30px);
  margin-top: 36px; color: var(--primary); font-weight: 700; }

/* discover – numbered cards */
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.disc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px;
  box-shadow: var(--shadow-s); transition: transform .2s ease, box-shadow .2s ease;
}
.disc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.disc-num { font-family: "Frank Ruhl Libre", serif; font-weight: 700; font-size: 17px; color: #fff;
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center;
  margin-bottom: 16px; }
.disc-card p { font-size: 17px; font-weight: 600; line-height: 1.5; }

/* trust */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 16px; }
.trust-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r); padding: 34px 32px; text-align: center;
}
.trust-num { font-family: "Frank Ruhl Libre", serif; font-weight: 700; font-size: clamp(40px, 7vw, 64px); line-height: 1;
  background: linear-gradient(135deg,#E7DFFB,#A9BCF4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-card h3 { font-size: 22px; margin-top: 12px; }
.trust-card p { color: #C8C2E0; margin-top: 10px; font-size: 16px; }
.trust-foot { text-align: center; margin-top: 40px; font-size: clamp(19px,2.6vw,24px); font-weight: 600; color: #fff; }
.trust-foot b { color: #C9BEF2; }

/* audience */
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.aud-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 18px;
  text-align: center; box-shadow: var(--shadow-s); transition: transform .2s ease;
}
.aud-card:hover { transform: translateY(-3px); }
.aud-ico { width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 14px; background: var(--bg-tint);
  display: grid; place-items: center; }
.aud-ico svg { width: 24px; height: 24px; stroke: var(--primary); }
.aud-card p { font-weight: 700; font-size: 16px; }

/* what you'll get */
.get-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.get-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 8px; border-bottom: 1px solid var(--line); }
.get-item .tick { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; }
.get-item .tick svg { width: 15px; height: 15px; stroke: #fff; }
.get-item p { font-size: 18px; font-weight: 600; }
.get-quote {
  margin-top: 48px; text-align: center; max-width: 720px; margin-inline: auto;
  font-family: "Frank Ruhl Libre", serif; font-size: clamp(22px, 3.2vw, 32px); line-height: 1.45;
  color: var(--primary); font-weight: 500;
}
.get-quote .em { color: var(--ink); }

/* limited-time price banner */
.price-banner {
  margin: 38px auto 0; max-width: 620px; text-align: center;
  background: linear-gradient(135deg, rgba(90,73,168,.07), rgba(62,91,201,.07));
  border: 1.5px solid rgba(90,73,168,.22); border-radius: var(--r);
  padding: 26px 30px; box-shadow: var(--shadow-s);
}
.price-banner .pb-flag {
  display: inline-block; margin-bottom: 14px;
  font-family: "Assistant", sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: .08em; color: #fff; background: var(--gold);
  padding: 6px 16px; border-radius: 999px;
}
.price-banner .pb-text {
  font-family: "Frank Ruhl Libre", serif; font-weight: 500;
  font-size: clamp(20px, 2.8vw, 26px); line-height: 1.45; color: var(--ink);
}
.price-banner .pb-text b {
  font-weight: 700; font-size: 1.18em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* about */
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px,5vw,60px); align-items: center; }
.about-photo { aspect-ratio: 1; width: 100%; height: auto; }
.about h2 { font-size: clamp(26px, 3.6vw, 40px); }
.about-role { color: var(--primary); font-weight: 700; font-size: 18px; margin-top: 8px; }
.about-body { color: var(--ink); font-size: 18px; margin-top: 20px; }
.about-body p + p { margin-top: 14px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.about-tags .t { background: var(--bg-tint); color: var(--primary-d); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: 14px; }

/* bonus */
.bonus-card {
  display: flex; align-items: center; gap: 26px;
  background: linear-gradient(120deg, rgba(184,145,90,.10), rgba(90,73,168,.08));
  border: 1px solid rgba(184,145,90,.30); border-radius: var(--r);
  padding: 30px 34px; box-shadow: var(--shadow-s);
}
.bonus-gift { flex: none; width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(135deg,#C7A063,#B8915A);
  display: grid; place-items: center; box-shadow: 0 12px 26px -12px rgba(184,145,90,.7); }
.bonus-gift svg { width: 30px; height: 30px; stroke: #fff; }
.bonus-card .b-label { color: var(--gold); font-weight: 800; font-size: 14px; letter-spacing: .06em; }
.bonus-card h3 { font-size: clamp(20px, 2.8vw, 26px); margin-top: 4px; }

/* intermediate full image strip — show the whole image, no crop */
.strip { padding-block: clamp(28px, 4vw, 48px); }
.strip .wrap-strip { max-width: 760px; margin-inline: auto; padding-inline: var(--pad); }
.strip-img { width: 100%; aspect-ratio: 4 / 3; height: auto; border-radius: var(--r); }

/* ============================================================
   FORM
   ============================================================ */
.form-sec {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,.10), transparent 50%),
    var(--bg-deep);
  color: #fff;
}
.form-card {
  background: #fff; color: var(--ink);
  border-radius: 26px; box-shadow: 0 40px 90px -40px rgba(0,0,0,.6);
  overflow: hidden; max-width: 920px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.05fr;
}
.form-aside { background: var(--grad); color: #fff; padding: clamp(30px,4vw,46px); display: flex; flex-direction: column; gap: 18px; }
.form-aside h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.form-aside .lead { color: rgba(255,255,255,.9); font-size: 17px; }
.form-aside .ev { display: flex; gap: 12px; align-items: flex-start; margin-top: 4px; }
.form-aside .ev .i { flex: none; width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.form-aside .ev .i svg { width: 18px; height: 18px; stroke: #fff; }
.form-aside .ev b { display: block; font-size: 16px; }
.form-aside .ev small { color: rgba(255,255,255,.82); font-size: 14px; }
.form-aside .price-tag { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); }
.form-aside .price-tag .p { font-family: "Frank Ruhl Libre", serif; font-size: 40px; font-weight: 700; }
.form-aside .price-tag small { color: rgba(255,255,255,.82); }
.form-aside .ev-note { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; margin-top: 14px; }
.form-aside .price-tag .p-old { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.form-aside .price-tag .p-old s { opacity: .85; }

.form-body { padding: clamp(28px,4vw,44px); }
.form-body h3 { font-size: 22px; margin-bottom: 6px; }
.form-body .fb-sub { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.field label .req { color: var(--primary); }
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 17px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-s);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(90,73,168,.12); }
.field.invalid input, .field.invalid select { border-color: #C2456B; }
.field .err { color: #C2456B; font-size: 13.5px; font-weight: 600; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.form-submit { width: 100%; margin-top: 6px; }
.form-secure { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 14px; margin-top: 16px; }
.form-secure svg { width: 15px; height: 15px; stroke: var(--muted); }
.form-success {
  display: none; text-align: center; padding: 18px;
}
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-tint); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success .ok svg { width: 32px; height: 32px; stroke: var(--primary); }

/* ---------- footer ---------- */
.foot { background: var(--bg-deep-2); color: rgba(255,255,255,.7); text-align: center; padding-block: 36px; font-size: 14px; }
.foot a { color: #fff; text-decoration: none; font-weight: 600; }

/* ============================================================
   floating WhatsApp
   ============================================================ */
.wa {
  position: fixed; inset-block-end: 22px; inset-inline-start: 22px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 12px 18px 12px 14px; border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  font-weight: 700; font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(37,211,102,.7); }
.wa svg { width: 26px; height: 26px; flex: none; }
.wa .wa-txt { max-width: 200px; line-height: 1.2; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-img { aspect-ratio: 4 / 3; width: 100%; }
  .disc-grid { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { width: 220px; margin-inline: auto; }
  .about-tags, .about .kicker { justify-content: center; }
  .form-card { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .disc-grid, .id-grid, .get-grid, .trust-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .bonus-card { flex-direction: column; text-align: center; }
  .q-item { padding: 16px 18px; }
  .wa .wa-txt { display: none; }
  .wa { padding: 14px; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .disc-card:hover, .aud-card:hover, .btn:hover { transform: none; }
}
