/*
Theme Name: Astra Child - Cherry
Theme URI: https://webvantik.com
Description: Astra child theme for the "Transform with Cherry" site, converted from the original React/Tailwind build to plain CSS.
Author: Webvantik
Template: astra
Version: 1.0.1
Text Domain: cherry-child
*/

/* ==========================================================================
   Design tokens (dark = default, light = [data-theme="light"] on <html>)
   ========================================================================== */

/* ==========================================================================
   Global reset — browsers add an 8px margin to <body> by default; our
   header-cherry.php prints its own <html>/<body> tags (bypassing Astra's
   normal reset), so we reset it explicitly here to kill any outer frame.
   ========================================================================== */
html, body {
  margin: 0;
  padding: 0;
}
html {
  background-color: #0a0a0a;
}

:root,
[data-theme="light"] {
  /* placeholder, overridden below — kept so undeclared theme falls back to light */
}

html,
[data-theme="dark"] {
  --bg-deep: #020202;
  --bg-base: #0a0a0a;
  --bg-elevated: #111111;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --fg: #f5f1f2;
  --fg-muted: #9c9296;
  --accent: #bf133d;
  --accent-bright: #d81a49;
  --accent-glow: rgba(191, 19, 61, 0.3);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(191, 19, 61, 0.3);
  --red-deep: #8a0e2c;
  --red-tint: rgba(191, 19, 61, 0.08);
  --shadow-card: 0 0 0 1px var(--border), 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 60px var(--accent-glow);
  --grid-line: rgba(255, 255, 255, 0.5);
  --headline-gradient: linear-gradient(to bottom, #ffffff, rgba(245, 241, 242, 0.75));
  --blob-opacity: 0.28;
  --font-serif: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg-deep: #ffffff;
  --bg-base: #faf9f8;
  --bg-elevated: #ffffff;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-hover: rgba(0, 0, 0, 0.05);
  --fg: #141414;
  --fg-muted: #6b6b6b;
  --accent: #bf133d;
  --accent-bright: #8a0e2c;
  --accent-glow: rgba(191, 19, 61, 0.12);
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(191, 19, 61, 0.2);
  --red-deep: #8a0e2c;
  --red-tint: #fdecef;
  --shadow-card: 0 0 0 1px var(--border), 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 40px var(--accent-glow);
  --grid-line: rgba(0, 0, 0, 0.5);
  --headline-gradient: linear-gradient(to bottom, #141414, rgba(20, 20, 20, 0.75));
  --blob-opacity: 0.1;
  color-scheme: light;
}

/* ==========================================================================
   Base — scoped to .cherry-page so it never leaks onto normal Astra pages
   ========================================================================== */

.cherry-page * {
  border-color: var(--border);
  box-sizing: border-box;
}

.cherry-page svg {
  display: block;
}

.cherry-page {
  background-color: var(--bg-base);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms ease, color 300ms ease;
}

.cherry-page h1,
.cherry-page h2,
.cherry-page h3,
.cherry-page h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.cherry-page ::selection {
  background: var(--accent);
  color: #fff;
}

.cherry-page :focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.cherry-page input,
.cherry-page select,
.cherry-page textarea,
.cherry-page button {
  font-family: inherit;
}

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 640px) {
  .wrap { padding-inline: 32px; }
}
@media (min-width: 1024px) {
  .wrap { padding-inline: 56px; }
}
@media (min-width: 1440px) {
  .wrap { padding-inline: 120px; }
}

.section-pad {
  padding-block: 48px;
}
@media (min-width: 768px) {
  .section-pad { padding-block: 110px; }
}

/* ---------- typography ---------- */
.display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  background: var(--headline-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-word {
  background: linear-gradient(90deg, #bf133d, #d81a49, #bf133d);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: cherry-shimmer 5s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

/* ---------- surfaces ---------- */
.glass {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.card-elevated {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

/* Astra's own heading-color default was bleeding through on headings inside
   our cards (low-contrast blue-gray) and some inherited center alignment —
   force our own readable color/left alignment specifically inside cards. */
.cherry-page .glass,
.cherry-page .card-elevated {
  text-align: left;
}
.cherry-page .glass h1,
.cherry-page .glass h2,
.cherry-page .glass h3,
.cherry-page .glass h4,
.cherry-page .card-elevated h1,
.cherry-page .card-elevated h2,
.cherry-page .card-elevated h3,
.cherry-page .card-elevated h4 {
  color: var(--fg) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--fg) !important;
  text-align: left !important;
}

.hairline {
  border-top: 1px solid var(--border);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 22px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--red-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-on-dark {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-on-dark:hover {
  background: #ffffff;
  color: #141414;
  transform: translateY(-2px);
}

/* ---------- ambient background ---------- */
.ambient {
  position: relative;
  isolation: isolate;
  background:radial-gradient(ellipse at top, #bf133d29 0%, var(--bg-base) 50%, #bf133d0a 100%);
}

[data-theme="dark"] .cherry-page-hero.ambient,
[data-theme="dark"] .cherry-hero.ambient {
  background:
    radial-gradient(1000px 680px at 82% 55%, rgba(191, 19, 61, 0.30), transparent 68%),
    radial-gradient(ellipse at top, var(--bg-elevated) 0%, var(--bg-base) 50%, var(--bg-deep) 100%);
}

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-overlay {
    display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
}

.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  background: var(--accent);
  opacity: var(--blob-opacity);
  pointer-events: none;
  animation: cherry-drift 9s ease-in-out infinite;
}
@media (max-width: 767px) {
  .blob {
    height: 240px !important;
    width: 240px !important;
    filter: blur(70px);
    opacity: calc(var(--blob-opacity) * 0.4);
  }
}

.spotlight {
  position: relative;
  overflow: hidden;
  transition: all 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), var(--accent-glow), transparent 70%);
}
.spotlight:hover::before { opacity: 1; }
.spotlight:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: var(--surface-hover);
}
.spotlight > .spotlight-inner { position: relative; z-index: 1; height: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-in { opacity: 1; transform: none; }

.marquee-track { animation: cherry-marquee 38s linear infinite; }
@keyframes cherry-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cherry-drift { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(1deg); } }

/* ---------- nav link ---------- */
.nav-link {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--fg); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after,
.nav-link.is-active::after { left: 0; right: 0; }
.nav-link.is-active { color: var(--fg); }

/* ---------- form fields ---------- */
.field-input {
  width: 100%;
  background: #ffffff !important;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: #141414 !important;
  transition: all 200ms ease;
}
.field-input::placeholder { color: #6b6b6b !important; }
.field-input:hover {
  border-color: var(--border) !important;
}
.field-input:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

select.field-input {
  height: auto !important;
  line-height: 1.4 !important;
  min-height: 50px;
  padding-block: 12px !important;
}
/* ---------- animations ---------- */
@keyframes cherry-shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes cherry-fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes cherry-pulse-ring { 0% { box-shadow: 0 0 0 0 var(--accent-glow); } 70% { box-shadow: 0 0 0 18px rgba(191, 19, 61, 0); } 100% { box-shadow: 0 0 0 0 rgba(191, 19, 61, 0); } }

.fade-up { animation: cherry-fade-up 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.pulse-ring { animation: cherry-pulse-ring 2.4s ease-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .cherry-page *, .cherry-page *::before, .cherry-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 120ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.cherry-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(8px);
  transition: all 300ms ease;
}
.cherry-header.is-scrolled {
  background: color-mix(in srgb, var(--bg-deep) 78%, transparent);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.cherry-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  transition: padding 300ms ease;
}
.cherry-header.is-scrolled .wrap { padding-block: 12px; }

.cherry-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; text-decoration: none; overflow: visible; }
.cherry-logo-text { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--fg); }



/* Show only the logo matching the current theme */
[data-theme="light"] .cherry-logo-img-dark  { display: none; }
[data-theme="dark"]  .cherry-logo-img-light { display: none; }

/* Bigger logo, but a negative vertical margin cancels the extra height out
   so the header/footer row itself never grows — only the image visually
   overflows a little above/below its row. */
.cherry-logo-img {
  height: 78px;
  width: auto;
  margin-block: -17px;
  transition: height 300ms ease, margin 300ms ease;
}
.cherry-header.is-scrolled .cherry-logo-img { height: 54px; margin-block: -11px; }

.cherry-logo-img-mobilenav { height: 80px; margin-block: 2px; }
.cherry-logo-img-footer { height: 90px; margin-block: -9px; }

.cherry-nav-desktop { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .cherry-nav-desktop { display: flex; } }

.cherry-header-actions { display: flex; align-items: center; gap: 12px; }

.cherry-icon-btn {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  padding: 0;
  line-height: 0;
  border-radius: 999px !important;
  color: var(--fg) !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.cherry-icon-btn:hover { border-color: var(--border-accent) !important; color: var(--accent) !important; }
.cherry-icon-btn:focus,
.cherry-icon-btn:active {
  background: var(--surface) !important;
  box-shadow: none !important;
}

.cherry-menu-toggle { display: grid; }
@media (min-width: 1024px) { .cherry-menu-toggle { display: none; } }

.cherry-book-btn { display: none; }
@media (min-width: 640px) { .cherry-book-btn { display: inline-flex; } }

.cherry-header-progress { height: 2px; width: 100%; background: transparent; }
.cherry-header-progress-bar { height: 100%; width: 0%; background: var(--accent); transition: width 150ms linear; }

/* mobile full-screen nav */
.cherry-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  flex-direction: column;
  background: color-mix(in srgb, var(--bg-deep) 98%, transparent);
  backdrop-filter: blur(24px);
}
.cherry-mobile-nav.is-open { display: flex; }
.cherry-mobile-nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 20px; }
.cherry-mobile-nav-links { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; gap: 16px; padding: 24px 24px 0; }
.cherry-mobile-nav-links a { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--fg); text-decoration: none; }
.cherry-mobile-nav-cta { padding: 20px 24px 32px; }

@media (min-width: 1024px) {
  .cherry-menu-toggle,
  .cherry-mobile-nav { display: none !important; }
}

/* ==========================================================================
   Page shell / main content offset (fixed header needs top padding)
   ========================================================================== */

.cherry-main {
  min-height: 60vh;
  padding-top: 0px; /* clears the fixed header */

}
@media (min-width: 768px) { .cherry-main { padding-bottom: 0; } }

/* ==========================================================================
   Sticky mobile CTA + WhatsApp FAB
   ========================================================================== */

.cherry-whatsapp-fab,
.cherry-whatsapp-fab:visited,
.cherry-whatsapp-fab:hover,
.cherry-whatsapp-fab:focus,
.cherry-whatsapp-fab:active {
  position: fixed;
  bottom: 84px;
  right: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  height: 56px;
  width: 56px;
  border-radius: 999px !important;
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 10px 30px var(--accent-glow);
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
}
@media (min-width: 768px) {
  .cherry-whatsapp-fab,
  .cherry-whatsapp-fab:visited,
  .cherry-whatsapp-fab:hover,
  .cherry-whatsapp-fab:focus,
  .cherry-whatsapp-fab:active {
    bottom: 24px;
  }
}

.cherry-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-deep) 90%, transparent);
  backdrop-filter: blur(24px);
  padding: 12px;
}
@media (min-width: 768px) { .cherry-sticky-cta { display: none; } }

