/* ==========================================================
   CAROLA THE ENERGYSTYLIST — Production Stylesheet
   Brand: Terra (Warm, Grounded, Organic)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --bg:           #FAF5EC;
  --bg-2:         #F0E8D8;
  --bg-3:         #E8DCC8;
  --text:         #2C1810;
  --text-2:       #7A6350;
  --accent:       #C4603A;
  --accent-light: #FDEBD8;
  --accent-hover: #A84E2E;
  --border:       #DDD0C0;
  --card-bg:      #FDF8F1;
  --card-border:  #E8DCC8;
  --nav-bg:       rgba(250,245,236,0.95);
  --btn-text:     #FFFFFF;
  --h-font:       'Playfair Display', Georgia, serif;
  --b-font:       'Lato', system-ui, sans-serif;
  --radius:       20px;
  --radius-lg:    28px;
}

/* ── BASE ───────────────────────────────────────────── */
body {
  font-family: var(--b-font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--h-font);
  line-height: 1.12;
}

/* ── NAVIGATION ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  color: var(--accent);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--h-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--b-font);
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11.5px;
  letter-spacing: 0.07em;
  color: var(--text-2);
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--btn-text);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--b-font);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--b-font);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--btn-text);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── LAYOUT ─────────────────────────────────────────── */
section { padding: 100px 48px; }
.bg-2 { background: var(--bg-2); }
.bg-3 { background: var(--bg-3); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--b-font);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-h {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 18px;
}

.section-p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
}

.section-header { margin-bottom: 56px; }

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover { border-color: var(--accent); transform: translateY(-4px); }

.card-num {
  font-family: var(--h-font);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: block;
}

.card-h {
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}

.card-p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 12px; }

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding: 80px 48px 72px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  color: var(--text);
  max-width: 720px;
  line-height: 1.08;
  margin-top: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 20px;
}

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.testimonial-stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 16px;
}

.testimonial-q {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--h-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.t-name { font-size: 14px; font-weight: 700; color: var(--text); }
.t-role { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* ── PRICING CARDS ──────────────────────────────────── */
.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}

.price-card:hover:not(.featured) { border-color: var(--accent); transform: translateY(-4px); }

.price-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}

.price-card.featured .p-eyebrow,
.price-card.featured .p-name,
.price-card.featured .p-amount,
.price-card.featured .p-dur,
.price-card.featured .p-feat { color: var(--btn-text) !important; }

.price-card.featured .p-hr { border-color: rgba(255,255,255,0.25); }
.price-card.featured .p-feat { border-color: rgba(255,255,255,0.2); }
.price-card.featured .p-feat::before { color: var(--btn-text); }

.p-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 700;
  font-family: var(--b-font);
  margin-bottom: 8px;
}

.p-name {
  font-family: var(--h-font);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.p-amount {
  font-family: var(--h-font);
  font-size: 54px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin: 20px 0 4px;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.p-sym { font-size: 22px; font-weight: 300; margin-top: 10px; }
.p-dur { font-size: 13px; color: var(--text-2); }

.p-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 22px 0;
}

.p-feats { list-style: none; display: flex; flex-direction: column; flex: 1; }

.p-feat {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.p-feat:last-child { border-bottom: none; }

.p-feat::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}

.p-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--b-font);
  margin-top: 24px;
}

.p-btn:hover { background: var(--accent); color: var(--btn-text); }

.price-card.featured .p-btn {
  background: var(--btn-text);
  color: var(--accent);
  border-color: var(--btn-text);
}

.price-card.featured .p-btn:hover { opacity: 0.88; }

