/* ========== Darvona — Wellness Informational Stylesheet ========== */

:root {
  --c-ink: #0c2340;
  --c-deep: #103a73;
  --c-blue: #1f6feb;
  --c-sky: #5aa3ff;
  --c-mist: #e6f0fb;
  --c-cloud: #f5f9ff;
  --c-paper: #ffffff;
  --c-soft: #f7f9fc;
  --c-muted: #5a6a82;
  --c-line: #dbe5f1;
  --c-accent: #0aa2c0;
  --shadow-sm: 0 2px 8px rgba(16, 58, 115, 0.06);
  --shadow-md: 0 10px 28px rgba(16, 58, 115, 0.10);
  --shadow-lg: 0 20px 50px rgba(16, 58, 115, 0.14);
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;
  --container: 1180px;
  --t-fast: 0.2s ease;
  --t-base: 0.35s cubic-bezier(.4,.0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--c-ink);
  line-height: 1.25;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw + .5rem, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.4vw + .5rem, 2.3rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p  { margin: 0 0 1em; color: #34465e; }
a  { color: var(--c-deep); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-blue); }

img { max-width: 100%; display: block; height: auto; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: .02em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base);
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-deep), var(--c-blue));
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 111, 235, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(31, 111, 235, .35); color: #fff; }
.btn-ghost { background: transparent; color: var(--c-deep); border-color: var(--c-line); }
.btn-ghost:hover { background: var(--c-mist); border-color: var(--c-sky); }

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--c-line);
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--c-ink);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-accent));
  display: inline-block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 0.95rem;
  color: var(--c-ink);
  font-weight: 500;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--c-blue);
  transition: width var(--t-base);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--c-ink);
  margin: 6px 0;
  transition: transform var(--t-base), opacity var(--t-fast);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(90,163,255,.18), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(10,162,192,.12), transparent 50%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero .lead {
  font-size: 1.12rem;
  color: var(--c-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-mist);
  color: var(--c-deep);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 22px;
  border: 1px solid rgba(31,111,235,.15);
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--c-mist);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating {
  position: absolute;
  left: 16px;
  bottom: 18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 32px);
  border: 1px solid var(--c-line);
}
.hero-floating .badge {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}
.hero-floating .hf-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.3;
}
.hero-floating .hf-label {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-floating .hf-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== Sections ========== */
section { padding: 80px 0; }
.section-soft { background: var(--c-cloud); }
.section-mist { background: linear-gradient(180deg, #fff, var(--c-cloud)); }

.section-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}
.section-head p { color: var(--c-muted); font-size: 1.05rem; }

/* ========== Intro / Wellness Block ========== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 18px; }
.intro-text p { font-size: 1.02rem; }
.intro-image {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(16,58,115,.12));
}
.intro-image img { aspect-ratio: 5/4; object-fit: cover; }

/* ========== Pillars (Info / Ingredients section) ========== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-m);
  padding: 36px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31,111,235,.25);
}
.pillar .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-blue);
  opacity: .35;
  margin-bottom: 18px;
  display: block;
}
.pillar h3 { margin-bottom: 12px; font-size: 1.2rem; }
.pillar p { margin: 0; font-size: 0.97rem; }

/* ========== Product card ========== */
.product-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-l);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}
.product-image {
  background: linear-gradient(160deg, var(--c-mist), #fff);
  border-radius: var(--radius-m);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}
.product-image img {
  max-height: 360px;
  width: auto;
  filter: drop-shadow(0 25px 40px rgba(16,58,115,.18));
}
.product-info h2 { margin-bottom: 18px; }
.product-info .meta {
  display: inline-block;
  font-size: .82rem;
  color: var(--c-accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-info ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}
.product-info li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #34465e;
  font-size: 0.98rem;
}
.product-info li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-mist);
  border: 2px solid var(--c-blue);
}

/* ========== FAQ Accordion ========== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: inherit;
}
.faq-question .icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-mist);
  color: var(--c-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--c-blue);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base);
}
.faq-answer p {
  padding: 0 0 22px;
  margin: 0;
  color: var(--c-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ========== Lifestyle Section ========== */