/* ==========================================================================
   Footer
   ========================================================================== */

.cherry-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding-top: 64px;
  background: radial-gradient(ellipse at top, var(--bg-elevated) 0%, var(--bg-base) 50%, var(--bg-deep) 100%);
}
.cherry-footer-grid {
  display: grid;
  gap: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .cherry-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.cherry-footer h4 {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg);
}
.cherry-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.cherry-footer a { color: var(--fg-muted); text-decoration: none; transition: color 200ms ease; }
.cherry-footer a:hover { color: var(--accent); }
.cherry-footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.cherry-footer-form { display: flex; gap: 8px; }
.cherry-footer-bottom .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 24px;
  font-size: 12px;
  color: var(--fg-muted);
}
@media (min-width: 900px) {
  .cherry-footer-bottom .wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cherry-footer-bottom-links { display: flex; gap: 24px; }
@media (min-width: 900px) {
  .cherry-footer-bottom-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cherry-footer-bottom .wrap { position: relative; }
.cherry-footer-badge { display: flex; align-items: center; flex-shrink: 0; }
.cherry-footer-badge img { display: block; opacity: 0.85; transition: opacity 200ms ease; }
.cherry-footer-badge:hover img { opacity: 1; }

/* ==========================================================================
   Homepage-specific sections
   ========================================================================== */

.cherry-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 56px;
}
@media (max-width: 1023px) {
  .cherry-hero { min-height: auto; padding-top: 120px; padding-bottom: 40px; }
}
.cherry-hero-cutout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Mobile + small tablet: hide the cutout entirely */
@media (max-width: 899px) {
  .cherry-hero-cutout {
    display: none;
  }
}

/* Big tablet only: show it, but sized/contained rather than full-bleed cover */
@media (min-width: 900px) and (max-width: 1023px) {
  .cherry-hero-cutout {
    inset: auto;
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    width: auto;
    height: 85%;
    max-width: 46%;
    object-fit: contain;
    object-position: bottom right;
  }
}
.cherry-hero-content { position: relative; margin-inline: 0; padding-block: 32px; max-width: 65rem; }
.cherry-hero-content h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--fg);
}
.cherry-hero-content p {
  margin-top: 18px;
  max-width: 36rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
@media (min-width: 768px) { .cherry-hero-content p { font-size: 1.0625rem; } }
.cherry-hero-eyebrow { color: var(--accent); }
.cherry-hero-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.cherry-hero-scroll-cue { position: absolute; inset-inline: 0; bottom: 20px; display: flex; justify-content: center; color: var(--fg-muted); }

.cherry-ticker { position: relative; overflow: hidden; padding-block: 24px; }
.cherry-ticker-track { position: relative; display: flex; width: max-content; gap: 16px; }
.cherry-ticker-pill { white-space: nowrap; padding: 10px 20px; border-radius: 999px; font-size: 14px; color: var(--fg-muted); }
.cherry-ticker-dot { display: inline-block; margin-right: 8px; height: 6px; width: 6px; border-radius: 999px; background: var(--accent); vertical-align: middle; }

.cherry-problem-grid { margin-top: 56px; display: grid; gap: 24px; }
@media (min-width: 1024px) { .cherry-problem-grid { grid-template-columns: 1fr 1fr; } }
.cherry-tried-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.cherry-tried-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--fg-muted); }
.cherry-x-badge { margin-top: 2px; display: grid; flex-shrink: 0; place-items: center; height: 24px; width: 24px; border-radius: 999px; border: 1px solid var(--border-accent); color: var(--accent); }

