

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px;
}

/* HERO */

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  color: #666;
}

/* BLOG GRID */

.blog-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* BLOG CARD */

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.read-btn {
  text-decoration: none;
  color: white;
  background: #2563eb;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
}

/* ARTICLE */

.article-header {
  max-width: 800px;
  margin: 60px auto 20px;
  padding: 0 20px;
}

.meta {
  color: #888;
  margin-top: 10px;
}

.hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin: 20px 0;
}

.article-content {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.article-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.back-button {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.back-button a {
  color: #2563eb;
  text-decoration: none;
}

/* FOOTER */

.footer {
  background: #f8f8f8;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #333;
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #ddd;
}

/* MOBILE */

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

/* Base Navigation Links */
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link span {
  display: inline-block;
  transition: transform 0.3s;
}

.nav-link:hover {
  color: #70af69;
}

.nav-link:hover span {
  transform: translateY(-2px);
}

/* Mobile Links */
.mobile-link {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
  display: block;
}

.mobile-link:hover {
  color: #d4af37;
}

/* Utilities */
.hamburger-line {
  display: block;
  height: 2px;
  background: white;
  transform-origin: center;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

/* purchase-styles -start */

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

/* Updated to support both SVG and IMG logos */
.logo svg,
.logo img {
  height: 3.7rem;
  /* Fix height to fit navbar */
  width: auto;
  /* Maintain aspect ratio */
  transition: transform 0.5s var(--ease-tech);
}

.logo:hover svg,
.logo:hover img {
  transform: scale(1.02);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
}

.logo-subtitle {
  color: #737373;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

.logo:hover .logo-subtitle {
  color: var(--color-gold);
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  transition: all 0.3s ease-out;
  padding: 0.5rem 0;
}

.nav-link span {
  display: inline-block;
  transition: transform 0.3s;
}

/* Hover Interactions */
.nav-link:hover {
  color: #70af69;
}

.nav-link:hover span {
  transform: translateY(-2px);
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
}

/* Focus Interaction */
.nav-link:focus-visible {
  outline: 1px solid var(--color-gold-dim);
  outline-offset: 4px;
}

/* Special "Purchase" Item */
.nav-link.special {
  color: white;
  font-weight: 500;
}

.nav-link.special:hover span {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-link.special::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  opacity: 0;
  transition: opacity 0.5s;
}

.nav-link.special:hover::after {
  opacity: 1;
}

/* --- MOBILE MENU TOGGLE (Checkbox Hack) --- */

/* --- MOBILE NAVIGATION DROPDOWN --- */
.mobile-nav {
  position: absolute;
  top: 100%;
  /* Directly below header */
  left: 0;
  width: 100%;
  background-color: #000000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;

  /* Hidden State */
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  transition: all 0.5s var(--ease-tech);
  z-index: 10;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    color 0.3s;
}

.mobile-nav a:hover {
  color: var(--color-gold);
  letter-spacing: 0.3em;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }
}

/* purchase-styles -end */

/*
      Scoped footer + translator styles.
      All class names are namespaced with "tc-" to avoid collisions.
      Do NOT set body background or global resets to avoid affecting other sections.
    */

:root {
  --tc-bg: black;
  --tc-muted: #94a3b8;
  --tc-text: #e6eef8;
  --tc-white: #ffffff;
  --tc-accent: #60a5fa;
  --tc-container-max: 1200px;
}

/* Scope everything under wrapper so other site CSS remains untouched */
.tc-footer-wrapper {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--tc-text);
}

/* Footer layout */
.tc-footer {
  background: var(--tc-bg);
  color: var(--tc-text);
  padding: 48px 16px;
}

.tc-container {
  max-width: var(--tc-container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Grid */
.tc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 720px) {
  .tc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Company info */
.tc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-brand__img {
  width: 120px;
  height: 70px;
  border-radius: 8px;
}

.tc-brand__title {
  font-size: 1.125rem;
  color: var(--tc-white);
  margin: 0;
  font-weight: 700;
}

.tc-muted {
  color: white;
  font-size: 0.9375rem;
}

/* Quick links */
.tc-section-title {
  color: var(--tc-white);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
  text-decoration: underline;
}

.tc-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tc-links-list a {
  display: block;
  color: white;
  font-size: 0.9375rem;
  text-decoration: none;
  transition:
    color 0.22s ease,
    transform 0.18s ease;
  padding: 2px 0;
}

.tc-links-list a:hover {
  color: #70af69;
  transform: translateX(3px);
}

/* lower area */
.tc-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.tc-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 720px) {
  .tc-bottom-row {
    flex-direction: row;
    align-items: center;
  }
}

.tc-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tc-socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition:
    transform 0.18s ease,
    color 0.18s ease;
  will-change: transform;
}

.tc-socials a:hover {
  color: var(--tc-white);
  transform: scale(1.08);
}

.tc-socials svg {
  width: 18px;
  height: 18px;
  display: block;
}

.tc-copyright {
  color: #70af69;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 720px) {
  .tc-copyright {
    text-align: right;
  }
}

.tc-legal-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: center;
}

@media (min-width: 720px) {
  .tc-legal-links {
    justify-content: flex-end;
  }
}

.tc-legal-links a {
  color: white;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.18s ease;
}

.tc-legal-links a:hover {
  color: var(--tc-white);
}

.tc-space-y-4 > * + * {
  margin-top: 16px;
}

/* Translator UI (placed at end of page) - scoped */
.tc-translate {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tc-translate__label {
  color: var(--tc-muted);
  font-size: 0.92rem;
}

.tc-translate__select {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--tc-text);
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.tc-translate__reset {
  padding: 8px 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--tc-muted);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
}

.tc-translate__reset:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--tc-text);
}

