/* ============================================
   REGULATEDCOIN.COM — Premium Stylesheet
   Aesthetic: Clean Editorial / Modern Finance
   Palette: Crisp White + Deep Charcoal + Emerald
   Fonts: Cormorant Garamond + Outfit
   ============================================ */

:root {
  --white:       #ffffff;
  --off-white:   #f9f8f5;
  --cream:       #f2f0eb;
  --charcoal:    #1a1a2e;
  --charcoal-md: #2d2d44;
  --charcoal-lt: #3d3d58;
  --emerald:     #0d7a5f;
  --emerald-lt:  #12a07c;
  --emerald-pale:#e6f4f0;
  --slate:       #64748b;
  --slate-lt:    #94a3b8;
  --border:      #e2dfd8;
  --border-dark: #c8c4bc;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', sans-serif;
  --max-w:       1240px;
  --radius:      6px;
  --trans:       0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--emerald); }

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

.nav-links a {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--trans);
}

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

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 3px !important;
}
.nav-cta:hover { background: var(--charcoal-lt) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu a {
  color: var(--charcoal);
  padding: 0.75rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  background: var(--white);
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 5rem 3rem 5rem 0;
  border-right: 1px solid var(--border);
}

.hero-left-inner { max-width: 560px; margin-left: auto; padding-right: 2rem; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--emerald);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--emerald);
}

.tld {
  font-style: normal;
  color: var(--slate);
  font-size: 0.65em;
  vertical-align: super;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 440px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.hero-tag-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--emerald);
  background: var(--emerald-pale);
  border: 1px solid rgba(13,122,95,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  background: var(--off-white);
  gap: 1.5rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--emerald);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.hc-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 0.75rem;
}

.hc-domain {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.hc-domain span { color: var(--emerald); }

.hc-divider { height: 1px; background: var(--border); margin-bottom: 1.25rem; }

.hc-rows { display: grid; gap: 0; }
.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.825rem;
  color: var(--slate);
}
.hc-row:last-child { border-bottom: none; }
.hc-row .val { font-weight: 500; color: var(--charcoal); }
.hc-row .val.gold { color: #c9a84c; }
.hc-row .val.green { color: var(--emerald); font-weight: 600; }

.hc-cta {
  display: block;
  margin-top: 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background var(--trans);
}
.hc-cta:hover { background: var(--emerald); }

.hero-stat-stack {
  width: 100%;
  max-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hstack-item {
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hstack-item:last-child { border-right: none; }

.hstack-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.2;
}
.hstack-lbl {
  display: block;
  font-size: 0.65rem;
  color: var(--slate-lt);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  transition: var(--trans);
}
.btn-primary:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,122,95,0.25);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 1px;
  transition: var(--trans);
}
.btn-text:hover { color: var(--emerald); border-color: var(--emerald); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: var(--trans);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: var(--trans);
}
.btn-outline-light:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ---- SECTION LABELS ---- */
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

/* ---- TICKER STRIP ---- */
.ticker {
  background: var(--charcoal);
  padding: 0.85rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.sep { color: var(--emerald); }

/* ---- ADVANTAGE ---- */
.advantage {
  padding: 7rem 0;
  background: var(--white);
}

.adv-header {
  margin-bottom: 4rem;
}

.adv-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  max-width: 520px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.adv-card {
  padding: 2.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
  background: var(--white);
}

.adv-card:hover { background: var(--off-white); }

.adv-card:nth-child(3),
.adv-card:nth-child(6) { border-right: none; }

.adv-card:nth-child(4),
.adv-card:nth-child(5),
.adv-card:nth-child(6) { border-bottom: none; }

.adv-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.adv-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.adv-card p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ---- COMPARE ---- */
.compare {
  padding: 7rem 0;
  background: var(--off-white);
}

.compare-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 3.5rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.compare-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-col.winner {
  border-top: 4px solid var(--emerald);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.compare-badge {
  padding: 1.1rem 1.75rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}

.compare-badge.alt { color: var(--slate); }

.compare-list {
  list-style: none;
  padding: 1rem 1.75rem 1.5rem;
  display: grid;
  gap: 0.1rem;
}

.compare-list li {
  font-size: 0.875rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
}

.compare-list li:last-child { border-bottom: none; }

.compare-list li.yes::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

.compare-list li.no::before {
  content: '✗';
  color: var(--slate-lt);
  font-weight: 700;
  flex-shrink: 0;
}

.compare-list li.no { color: var(--slate); }

/* ---- USE CASES ---- */
.usecases {
  padding: 7rem 0;
  background: var(--white);
}

.uc-header { margin-bottom: 3.5rem; }
.uc-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.uc-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}

.uc-card:hover {
  border-color: var(--emerald);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,122,95,0.1);
}

.uc-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.uc-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.uc-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.7; }

/* ---- BLOG PREVIEW ---- */
.blog-preview {
  padding: 7rem 0;
  background: var(--charcoal);
}

.bp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.bp-header .section-tag { color: var(--emerald); }
.bp-header h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}

.bp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bp-card {
  display: block;
  background: var(--charcoal-md);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--trans);
}

.bp-card:hover {
  border-color: rgba(13,122,95,0.4);
  transform: translateY(-3px);
}

.bp-card.bp-featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  background: linear-gradient(to top, var(--charcoal) 30%, var(--charcoal-md) 100%);
  border-color: rgba(13,122,95,0.25);
}