.cherry-pillars-grid { margin-top: 56px; display: grid; gap: 20px; }
@media (min-width: 768px) { .cherry-pillars-grid { grid-template-columns: repeat(6, 1fr); } }
.cherry-pillar-span-4 { grid-column: span 6; }
.cherry-pillar-span-2 { grid-column: span 6; }
@media (min-width: 768px) {
  .cherry-pillar-span-4 { grid-column: span 4; }
  .cherry-pillar-span-2 { grid-column: span 2; }
}
.cherry-pillar-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.cherry-pillar-icon { display: grid; place-items: center; height: 44px; width: 44px; border-radius: 14px; border: 1px solid var(--border-accent); color: var(--accent); }
.cherry-pillar-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--accent); opacity: 0.55; }
.cherry-pillar-card h3 { margin-top: 24px; font-size: 1.25rem; }
.cherry-pillar-card p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

.cherry-testimonials-grid { margin-top: 56px; display: grid; gap: 20px; }
@media (min-width: 768px) { .cherry-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.cherry-stars { display: flex; gap: 2px; color: var(--accent); }
.cherry-testimonial-card p.quote { margin-top: 20px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }
.cherry-testimonial-person { margin-top: 28px; display: flex; align-items: center; gap: 12px; }
.cherry-testimonial-person img { height: 44px; width: 44px; border-radius: 999px; object-fit: cover; }
.cherry-testimonial-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.cherry-testimonial-result { font-size: 12px; color: var(--accent); }

.cherry-insta-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.cherry-insta-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .cherry-insta-grid { grid-template-columns: repeat(4, 1fr); } }
.cherry-insta-item { display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 16px; border: 1px solid var(--border); }
.cherry-insta-item img { height: 100%; width: 100%; object-fit: cover; transition: transform 500ms ease; }
.cherry-insta-item:hover img { transform: scale(1.05); }

