@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spline Sans";
  src: url("../fonts/SplineSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --surface-2: #EDF4EF;
  --text: #1A2420;
  --text-muted: #5A6B62;
  --accent: #0D6B5E;
  --accent-2: #E8A838;
  --border: #D4DDD8;
  --font-display: 'Fraunces', serif;
  --font-body: 'Spline Sans', sans-serif;
  --fs-display: clamp(2.4rem, 5vw, 3.8rem);
  --fs-h1: clamp(1.9rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.4rem);
  --fs-body: clamp(0.95rem, 1.5vw, 1.05rem);
  --fs-small: clamp(0.8rem, 1.2vw, 0.9rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 2px 8px rgba(26, 36, 32, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 36, 32, 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-2);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1000;
  transition: width 0.1s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: rotate(-5deg) scale(1.05);
}

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

.logo-line1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--accent);
}

.logo-line2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.ad-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.3;
}

.btn-header {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.1rem;
}

.btn-header:hover {
  background: #0a5a4e;
  color: #fff;
  transform: translateY(-1px);
}

.btn-active {
  background: var(--text);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #0a5a4e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 107, 94, 0.3);
}

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

.btn-accent:hover {
  background: #d4952e;
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.35);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(25deg);
  transition: left 0.5s ease;
}

.btn-glow:hover::after {
  left: 120%;
}

.overline-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--surface-2);
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  border-left: 3px solid var(--accent);
}

.overline-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-left-color: var(--accent-2);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.blog-article {
  background: var(--bg);
}

.blog-hero {
  position: relative;
  padding: var(--space-xl) 1.5rem var(--space-lg);
  background: linear-gradient(170deg, var(--surface-2) 0%, var(--bg) 60%);
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fizz {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 107, 94, 0.12);
  background: rgba(13, 107, 94, 0.04);
  animation: fizzRise 6s ease-in-out infinite;
}

.f1 { width: 22px; height: 22px; top: 12%; left: 8%; animation-delay: 0s; }
.f2 { width: 14px; height: 14px; top: 25%; left: 18%; animation-delay: 0.8s; }
.f3 { width: 30px; height: 30px; top: 8%; right: 12%; animation-delay: 1.5s; }
.f4 { width: 10px; height: 10px; top: 40%; right: 22%; animation-delay: 2.2s; }
.f5 { width: 18px; height: 18px; bottom: 20%; left: 5%; animation-delay: 3s; }
.f6 { width: 26px; height: 26px; bottom: 30%; right: 6%; animation-delay: 3.8s; }
.f7 { width: 12px; height: 12px; top: 55%; left: 35%; animation-delay: 4.5s; }
.f8 { width: 16px; height: 16px; bottom: 12%; right: 35%; animation-delay: 5.2s; }

@keyframes fizzRise {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-14px) scale(1.2); opacity: 1; }
}

.blog-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.blog-category-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}

.blog-category {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-category-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
}

.blog-category-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-title {
  font-size: var(--fs-h1);
  font-weight: 900;
  margin-bottom: var(--space-md);
  color: var(--text);
  text-wrap: balance;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-meta-item i {
  color: var(--accent);
}

.blog-meta-sep {
  color: var(--border);
}

.blog-cta {
  margin-top: var(--space-xs);
}

.blog-cover {
  max-width: 900px;
  margin: calc(var(--space-lg) * -1) auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.blog-cover-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 36, 32, 0.15);
}

.blog-cover-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-cover-frame:hover .blog-cover-img {
  transform: scale(1.02);
}

.blog-cover-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.2rem 0.8rem;
  background: linear-gradient(transparent, rgba(26, 36, 32, 0.75));
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-body {
  max-width: 740px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-xl);
}

.blog-content p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-lead {
  font-size: 1.15rem !important;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid var(--accent-2);
  padding-left: var(--space-md);
}

.blog-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  color: var(--accent);
}