/* Hide the Google Translate UI (we will use hidden combo driven programmatically) - VERY scoped selector */
/* NOTE: we hide only Google's banner/balloon for the site; not touching global elements outside wrapper */
.tc-footer-wrapper .goog-te-banner-frame.skiptranslate,
.tc-footer-wrapper .goog-te-balloon-frame {
  display: none !important;
}

.tc-footer-wrapper .goog-te-combo {
  height: 1px;
  width: 1px;
  opacity: 0;
  position: fixed;
  left: -9999px;
  pointer-events: none;
}

/* Tiny helper -> visually hidden (accessible) */
.tc-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

@media (max-width: 576px) {
  .dath {
    display: flex;
    justify-content: space-around;
  }

  .about-foot {
    padding: 5px;
  }

  .services-foot {
    padding: 5px;
  }

  .support-foot {
    padding: 5px;
  }
}

.dath {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1000px) {
  .spacer-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .dath {
    display: flex;
    justify-content: space-around;
  }

  .about-foot {
    padding: 10px;
  }

  .services-foot {
    padding: 10px;
  }

  .support-foot {
    padding: 10px;
  }
}

.hero {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f1923;
  --paper: #f5f0e8;
  --accent: #c8402a;
  --mid: #6b7b8a;
  --rule: #d4cfc6;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(200, 64, 42, 0.18) 0%,
    transparent 60%
  );
}

.kicker {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  position: relative;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-meta-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
}

.hero-meta-item .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 4px;
}

.hero-meta-item .value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-right {
  background: var(--paper);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--rule);
}

.hero-intro {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  max-width: 480px;
}

.hero-intro strong {
  color: var(--accent);
  font-weight: 700;
}

.scroll-hint {
  margin-top: auto;
  padding-top: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

.scroll-hint .line {
  width: 40px;
  height: 1px;
  background: var(--mid);
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%,
  100% {
    width: 40px;
    opacity: 1;
  }
  50% {
    width: 60px;
    opacity: 0.5;
  }
}

.stat-band {
  background: var(--accent);
  padding: 40px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.stat-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(33.33% - 1px),
    rgba(255, 255, 255, 0.15) calc(33.33% - 1px),
    rgba(255, 255, 255, 0.15) 33.33%
  );
  pointer-events: none;
}

.stat-item {
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.stat-item:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-desc {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
}

.article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 80px;
}

.section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}

.section:first-child {
  border-top: none;
}

.section-label {
  position: relative;
}

.section-num {
  font-family: "Playfair Display", serif;
  font-size: 88px;
  font-weight: 900;
  color: var(--rule);
  line-height: 0.85;
  position: absolute;
  top: -20px;
  left: -8px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  z-index: 1;
  padding-top: 70px;
}