/* ==========================================================================
   Shared inner page hero (About / Program / FAQ / Contact)
   ========================================================================== */

.cherry-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 72px;
}
@media (max-width: 767px) {
  .cherry-page-hero { padding-top: 120px; padding-bottom: 48px; }
}
.cherry-page-hero.is-compact {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .cherry-page-hero.is-compact { min-height: 44vh; padding-bottom: 24px; }
}

/* ==========================================================================
   About page
   ========================================================================== */

.cherry-about-grid { display: grid; align-items: center; gap: 56px; position: relative; }
@media (min-width: 1024px) { .cherry-about-grid { grid-template-columns: 1.05fr 0.95fr; } }
.cherry-about-grid h1 { margin-top: 20px; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.cherry-about-grid > div:first-child p { margin-top: 20px; line-height: 1.7; color: var(--fg-muted); }
.cherry-about-grid > div:first-child p:first-of-type { font-size: 1.125rem; }

.cherry-portrait-frame { position: relative; }
.cherry-portrait-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  border: 1px solid var(--border-accent);
}
.cherry-portrait-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 5;
  border-radius: 22px;
  object-fit: cover;
}

.cherry-credential-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 14px;
}
.cherry-credential-badge svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.cherry-credential-badge span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
}
.cherry-beliefs-grid { margin-top: 56px; display: grid; gap: 20px; }
@media (min-width: 768px) { .cherry-beliefs-grid { grid-template-columns: 1fr 1fr; } }
.cherry-beliefs-grid h3 { font-size: 1.25rem; }
.cherry-beliefs-grid p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ==========================================================================
   Program page
   ========================================================================== */