.lifestyle {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.lifestyle-image {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lifestyle-image img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.lifestyle ul {
  list-style: none;
  padding: 0; margin: 24px 0 0;
}
.lifestyle li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: 1rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lifestyle li:last-child { border-bottom: none; }
.lifestyle li strong { color: var(--c-deep); display: block; margin-bottom: 4px; }
.lifestyle li .num-circle {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-mist);
  color: var(--c-blue);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  font-family: 'Playfair Display', serif;
}

/* ========== CTA banner ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-deep), var(--c-blue));
  color: #fff;
  border-radius: var(--radius-l);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -100px; right: -80px;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 30px; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--c-deep);
}
.cta-banner .btn-primary:hover {
  background: var(--c-mist);
  color: var(--c-deep);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.78);
  padding: 70px 0 25px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer h4 {
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a {
  color: rgba(255,255,255,.7);
  display: block;
  padding: 4px 0;
  font-size: .94rem;
}
.site-footer a:hover { color: var(--c-sky); }
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  max-width: 320px;
  margin-top: 10px;
}
.footer-brand .brand { color: #fff; }
.contact-list {
  list-style: none;
  padding: 0; margin: 0;
}
.contact-list li {
  padding: 5px 0;
  font-size: .94rem;
  color: rgba(255,255,255,.7);
}
.contact-list li strong { color: #fff; font-weight: 500; display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }
.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { display: inline-block; padding: 0; margin-right: 16px; }

/* ========== Form ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--c-ink);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-s);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-ink);
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(31,111,235,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea {
  border-color: #d6455d;
  box-shadow: 0 0 0 4px rgba(214,69,93,.1);
}
.field .err-msg {
  display: none;
  color: #d6455d;
  font-size: .82rem;
  margin-top: 5px;
}
.field.error .err-msg { display: block; }
.consent {
  font-size: .85rem;
  color: var(--c-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.consent input { width: auto; margin-top: 4px; }

.info-panel {
  background: var(--c-cloud);
  border-radius: var(--radius-l);
  padding: 36px;
}
.info-panel h3 { margin-bottom: 18px; }
.info-block {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}
.info-block:last-child { border-bottom: none; }
.info-block strong { color: var(--c-deep); display: block; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.info-block span { color: var(--c-ink); font-size: .98rem; }

.map-placeholder {
  background: linear-gradient(135deg, var(--c-mist), var(--c-cloud));
  border-radius: var(--radius-m);
  height: 280px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,111,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,111,235,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin {
  width: 60px; height: 60px;
  background: var(--c-blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.map-pin::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: #fff;
  top: 18px; left: 18px;
  border-radius: 50%;
}

/* ========== Success Page ========== */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 22px;
  text-align: center;
}
.success-card {
  max-width: 580px;
  background: #fff;
  padding: 60px 50px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}
.success-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-accent));
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  box-shadow: 0 12px 28px rgba(31,111,235,.32);
}

/* ========== Legal Pages ========== */
.legal-page {
  padding: 70px 0;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 { margin-top: 40px; }
.legal-content h3 { margin-top: 28px; }
.legal-content p, .legal-content li { color: #3a4c63; font-size: 1rem; }
.legal-content ul { padding-left: 22px; }
.legal-content .meta-date {
  color: var(--c-muted);
  font-size: .9rem;
  font-style: italic;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
}

/* ========== Page Header ========== */
.page-header {
  background:
    radial-gradient(circle at 80% 30%, rgba(90,163,255,.18), transparent 60%),
    linear-gradient(180deg, var(--c-cloud), #fff);
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--c-line);
}
.page-header .crumb {
  font-size: .85rem;
  color: var(--c-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--c-muted);
}

/* ========== About story ========== */
.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.story-image {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.story-image img { aspect-ratio: 3/4; object-fit: cover; }
.story-text h2 { margin-top: 30px; }
.story-text h2:first-child { margin-top: 0; }
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.value-tile {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-m);
  padding: 30px 26px;
}
.value-tile .v-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--c-mist);
  color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.value-tile h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ========== Cookie Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-m);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(160%);
  transition: transform var(--t-base);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-size: .92rem;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions .btn { padding: 10px 22px; font-size: .9rem; }

/* ========== Mobile ========== */
@media (max-width: 980px) {
  .hero-grid, .intro-grid, .lifestyle, .form-grid, .product-card, .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pillars, .values-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-image { position: static; }
  section { padding: 60px 0; }
  .product-card { padding: 30px; }
  .hero { padding: 50px 0 70px; }
  .hero-floating { left: 10px; bottom: 12px; }
}

@media (max-width: 680px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 20px 22px 30px;
    gap: 4px;
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-150%);
    transition: transform var(--t-base);
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--c-line); font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }

  .pillars, .values-row, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .product-image { padding: 25px; min-height: 240px; }
  .product-image img { max-height: 240px; }
  .cta-banner, .form-card, .info-panel, .success-card { padding: 30px 24px; }
  .hero-floating {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
    gap: 10px;
  }
  .hero-floating .badge { width: 32px; height: 32px; font-size: 0.9rem; }
  .hero-floating .hf-label { font-size: 0.66rem; }
  .hero-floating .hf-title { font-size: 0.86rem; }
}

/* ========== Animations ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .8s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