/* ── VISUAL PLACEHOLDER ─────────────────────────────── */
.visual-box {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.visual-box-svg {
  color: var(--accent);
  opacity: 0.1;
}

/* ── STAT BLOCKS ────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 40px;
}

.stat-item { padding-right: 24px; }
.stat-item:not(:last-child) { border-right: 1px solid var(--border); margin-right: 24px; }

.stat-n {
  font-family: var(--h-font);
  font-size: 40px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-l { font-size: 13px; color: var(--text-2); margin-top: 6px; }

/* ── FORM ───────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 700;
  font-family: var(--b-font);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--b-font);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--accent); }

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-select option { background: var(--bg); color: var(--text); }

/* ── CONTACT INFO ───────────────────────────────────── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-val { font-size: 15px; color: var(--text); }

/* ── MODALITY TAGS ──────────────────────────────────── */
.m-tag {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: background 0.2s, border-color 0.2s;
}

.m-tag:hover { background: var(--accent-light); border-color: var(--accent); }
.m-tag-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.m-tag-desc { font-size: 12px; color: var(--text-2); line-height: 1.45; }

/* ── ACCENT LINE ────────────────────────────────────── */
.accent-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── QUOTE BLOCK ────────────────────────────────────── */
.quote-block {
  padding: 28px 32px;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.quote-block blockquote {
  font-family: var(--h-font);
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.quote-block cite {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 12px;
  font-style: normal;
}

/* ── CTA SECTION ────────────────────────────────────── */
.cta-section {
  background: var(--accent);
  padding: 80px 48px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  color: var(--btn-text);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: var(--btn-text);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--btn-text);
}

.cta-section .btn-outline:hover {
  background: var(--btn-text);
  border-color: var(--btn-text);
  color: var(--accent);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 48px 40px;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 290px;
}

.footer-col h5 {
  font-family: var(--b-font);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 13px; color: var(--text-2); }
.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 11px;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}

.social-btn svg { width: 16px; height: 16px; display: block; }

.social-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── SCROLL REVEAL ──────────────────────────────────── */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready [data-reveal="delay"]   { transition-delay: 0.18s; }
.js-ready [data-reveal="delay-2"] { transition-delay: 0.36s; }

.js-ready [data-reveal].is-visible,
.js-ready [data-reveal="delay"].is-visible,
.js-ready [data-reveal="delay-2"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready [data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready [data-reveal="stagger"].is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.04s; }
.js-ready [data-reveal="stagger"].is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.14s; }
.js-ready [data-reveal="stagger"].is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }
.js-ready [data-reveal="stagger"].is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.34s; }
.js-ready [data-reveal="stagger"].is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.44s; }
.js-ready [data-reveal="stagger"].is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.54s; }
.js-ready [data-reveal="stagger"].is-visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: 0.60s; }

/* ── NAV SCROLLED ────────────────────────────────────── */
nav.scrolled {
  box-shadow: 0 4px 32px rgba(44, 24, 16, 0.09);
}

/* ── HOVER GLOW PULSE ────────────────────────────────── */
.card {
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  border-color: rgba(196, 96, 58, 0.55);
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(196, 96, 58, 0.22),
    0 12px 40px rgba(196, 96, 58, 0.22),
    0 0 70px rgba(196, 96, 58, 0.14),
    inset 0 0 36px rgba(196, 96, 58, 0.07);
}

.testimonial {
  transition: transform 0.35s, box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(196, 96, 58, 0.18),
    0 10px 36px rgba(196, 96, 58, 0.20),
    0 0 70px rgba(196, 96, 58, 0.12);
}