.cherry-program-top { display: grid; gap: 20px; }
@media (min-width: 1024px) { .cherry-program-top { grid-template-columns: 1fr 1fr; } }
.cherry-included-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.cherry-included-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--fg-muted); }
.cherry-check-badge {
  margin-top: 2px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  height: 20px;
  width: 20px;
  border-radius: 999px;
  background: var(--red-tint);
  color: var(--accent);
}

.cherry-steps-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .cherry-steps-grid { grid-template-columns: 1fr 1fr; } }
.cherry-step-num { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--accent); opacity: 0.6; }
.cherry-step-card h3 { margin-top: 20px; font-size: 1.125rem; }
.cherry-step-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ---------- calorie calculator ---------- */
.cherry-calc {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px var(--border-accent), 0 20px 60px var(--accent-glow);
}
.cherry-calc-grid { display: grid; }
@media (min-width: 1024px) { .cherry-calc-grid { grid-template-columns: 3fr 2fr; } }
.cherry-calc-inputs { padding: 24px; display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 768px) { .cherry-calc-inputs { padding: 36px; } }
.cherry-calc-row-2 { display: grid; gap: 20px; }
@media (min-width: 640px) { .cherry-calc-row-2 { grid-template-columns: 1fr 1fr; } }
.cherry-calc-label { margin-bottom: 8px; display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.cherry-pill-group { display: grid; gap: 18px; }
.cherry-pill-group.cols-2 { grid-template-columns: 1fr 1fr; }
.cherry-pill-group.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.cherry-pill-group.wrap { display: flex; flex-wrap: wrap; padding: 0px; justify-content: center; }
.cherry-pill {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border) !important;
  background: var(--bg-elevated) !important;
  color: var(--fg-muted) !important;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  transition: all 200ms ease;
}
.cherry-pill:hover,
.cherry-pill:focus {
  color: var(--fg) !important;
  border-color: var(--border) !important;
  background: var(--bg-elevated) !important;
  box-shadow: none !important;
}
.cherry-pill.is-active,
.cherry-pill.is-active:hover,
.cherry-pill.is-active:focus {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.cherry-calc-results { border-top: 1px solid var(--border); background: var(--bg-elevated); padding: 24px; }
@media (min-width: 768px) { .cherry-calc-results { padding: 36px; } }
@media (min-width: 1024px) { .cherry-calc-results { border-top: 0; border-left: 1px solid var(--border); } }
.cherry-calc-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); }
.cherry-calc-target { margin-top: 16px; display: flex; align-items: flex-end; gap: 8px; }
.cherry-calc-target-num { font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 4.6rem); font-weight: 600; line-height: 1; color: var(--fg); }
.cherry-calc-target-unit { padding-bottom: 8px; font-size: 14px; color: var(--fg-muted); }
.cherry-calc-target-sub { margin-top: 8px; font-size: 14px; color: var(--fg-muted); }
.cherry-calc-stat-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cherry-calc-stat { border-radius: 18px; background: var(--surface); border: 1px solid var(--border); padding: 16px; }
.cherry-calc-stat-label { display: flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.cherry-calc-stat-value { margin-top: 4px; font-family: var(--font-serif); font-size: 1.5rem; color: var(--fg); }
.cherry-macros { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.cherry-macro-row-top { margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.cherry-macro-name { display: flex; align-items: center; gap: 8px; color: var(--fg); }
.cherry-macro-dot { height: 8px; width: 8px; border-radius: 999px; }
.cherry-macro-grams { font-weight: 600; color: var(--fg-muted); }
.cherry-macro-track { height: 8px; overflow: hidden; border-radius: 999px; background: var(--surface); }
.cherry-macro-fill { height: 100%; border-radius: 999px; transition: width 500ms ease; }
.cherry-calc-disclaimer { margin-top: 24px; font-size: 12px; line-height: 1.6; color: var(--fg-muted); }
.cherry-calc-cta-box { margin-top: 24px; border-radius: 14px; border: 1px solid var(--border-accent); padding: 16px; }
.cherry-calc-cta-box p { font-size: 14px; color: var(--fg); }
.cherry-calc-cta-box .btn { margin-top: 12px; width: 100%; }

/* ==========================================================================
   FAQ page
   ========================================================================== */

.cherry-faq-list { display: flex; flex-direction: column; gap: 12px; }
.cherry-faq-item { overflow: hidden; }
.cherry-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--fg) !important;
  transition: background 200ms ease, color 200ms ease;
}
.cherry-faq-question:hover,
.cherry-faq-question:focus,
.cherry-faq-question:focus-visible,
.cherry-faq-question:active {
  background: var(--accent) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.cherry-faq-icon { flex-shrink: 0; color: var(--accent); transition: transform 300ms ease, color 200ms ease; }
.cherry-faq-question:hover .cherry-faq-icon,
.cherry-faq-question:focus .cherry-faq-icon,
.cherry-faq-question:active .cherry-faq-icon {
  color: #ffffff !important;
}
.cherry-faq-item.is-open .cherry-faq-icon { transform: rotate(45deg); }
.cherry-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.cherry-faq-item.is-open .cherry-faq-answer { max-height: 300px; margin-top:15px; }
.cherry-faq-answer p { padding: 0 24px 24px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ==========================================================================
   Contact page
   ========================================================================== */

.cherry-contact-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .cherry-contact-grid { grid-template-columns: 1fr 1.1fr; } }
.cherry-contact-links { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.cherry-contact-link { display: flex; align-items: center; gap: 16px; padding: 20px; text-decoration: none; color: inherit; }
.cherry-contact-link svg { flex-shrink: 0; color: var(--accent); }
.cherry-contact-link-label { display: block; font-size: 14px; font-weight: 600; color: var(--fg); }
.cherry-contact-link-value { display: block; font-size: 14px; color: var(--fg-muted); }

.cherry-contact-form-card { padding: 32px; }
@media (min-width: 768px) { .cherry-contact-form-card { padding: 40px; } }
.cherry-form-group + .cherry-form-group { margin-top: 24px; }
.cherry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cherry-form-row .cherry-form-group + .cherry-form-group { margin-top: 0; }
.cherry-form-row + .cherry-form-row,
.cherry-form-row + .cherry-form-group,
.cherry-form-group + .cherry-form-row { margin-top: 4px; }
@media (max-width: 480px) {
  .cherry-form-row { grid-template-columns: 1fr; gap: 24px; }
}
.cherry-form-error { margin-top: 8px; font-size: 12px; color: var(--accent); }
.cherry-form-success { padding: 40px 0; text-align: center; }
.cherry-form-success h2 { font-size: 1.5rem; }
.cherry-form-success p { margin-top: 12px; font-size: 14px; color: var(--fg-muted); }
.cherry-form-note { margin-top: 16px; font-size: 12px; color: var(--fg-muted); }

/* ==========================================================================
   Blog — listing grid, cards, pagination, single post
   ========================================================================== */

.cherry-blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cherry-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cherry-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.cherry-blog-card,
.cherry-blog-card:visited,
.cherry-blog-card:hover {
  display: block;
  text-decoration: none !important;
  color: var(--fg) !important;
  padding: 0;
  overflow: hidden;
}
.cherry-blog-card .spotlight-inner { display: flex; flex-direction: column; height: 100%; }
.cherry-blog-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.cherry-blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms ease; }
.cherry-blog-card:hover .cherry-blog-card-img img { transform: scale(1.05); }
.cherry-blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cherry-blog-card-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent) !important;
}
.cherry-blog-card-body h3,
.cherry-blog-card-body h3 a {
  margin-top: 12px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--fg) !important;
  text-decoration: none !important;
}
.cherry-blog-card-body p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted) !important;
  flex: 1;
}
.cherry-blog-card-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg) !important;
  text-decoration: none !important;
}
.cherry-blog-card:hover .cherry-blog-card-link { color: var(--accent) !important; }
.cherry-blog-card:hover .cherry-blog-card-link svg { transform: translateX(3px); }
.cherry-blog-card-link svg { transition: transform 200ms ease; }