.blog-video-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-video-cta:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.blog-video-cta-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 107, 94, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(13, 107, 94, 0); }
}

.blog-video-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.blog-video-cta-text strong {
  font-size: 0.92rem;
}

.blog-video-cta-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-quote {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md) var(--space-md) 2.8rem;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.blog-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.blog-quote-mark {
  position: absolute;
  top: -8px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.blog-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  font-style: italic;
  margin-bottom: var(--space-sm) !important;
  line-height: 1.6 !important;
}

.blog-quote cite {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}

.blog-factbox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.blog-factbox-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, var(--accent), #0a5a4e);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.blog-factbox-header i {
  font-size: 1.1rem;
}

.blog-factbox-body {
  padding: 1.2rem;
}

.blog-factbox-body p {
  font-size: 0.95rem !important;
  margin-bottom: var(--space-sm) !important;
}

.blog-factbox-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.spec-pill {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.spec-pill:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #fff;
}

.blog-inline-img {
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-inline-img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-inline-img:hover img {
  transform: scale(1.03);
}

.blog-inline-img-cap {
  display: block;
  padding: 0.7rem 1rem;
  background: var(--surface);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.blog-final-cta {
  margin: var(--space-xl) 0 var(--space-lg);
}

.blog-final-cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--accent), #0a5a4e);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.blog-final-cta-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bfc-b {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  animation: fizzRise 5s ease-in-out infinite;
}

.bfc-b.b1 { width: 60px; height: 60px; top: 10%; left: 8%; }
.bfc-b.b2 { width: 35px; height: 35px; bottom: 15%; left: 20%; animation-delay: 1.5s; }
.bfc-b.b3 { width: 80px; height: 80px; top: 5%; right: 10%; animation-delay: 2.5s; }
.bfc-b.b4 { width: 25px; height: 25px; bottom: 25%; right: 25%; animation-delay: 3.5s; }

.blog-final-cta-title {
  font-size: var(--fs-h2);
  color: #fff;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.blog-final-cta-text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.blog-final-cta-inner .btn {
  position: relative;
  z-index: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.blog-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
  cursor: default;
}

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

.video-hero {
  position: relative;
  padding: var(--space-xl) 1.5rem calc(var(--space-lg) + 40px);
  background: linear-gradient(160deg, #0a3d35, var(--accent), #128a76);
  text-align: center;
  overflow: hidden;
}

.video-hero-fizz {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vf {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  animation: fizzRise 7s ease-in-out infinite;
}

.vf.v1 { width: 20px; height: 20px; top: 15%; left: 10%; }
.vf.v2 { width: 35px; height: 35px; top: 25%; left: 25%; animation-delay: 1s; }
.vf.v3 { width: 14px; height: 14px; top: 10%; right: 15%; animation-delay: 2s; }
.vf.v4 { width: 50px; height: 50px; top: 40%; right: 8%; animation-delay: 3s; }
.vf.v5 { width: 12px; height: 12px; bottom: 30%; left: 5%; animation-delay: 4s; }
.vf.v6 { width: 28px; height: 28px; bottom: 20%; right: 20%; animation-delay: 5s; }
.vf.v7 { width: 18px; height: 18px; top: 60%; left: 40%; animation-delay: 1.5s; }
.vf.v8 { width: 40px; height: 40px; top: 5%; left: 55%; animation-delay: 2.5s; }
.vf.v9 { width: 16px; height: 16px; bottom: 40%; left: 70%; animation-delay: 3.5s; }
.vf.v10 { width: 24px; height: 24px; bottom: 10%; left: 30%; animation-delay: 4.5s; }

.video-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.video-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(4px);
}

.video-hero-title {
  font-size: var(--fs-h1);
  color: #fff;
  margin-bottom: var(--space-sm);
  text-wrap: balance;
}

.video-hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.video-stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.v-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.v-stat i {
  color: var(--accent-2);
}

.video-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.video-hero-wave svg {
  width: 100%;
  height: 40px;
  display: block;
}

.video-embed-section {
  background: var(--surface);
  padding: var(--space-lg) 1.5rem;
}

.video-embed-inner {
  max-width: 900px;
  margin: 0 auto;
}

.video-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 36, 32, 0.15);
}