.price-card {
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-card:hover:not(.featured) {
  border-color: rgba(196, 96, 58, 0.55);
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(196, 96, 58, 0.22),
    0 12px 40px rgba(196, 96, 58, 0.22),
    0 0 70px rgba(196, 96, 58, 0.14),
    inset 0 0 36px rgba(196, 96, 58, 0.07);
}

.btn-primary, .btn-outline, .nav-cta {
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s,
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover, .nav-cta:hover {
  box-shadow: 0 0 0 5px rgba(196, 96, 58, 0.22), 0 8px 32px rgba(196, 96, 58, 0.48);
}

.btn-outline:hover {
  box-shadow: 0 0 0 4px rgba(196, 96, 58, 0.18), 0 6px 24px rgba(196, 96, 58, 0.30);
}

.p-btn:hover {
  box-shadow: 0 0 0 4px rgba(196, 96, 58, 0.18), 0 6px 24px rgba(196, 96, 58, 0.35);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero-left { max-width: 580px; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--b-font);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-h {
  font-family: var(--h-font);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.03;
  margin-bottom: 28px;
}

.hero-h em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 48px;
}

/* ── HERO BLOB ───────────────────────────────────────── */
.hero-blob {
  width: min(420px, 45vw);
  height: min(420px, 45vw);
  background: var(--accent);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: blobMorph 9s ease-in-out infinite;
  will-change: border-radius;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  25%       { border-radius: 50% 50% 42% 58% / 55% 45% 58% 42%; }
  50%       { border-radius: 44% 56% 50% 50% / 44% 58% 42% 56%; }
  75%       { border-radius: 57% 43% 62% 38% / 52% 48% 57% 43%; }
}

.hero-blob-mark {
  color: rgba(255, 248, 240, 0.22);
  width: 44%;
  height: 44%;
}

.hero-blob-stat {
  position: absolute;
  bottom: -22px;
  left: -36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 18px 26px;
  box-shadow: 0 14px 44px rgba(44, 24, 16, 0.13);
  z-index: 2;
}

.hero-stat-n {
  font-family: var(--h-font);
  font-size: 40px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-l {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-blob-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-2);
  font-family: var(--b-font);
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(44, 24, 16, 0.09);
  white-space: nowrap;
}

.hero-blob-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  background: var(--accent-light);
  border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%;
  top: 16px;
  right: -16px;
  z-index: 0;
  animation: blobMorph 13s ease-in-out infinite reverse;
  will-change: border-radius;
}

/* ── FAQ TOGGLE ICON ─────────────────────────────────── */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-q-icon {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              background 0.25s, border-color 0.25s, color 0.25s;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}


/* ── CUSTOM CURSOR: dot ─────────────────────────────── */
html, html * { cursor: none !important; }

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
  pointer-events: none;
  visibility: hidden;
  z-index: 10000;
  will-change: transform;
  transition: opacity 0.2s;
  box-shadow: 0 0 0 1.5px var(--accent), 0 1px 4px rgba(0,0,0,0.15);
}

html.cursor-ready #cursor-dot { visibility: visible; }

/* ── UTILITIES ──────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-2); }
.italic { font-style: italic; }

/* ── RESPONSIVE: TABLET ─────────────────────────────── */
@media (max-width: 1024px) {
  nav { flex-wrap: wrap; padding: 14px 24px; height: auto; }

  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; background: none; border: none; padding: 0;
    order: 2; margin-left: auto;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .logo { order: 1; }

  .nav-links {
    order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: 0;
    display: none; max-height: 60vh; overflow-y: auto; margin-top: 14px;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links a { display: block; padding: 13px 2px; font-size: 13px; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }

  .nav-cta {
    order: 4; width: 100%; text-align: center; box-sizing: border-box;
    display: none; margin-top: 12px;
  }
  nav.nav-open .nav-cta { display: block; }

  .hero { grid-template-columns: 1fr; gap: 40px; padding: 64px 32px; min-height: auto; }
  .hero-left { max-width: 100%; }
  .hero-right { padding: 0; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  section { padding: 72px 32px; }
  .page-hero { padding: 64px 32px 56px; }
  .cta-section { padding: 64px 32px; }
  footer { padding: 56px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── RESPONSIVE: PHONE ──────────────────────────────── */
@media (max-width: 640px) {
  section { padding: 56px 20px; }
  .page-hero { padding: 48px 20px 40px; }
  .hero { padding: 48px 20px; gap: 36px; }
  .cta-section { padding: 56px 20px; }
  footer { padding: 48px 20px 28px; }

  .hero-h { font-size: clamp(38px, 11vw, 52px); }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; }
  .hero-right { display: none; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .section-header { margin-bottom: 32px; }

  .stats-row { gap: 10px; margin-top: 32px; padding-top: 28px; }
  .stat-item { padding-right: 6px; }
  .stat-item:not(:last-child) { margin-right: 6px; }
  .stat-n { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .price-card, .testimonial, .card { padding: 26px; }
  .newsletter-box { padding: 28px 24px; }
}