.cherry-pagination {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.cherry-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 200ms ease;
}
.cherry-pagination .page-numbers:hover { border-color: var(--border-accent); color: var(--accent); }
.cherry-pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }
.cherry-pagination .page-numbers.dots { border: 0; background: transparent; }

.cherry-single-meta { margin-top: 16px; font-size: 14px; color: var(--fg-muted); }
.cherry-single-featured-img { margin-top: 40px; position: relative; }
.cherry-single-featured-img img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid var(--border);
  display: block;
}
.cherry-single-back { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }

.cherry-prose {
  max-width: 46rem;
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--fg);
}
.cherry-prose > * + * { margin-top: 22px; }
.cherry-prose h2 { font-size: 1.6rem; margin-top: 44px; color: var(--fg) !important; }
.cherry-prose h3 { font-size: 1.3rem; margin-top: 36px; color: var(--fg) !important; }
.cherry-prose p { color: var(--fg); }
.cherry-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cherry-prose ul, .cherry-prose ol { padding-left: 1.4em; color: var(--fg); }
.cherry-prose li + li { margin-top: 8px; }
.cherry-prose img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--border); }
.cherry-prose blockquote {
  margin: 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: var(--fg-muted);
}
.cherry-prose figcaption { font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 8px; }
.cherry-prose code { background: var(--surface); padding: 2px 6px; border-radius: 6px; font-size: 0.9em; }
.cherry-prose pre { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px; padding: 20px; overflow-x: auto; }
.cherry-prose hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