.video-frame-glow {
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 300% 300%;
  animation: glowShift 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes glowShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.learn-section {
  background: var(--surface-2);
  padding: var(--space-xl) 1.5rem;
  position: relative;
}

.learn-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.learn-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header .overline-tag {
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: var(--fs-h2);
  margin-top: var(--space-xs);
}

.section-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.learn-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.learn-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.learn-card:hover .learn-card-accent {
  transform: scaleX(1);
}

.learn-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.learn-card:hover .learn-num {
  opacity: 0.5;
}

.learn-card-title {
  font-size: var(--fs-h3);
  margin-bottom: 0.4rem;
}

.learn-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.guide-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--surface);
  border: 2px dashed var(--accent-2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.guide-banner:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.guide-banner-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2), #f0c060);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.guide-banner:hover .guide-banner-icon {
  transform: rotate(-5deg) scale(1.1);
}

.guide-banner-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.guide-banner-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.guide-banner .btn {
  margin-left: auto;
  flex-shrink: 0;
}

.newsletter-section {
  background: var(--text);
  padding: var(--space-xl) 1.5rem;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 107, 94, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-fizz {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nf {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  animation: fizzRise 8s ease-in-out infinite;
}

.nf.n1 { width: 40px; height: 40px; top: 20%; left: 5%; }
.nf.n2 { width: 25px; height: 25px; top: 50%; left: 15%; animation-delay: 2s; }
.nf.n3 { width: 55px; height: 55px; top: 10%; right: 10%; animation-delay: 3s; }
.nf.n4 { width: 18px; height: 18px; bottom: 20%; right: 25%; animation-delay: 4s; }
.nf.n5 { width: 32px; height: 32px; bottom: 35%; left: 45%; animation-delay: 5s; }

.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-size: var(--fs-h2);
  color: #fff;
  margin: var(--space-sm) 0 var(--space-md);
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

.newsletter-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  transition: transform 0.2s ease;
}

.newsletter-perks li:hover {
  transform: translateX(4px);
}

.newsletter-perks i {
  color: var(--accent-2);
  font-size: 1.1rem;
}

.newsletter-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.newsletter-form-wrap::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.form-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-title i {
  color: var(--accent);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 107, 94, 0.1);
  transform: translateY(-1px);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.form-check label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0;
}

.references-section {
  background: var(--surface);
  padding: var(--space-xl) 1.5rem;
}

.references-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.ref-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ref-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.ref-index {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.ref-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ref-card em {
  color: var(--text);
}

.faq-section {
  background: var(--surface-2);
  padding: var(--space-xl) 1.5rem;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.4rem 1.2rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.thanks-section {
  background: var(--surface-2);
  padding: var(--space-xl) 1.5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.thanks-fizz {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tf {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 107, 94, 0.1);
  background: rgba(13, 107, 94, 0.03);
  animation: fizzRise 7s ease-in-out infinite;
}

.tf.t1 { width: 30px; height: 30px; top: 15%; left: 10%; }
.tf.t2 { width: 20px; height: 20px; top: 30%; right: 12%; animation-delay: 1.5s; }
.tf.t3 { width: 45px; height: 45px; bottom: 20%; left: 8%; animation-delay: 3s; }
.tf.t4 { width: 15px; height: 15px; top: 50%; left: 25%; animation-delay: 4s; }
.tf.t5 { width: 35px; height: 35px; bottom: 30%; right: 8%; animation-delay: 5s; }
.tf.t6 { width: 22px; height: 22px; top: 10%; right: 30%; animation-delay: 2s; }

.thanks-inner {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.thanks-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
}

.thanks-logo {
  margin: 0 auto var(--space-sm);
}

.thanks-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: 50%;
  color: var(--accent);
  font-size: 2rem;
  animation: pulse-ring 2s ease-in-out infinite;
}

.thanks-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xs);
}