.section-body h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 28px;
}

.section-body h2 em {
  font-style: italic;
  color: var(--accent);
}
.section-body p {
  color: #3a4550;
  margin-bottom: 20px;
  font-size: 16.5px;
}
.section-body p:last-child {
  margin-bottom: 0;
}

.channels-section {
  padding: 100px 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.channels-section::before {
  content: "CHANNELS";
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: "Playfair Display", serif;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
}

.channels-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.channels-header .kicker {
  color: var(--accent);
}

.channels-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  max-width: 600px;
}

.channels-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.channels-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.channel-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.channel-card:hover {
  background: rgba(200, 64, 42, 0.12);
  border-color: rgba(200, 64, 42, 0.3);
}

.channel-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -20px;
  right: 24px;
  font-family: "Playfair Display", serif;
  font-size: 100px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 18px;
}

.channel-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.channel-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 64, 42, 0.4);
  padding: 4px 12px;
  border-radius: 2px;
}

.pullquote-section {
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 48px;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

blockquote cite {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 24px;
}

.strategies {
  background: #f0ebe0;
  padding: 100px 80px;
}
.strategies-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.strategies-inner .kicker {
  color: var(--accent);
  margin-bottom: 48px;
}

.strategy-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.strategy-item {
  background: #f0ebe0;
  padding: 40px 36px;
  transition: background 0.25s;
}
.strategy-item:hover {
  background: #fff;
}

.strategy-num {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.strategy-title {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.strategy-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

.cta-section {
  background: var(--ink);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse,
    rgba(200, 64, 42, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner .kicker {
  justify-content: center;
  display: flex;
}

.cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 28px 0 32px;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--accent);
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
}

.cta-btn:hover {
  background: #a8331e;
  transform: translateY(-2px);
}

.refs {
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

.refs-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
}

.refs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  counter-reset: refs;
}

.refs li {
  font-size: 13px;
  color: var(--mid);
  counter-increment: refs;
}
.refs li::before {
  content: counter(refs) ". ";
  color: var(--accent);
  font-weight: 500;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 32px;
    min-height: 55vmin;
  }
  .hero-right {
    padding: 48px 32px;
  }
  .section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-num {
    font-size: 56px;
  }
  .channels-grid {
    grid-template-columns: 1fr;
  }
  .strategy-list {
    grid-template-columns: 1fr 1fr;
  }
  .article,
  .channels-section,
  .strategies,
  .pullquote-section,
  .cta-section,
  .refs {
    padding-left: 32px;
    padding-right: 32px;
  }
  .stat-band {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
  }
  .stat-item {
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
  }
  .stat-item:first-child {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .strategy-list {
    grid-template-columns: 1fr;
  }
}

.blog-image {
  width: 100%;
  height: 220px; /* exact same height for all cards */
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full image is visible */
}

/* ============================= */
/* 🌿 GREEN DESIGN SYSTEM */
/* ============================= */
:root {
  --green-primary: #2e7d32;
  --green-secondary: #66bb6a;
  --green-accent: #a5d6a7;
  --bg-light: #f1f8f4;
  --bg-dark: #0f2f1f;

  --ink: #0f2f1f;
  --paper: var(--bg-light);
  --accent: var(--green-primary);
  --mid: #5f6f66;
  --rule: #d7e6dc;

  --shadow-soft: 0 10px 30px rgba(46, 125, 50, 0.12);
  --shadow-hover: 0 15px 40px rgba(46, 125, 50, 0.18);
}

/* ============================= */
/* GLOBAL */
/* ============================= */
body {
  background: var(--paper);
  color: var(--ink);
}

/* ============================= */
/* NAVIGATION */
/* ============================= */
.nav-link:hover {
  color: var(--green-secondary);
}

.nav-link:hover span {
  text-shadow: 0 0 8px rgba(102, 187, 106, 0.4);
}

.mobile-link:hover {
  color: var(--green-secondary);
}

.hamburger-line {
  background: var(--green-accent);
}

/* ============================= */
/* HERO */
/* ============================= */
.hero-left {
  background: var(--bg-dark);
}

.hero-left::before {
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(46, 125, 50, 0.25) 0%,
    transparent 65%
  );
}

.kicker {
  color: var(--green-secondary);
}

.kicker::before {
  background: var(--green-secondary);
}

.hero-title em {
  color: var(--green-secondary);
}

.hero-intro strong {
  color: var(--green-primary);
}

/* ============================= */
/* STAT BAND */
/* ============================= */
.stat-band {
  background: linear-gradient(135deg, #2e7d32 0%, #388e3c 50%, #66bb6a 100%);
}

.stat-band::after {
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(33.33% - 1px),
    rgba(255, 255, 255, 0.1) calc(33.33% - 1px),
    rgba(255, 255, 255, 0.1) 33.33%
  );
}

/* ============================= */
/* SECTIONS */
/* ============================= */
.section-body h2 em {
  color: var(--green-primary);
}

/* ============================= */
/* CHANNELS */
/* ============================= */
.channels-section {
  background: var(--bg-dark);
}

.channels-header .kicker {
  color: var(--green-secondary);
}

.channels-header h2 em {
  color: var(--green-secondary);
}

.channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(165, 214, 167, 0.12);
  transition: all 0.3s ease;
}