/* ==========================================================================
   Calorie Calculator page — body-fat slider + new sections
   ========================================================================== */

/* ---------- body fat: slider + chart image (replaces the pill buttons) ---------- */
.cherry-bodyfat-slider-value { color: var(--fg); font-weight: 700; }
.cherry-bodyfat-img {
  margin-top: 16px;
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}
@media (max-width: 480px) {
  .cherry-bodyfat-img { max-width: 100%; }
}
.cherry-bodyfat-gender-hidden { display: none !important; }

/* ---------- Process (3-step, arrows right on desktop, down on mobile) ---------- */
.cherry-process-grid {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
@media (min-width: 900px) {
  .cherry-process-grid { flex-direction: row; align-items: center; }
}
.cherry-process-step {
  flex: 1;
  text-align: center;
}
.cherry-process-step .spotlight-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cherry-process-step-num {
  margin-inline: auto;
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
}
.cherry-process-step h3 { margin-top: 20px; font-size: 1.15rem; }.cherry-process-step h3 { margin-top: 20px; font-size: 1.15rem; color: var(--fg) !important; background: none !important; -webkit-text-fill-color: var(--fg) !important; }
.cherry-process-step p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }
.cherry-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  padding: 8px;
}
.cherry-process-arrow svg { transform: rotate(90deg); }
@media (min-width: 900px) {
  .cherry-process-arrow svg { transform: none; }
}

/* ---------- What Your Results Include (4 items: row on desktop/tablet, 2x2 on mobile) ---------- */
.cherry-results-include-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
}
@media (min-width: 480px) {
  .cherry-results-include-grid { gap: 20px; }
}
@media (min-width: 768px) {
  .cherry-results-include-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
}
.cherry-results-include-item .spotlight-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 768px) {
  .cherry-results-include-item .spotlight-inner { align-items: center; text-align: center; }
}
.cherry-results-include-item .cherry-pillar-icon { margin-inline: 0; }
@media (min-width: 768px) {
  .cherry-results-include-item .cherry-pillar-icon { margin-inline: auto; }
}
.cherry-results-include-item h3 { margin-top: 18px; font-size: 1.05rem; color: var(--fg) !important; background: none !important; -webkit-text-fill-color: var(--fg) !important; }
.cherry-results-include-item p { margin-top: 8px; font-size: 13px; line-height: 1.5; color: var(--fg-muted); }