.thanks-email-line {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.thanks-steps {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.thanks-steps-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
  text-align: center;
}

.thanks-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--bg);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease;
}

.thanks-step:hover {
  transform: translateX(4px);
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}

.step-text h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.step-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.thanks-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: linear-gradient(135deg, #FFF8E8, #FFFDF5);
  border: 1px solid #F0DFA8;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.thanks-tip i {
  color: var(--accent-2);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.thanks-tip p {
  font-size: 0.85rem;
  color: var(--text);
}

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.logo-footer .logo-line1 {
  color: #7ec8b8;
}

.logo-footer .logo-line2 {
  color: #fff;
}

.footer-desc {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-sm);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-2);
  transform: translateX(3px);
}

.footer-legal-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-more {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .learn-grid > *,
  .newsletter-inner > *,
  .references-grid > *,
  .footer-top > * {
    min-width: 0;
    max-width: 100%;
  }
  .learn-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
  }
  .references-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .guide-banner {
    flex-direction: column;
    text-align: center;
  }
  .guide-banner .btn {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .ad-badge {
    margin-left: 0;
    order: 3;
  }
  .btn-header {
    margin-left: auto;
  }
  .blog-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .blog-cover {
    margin-top: calc(var(--space-md) * -1);
  }
  .blog-video-cta {
    flex-direction: column;
    text-align: center;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form-wrap {
    padding: var(--space-md);
  }
  .thanks-card {
    padding: var(--space-md);
  }
}

@media (max-width: 640px) {
  .ad-badge {
    word-break: break-all;
  }
  .logo-link {
    flex-direction: column;
  }
  .logo-text {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .footer-col {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.75rem 1rem;
  }
  .blog-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .blog-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .blog-content p {
    font-size: 0.95rem;
  }
  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fizz, .vf, .nf, .tf, .bfc-b, .fizz-decor {
    animation: none;
  }
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .video-frame-glow {
    animation: none;
  }
  .blog-video-cta-icon {
    animation: none;
  }
  .thanks-icon-wrap {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.legal-hero {
  background: linear-gradient(170deg, var(--surface-2) 0%, var(--bg) 100%);
  padding: var(--space-xl) 1.5rem var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 107, 94, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.legal-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--surface);
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  border-left: 3px solid var(--accent);
  margin-bottom: var(--space-sm);
}

.legal-title {
  font-size: var(--fs-h1);
  font-weight: 900;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.legal-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem var(--space-xl);
  word-break: break-word;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.legal-section {
  margin-bottom: var(--space-lg);
}

.legal-section h2 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-section h2 i {
  color: var(--accent);
  font-size: 1.2rem;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.legal-card p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: var(--space-sm) 0;
  padding-left: 1.5rem;
}

.legal-card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  position: relative;
}

.legal-card ul li::marker {
  color: var(--accent);
}

.legal-callout {
  background: var(--surface-2);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
}

.legal-callout h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.legal-callout p {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-callout ul {
  margin: 0.6rem 0;
  padding-left: 1.5rem;
}

.legal-callout ul li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.legal-callout ul li::marker {
  color: var(--accent);
}

.legal-callout strong {
  color: var(--accent);
}

.legal-link {
  color: var(--accent);
  text-decoration: underline;
  word-break: break-all;
}

.legal-update {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  text-align: center;
}

.legal-update p {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.legal-update i {
  color: var(--accent);
}

@media (max-width: 600px) {
  .legal-hero {
    padding: var(--space-lg) 1rem var(--space-md);
  }
  .legal-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .legal-content {
    padding: var(--space-md) 1rem var(--space-lg);
  }
  .legal-card,
  .legal-callout {
    padding: var(--space-sm);
  }
  .legal-section h2 {
    font-size: 1.1rem;
  }
}