.bp-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-lt);
  border: 1px solid rgba(13,122,95,0.35);
  background: rgba(13,122,95,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.bp-card h3 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.bp-card.bp-featured h3 { font-size: 1.45rem; }
.bp-card:not(.bp-featured) h3 { font-size: 1.05rem; }

.bp-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.bp-read {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--emerald-lt);
  letter-spacing: 0.04em;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 6rem 0;
  background: var(--emerald);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-actions .btn-primary {
  background: var(--white);
  color: var(--emerald);
  border-color: var(--white);
}
.cta-actions .btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand .nav-logo { display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.825rem; color: rgba(255,255,255,0.3); max-width: 320px; line-height: 1.7; }

.footer-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--emerald-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.2);
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--charcoal);
  padding: 150px 2rem 80px;
}

.page-hero .section-tag { color: var(--emerald); margin-bottom: 1rem; }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

/* ---- WHY PAGE ---- */
.why-section { padding: 5rem 0; background: var(--white); }
.why-section:nth-child(even) { background: var(--off-white); }

.why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-block.reverse { direction: rtl; }
.why-block.reverse > * { direction: ltr; }

.why-text h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.why-text p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.check-list { list-style: none; margin-top: 1.25rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-visual {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(13,122,95,0.2);
}

.big-stat {
  text-align: center;
  padding: 2rem 1rem;
}
.big-stat-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--emerald-lt);
  line-height: 1;
  display: block;
}
.big-stat-label {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  display: block;
  line-height: 1.5;
}

.visual-quote {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.visual-attr {
  font-size: 0.75rem;
  color: var(--emerald-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-visual { display: grid; gap: 1.1rem; }
.dv-row { display: flex; align-items: center; gap: 1rem; }
.dv-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); min-width: 90px; }
.dv-track { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.dv-fill { height: 100%; background: linear-gradient(to right, var(--emerald), var(--emerald-lt)); border-radius: 3px; transition: width 1.4s ease; }
.dv-pct { font-size: 0.78rem; color: var(--emerald-lt); min-width: 38px; text-align: right; }

/* ---- BLOG PAGE ---- */
.blog-section { padding: 5rem 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  transition: var(--trans);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border-color: var(--emerald);
}
.blog-card-img {
  background: var(--charcoal);
  padding: 2rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blog-card-body { padding: 1.75rem; }
.blog-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.blog-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--slate-lt); }

/* ---- POST PAGE ---- */
.post-hero { background: var(--charcoal); padding: 150px 2rem 80px; }

.post-tag-lg {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-lt);
  border: 1px solid rgba(13,122,95,0.35);
  background: rgba(13,122,95,0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.post-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.post-byline {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.post-body h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 2.75rem 0 1rem;
}

.post-body p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.post-body blockquote {
  border-left: 3px solid var(--emerald);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--off-white);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal-md);
  line-height: 1.5;
}

.post-cta-box {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
  border: 1px solid rgba(13,122,95,0.25);
}
.post-cta-box h3 { font-family: var(--font-head); color: var(--white); font-size: 1.45rem; margin-bottom: 0.75rem; }
.post-cta-box p { color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ---- OFFER PAGE ---- */
.offer-section { padding: 6rem 0; background: var(--off-white); }

.offer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.offer-info h2 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.offer-info p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.offer-bullets { list-style: none; margin-top: 1.5rem; }
.offer-bullets li {
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.offer-bullets li::before { content: '✓'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }

.offer-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--emerald);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.offer-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.form-sub { font-size: 0.8rem; color: var(--slate-lt); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color var(--trans);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,122,95,0.25);
}

.form-note { font-size: 0.75rem; color: var(--slate-lt); text-align: center; margin-top: 1rem; line-height: 1.6; }

.success-message {
  display: none;
  background: rgba(13,122,95,0.06);
  border: 1px solid rgba(13,122,95,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--emerald);
  font-weight: 500;
  margin-top: 1rem;
}

/* ---- ANIMATIONS ---- */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.65s ease forwards;
}

.animate-slide {
  opacity: 0;
  transform: translateX(28px);
  animation: fadeSlide 0.65s ease forwards;
}

.animate-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-fade.visible { opacity: 1; transform: translateY(0); }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlide { to { opacity: 1; transform: translateX(0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--border); padding: 5rem 2rem 3rem; }
  .hero-left-inner { max-width: 100%; padding-right: 0; margin: 0; }
  .hero-right { padding: 3rem 2rem 5rem; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-card, .hero-stat-stack { max-width: 100%; }

  .adv-grid { grid-template-columns: 1fr 1fr; }
  .adv-card:nth-child(2) { border-right: none; }
  .adv-card:nth-child(3) { border-right: 1px solid var(--border); }
  .adv-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .adv-card:nth-child(5) { border-bottom: 1px solid var(--border); }

  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .compare-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .adv-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }

  .uc-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .bp-grid { grid-template-columns: 1fr; }
  .bp-card.bp-featured { grid-row: auto; min-height: 260px; }
  .bp-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .why-block, .why-block.reverse { grid-template-columns: 1fr; direction: ltr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; width: 100%; }

  .offer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; }
  .footer-nav { gap: 1.25rem; }

  .hero-stat-stack { grid-template-columns: 1fr; }
  .hstack-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hstack-item:last-child { border-bottom: none; }
}