/* ---------- Who Is This For (4 cards: grid desktop/tablet, slider on mobile) ---------- */
.cherry-who-for-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cherry-who-for-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.cherry-who-for-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cherry-who-for-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.cherry-who-for-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 1; }
.cherry-who-for-icon {
  display: grid;
  place-items: center;
  height: 36px;
  width: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 12px;
}
.cherry-who-for-body h3 { color: #fff; font-size: 1.05rem; }
.cherry-who-for-body p { margin-top: 6px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.75); }

@media (max-width: 767px) {
  .cherry-who-for-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .cherry-who-for-card { flex: 0 0 78%; scroll-snap-align: start; aspect-ratio: 3 / 3.6; }
}

/* ---------- FAQ + CTA combined (60/40) ---------- */
.cherry-faq-cta-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .cherry-faq-cta-grid { grid-template-columns: 3fr 2fr; align-items: start; } }

.cherry-calc-cta-panel {
  background: linear-gradient(160deg, var(--red-deep), var(--accent));
  border-radius: 22px;
  padding: 54px 32px;
  color: #fff;
}
.cherry-calc-cta-panel h3 { font-size: 1.3rem; color: #fff; }
.cherry-calc-cta-panel > p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.cherry-calc-cta-panel .btn-primary {
  margin-top: 24px;
  width: 100%;
  background: #ffffff;
  color: var(--red-deep);
  box-shadow: none;
}
.cherry-calc-cta-panel .btn-primary:hover { background: rgba(255,255,255,0.9); color: var(--red-deep); }
.cherry-calc-cta-list { margin-top: 32px; display: flex; flex-direction: column; gap: 34px; }
.cherry-calc-cta-list-item { display: flex; align-items: flex-start; gap: 14px; }
.cherry-calc-cta-list-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  height: 45px;
  width: 45px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.cherry-calc-cta-list-item h4 { font-size: 18px; font-weight: 700; color: #fff; }
.cherry-calc-cta-list-item p { margin-top: 2px; font-size: 16px; color: rgba(255,255,255,0.75); }

.cherry-calc-disclaimer-box {
  margin-top: 56px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border-accent);
  background: var(--surface);
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ==========================================================================
   Fluent Forms — restyle to match our theme (used on Contact Us)
   ========================================================================== */

.cherry-fluent-wrap .fluentform { font-family: var(--font-sans); }

.cherry-fluent-wrap .ff-el-group { margin-bottom: 24px; }

.cherry-fluent-wrap .ff-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0 !important;
}
@media (max-width: 480px) {
  .cherry-fluent-wrap .ff-row { grid-template-columns: 1fr; }
}
.cherry-fluent-wrap .ff-row > [class*="ff-col"] {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}

.cherry-fluent-wrap .ff-el-input--label label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}

.cherry-fluent-wrap .ff-el-form-control,
.cherry-fluent-wrap select.ff-el-form-control,
.cherry-fluent-wrap textarea.ff-el-form-control {
  width: 100% !important;
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  color: #141414 !important;
  height: auto !important;
  box-shadow: none !important;
  transition: all 200ms ease;
}
.cherry-fluent-wrap .ff-el-form-control::placeholder { color: #6b6b6b !important; }
.cherry-fluent-wrap .ff-el-form-control:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px var(--accent-glow) !important;
}

.cherry-fluent-wrap .error.text-danger,
.cherry-fluent-wrap .ff-el-is-error .error {
  margin-top: 8px;
  font-size: 12px;
  color: var(--accent) !important;
}
.cherry-fluent-wrap .ff-el-is-error .ff-el-form-control {
  border-color: var(--accent) !important;
}

.cherry-fluent-wrap button[type="submit"],
.cherry-fluent-wrap .ff-btn-submit {
  width: 100% !important;
  margin-top: 8px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 13px 24px !important;
  border-radius: 12px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
  background: var(--accent) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 22px var(--accent-glow) !important;
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cherry-fluent-wrap button[type="submit"]:hover,
.cherry-fluent-wrap .ff-btn-submit:hover {
  background: var(--red-deep) !important;
  transform: translateY(-2px);
}

.cherry-fluent-wrap .ff-message-success {
  padding: 40px 0;
  text-align: center;
  color: var(--fg) !important;
  background: none !important;
  border: none !important;
}