.channel-card:hover {
  background: rgba(102, 187, 106, 0.12);
  border-color: rgba(102, 187, 106, 0.4);
  box-shadow: var(--shadow-hover);
}

.channel-icon {
  background: linear-gradient(
    135deg,
    var(--green-primary),
    var(--green-secondary)
  );
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.tag {
  color: var(--green-secondary);
  border: 1px solid rgba(102, 187, 106, 0.5);
  background: rgba(165, 214, 167, 0.12);
}

/* ============================= */
/* PULLQUOTE */
/* ============================= */
blockquote {
  border-left: 3px solid var(--green-primary);
}

/* ============================= */
/* STRATEGIES */
/* ============================= */
.strategies {
  background: #eaf4ee;
}

.strategy-item {
  background: #eaf4ee;
}

.strategy-item:hover {
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.strategy-num {
  color: var(--green-primary);
}

/* ============================= */
/* CTA SECTION */
/* ============================= */
.cta-section {
  background: var(--bg-dark);
}

.cta-section::before {
  background: radial-gradient(
    ellipse,
    rgba(102, 187, 106, 0.18) 0%,
    transparent 70%
  );
}

.cta-inner h2 em {
  color: var(--green-secondary);
}

.cta-btn {
  background: linear-gradient(
    135deg,
    var(--green-primary),
    var(--green-secondary)
  );
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  transition: all 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

/* ============================= */
/* BLOG CARDS */
/* ============================= */
.blog-card {
  box-shadow: var(--shadow-soft);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.read-btn {
  background: var(--green-primary);
}

.read-btn:hover {
  background: var(--green-secondary);
}

/* ============================= */
/* FOOTER */
/* ============================= */
.tc-footer {
  background: var(--bg-dark);
}

.tc-links-list a:hover {
  color: var(--green-secondary);
}

.tc-copyright {
  color: var(--green-secondary);
}

/* ============================= */
/* WHATSAPP BUTTON */
/* ============================= */
.whatsapp-btn {
  background: linear-gradient(
    135deg,
    var(--green-primary),
    var(--green-secondary)
  );
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.35);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* ============================= */
/* SCROLL + MICRO INTERACTIONS */
/* ============================= */
.scroll-hint .line {
  background: var(--green-secondary);
}

/* ============================= */
/* FADE IN */
/* ============================= */
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== MODAL ===== */
.popup {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.popup-overlay.active .popup {
  transform: scale(1);
  opacity: 1;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Input */
input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

/* Error */
.error {
  color: red;
  font-size: 12px;
  display: none;
}

/* Button */
.subscribe-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  transition: 0.25s;
}

.subscribe-btn:hover {
  background: #4338ca;
}

/* ===== CONTENT SPACING IMPROVEMENTS ===== */
.popup h2 {
  margin-bottom: 12px;
}

.popup p {
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Group input + button nicely */
.popup input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 16px; /* ⬅️ increased spacing */
  font-size: 14px;
}

/* Error spacing */
.error {
  margin-bottom: 12px;
}

/* Button spacing */
.subscribe-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  transition: 0.25s;
  margin-top: 4px; /* ⬅️ subtle breathing space */
}
