/* ==========================================
   FONT DEFINITIONS
========================================== */
@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url("fonts/CircularStd-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* ==========================================
   ROOT & BASE SETUP
========================================== */
:root {
  --green-600: #1e7e34;
  --green-400: #2bb655;
  --slate-950: #090d16;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --radius-md: 16px;
}

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

body {
  font-family:
    "CircularStd",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--slate-800);
  background-color: #f8fafc;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  font-family: inherit;
}

/* ==========================================
   DYNAMIC BACKGROUND BLUR OBJECTS (FIXED)
========================================== */
.bg-blur-blob {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
  will-change: transform;
}

.blob-1 {
  background: radial-gradient(
    circle,
    var(--green-400) 0%,
    rgba(43, 182, 85, 0) 70%
  );
  top: -10%;
  right: -5%;
  animation: driftBlobOne 14s ease-in-out infinite alternate;
}

.blob-2 {
  background: radial-gradient(circle, #2563eb 0%, rgba(37, 99, 235, 0) 70%);
  top: 35%;
  left: -8%;
  animation: driftBlobTwo 18s ease-in-out infinite alternate;
}

@keyframes driftBlobOne {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  100% {
    transform: translate(-100px, 40px) scale(1.1);
  }
}

@keyframes driftBlobTwo {
  0% {
    transform: translate(0px, 0px) scale(1.05);
  }
  100% {
    transform: translate(80px, -50px) scale(0.95);
  }
}

/* ==========================================
   NAVIGATION
========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 110;
}

.logo-mark {
  width: auto;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover .logo-mark {
  transform: scale(1.05);
}

.logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.nav-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge {
  font-size: 0.65rem;
  background: var(--slate-100);
  color: var(--slate-600);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-inline-link {
  font-size: 1.15rem !important;
  font-weight: 500 !important;
}

.disabled-style {
  opacity: 0.4;
  pointer-events: none;
}

.nav-link {
  text-decoration: none;
  color: var(--slate-800);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  height: 80px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-600);
}
.chevron {
  font-size: 0.8rem;
  margin-left: 4px;
  opacity: 0.6;
}

.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  min-width: 260px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: var(--slate-900);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown-content a:hover {
  color: var(--green-600);
  background: rgba(30, 126, 52, 0.06);
}

.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.btn-text {
  color: var(--slate-900);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.btn-text:hover {
  color: var(--green-600);
}
.btn-primary {
  background: var(--slate-900);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-600);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--slate-900);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 105;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-content {
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-600);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-left: 12px;
  margin-bottom: 8px;
}

.mobile-drawer-link {
  text-decoration: none;
  color: var(--slate-900);
  font-weight: 700;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.mobile-drawer-link.sub-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--slate-600);
}

.mobile-drawer-link:hover,
.mobile-drawer-link.sub-link:hover {
  color: var(--green-600);
}

.drawer-divider {
  border: none;
  border-top: 1px solid var(--slate-100);
  margin: 12px 0;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.mobile-drawer-actions .btn-text {
  padding: 14px;
  font-size: 1.1rem;
}
.mobile-drawer-actions .btn-primary {
  padding: 14px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

@media (max-width: 992px) {
  .main-nav,
  .nav-actions {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==========================================
   HOME HERO
========================================== */
.hero {
  padding: 200px 24px 80px;
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: flex-start;
  gap: 60px;
}
.hero-copy {
  max-width: 780px;
}
.hero-headline {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  color: var(--slate-900);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-headline em {
  color: var(--green-400);
  font-style: normal;
}
.hero-sub {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 44px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.download-cta {
  padding-top: 12px;
}
.download-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-600);
  margin-bottom: 16px;
}
.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-store {
  display: inline-flex;
  align-items: center;
  background: #111827;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  min-width: 170px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-store:hover {
  background: #000000;
  transform: translateY(-2px);
}
.store-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}
.store-text {
  display: flex;
  flex-direction: column;
}
.store-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.75;
  font-weight: 500;
  line-height: 1.2;
}
.store-main {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1px;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 600px;
  align-items: flex-start;
  padding-top: 10px;
}
.phone-mockup {
  height: 100%;
  width: auto;
  z-index: 2;
  animation: floatApp 5s ease-in-out infinite;
}
.phone-mockup img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 70px rgba(9, 13, 22, 0.25));
}
@keyframes floatApp {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(0.5deg);
  }
}
@media (max-width: 1200px) {
  .hero-headline {
    font-size: 4rem;
  }
  .hero-visual {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .hero {
    padding: 150px 24px 70px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-copy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .store-buttons {
    justify-content: center;
  }
  .hero-visual {
    justify-content: center;
    height: 380px;
    align-items: center;
  }
}

/* ==========================================
   PAGE HERO (inner pages)
========================================== */
.page-hero {
  padding: 200px 24px 90px;
  position: relative;
  z-index: 2;
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 16px;
  background: rgba(43, 182, 85, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
}
.page-hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--slate-900);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.page-hero-title em {
  color: var(--green-400);
  font-style: normal;
}
.page-hero-sub {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--slate-600);
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-secondary-light {
  background: rgba(15, 23, 42, 0.04);
  color: var(--slate-900);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.btn-secondary-light:hover {
  background: var(--slate-900);
  color: var(--white);
}

/* ==========================================
   GENERIC PROSE / CONTENT SECTIONS
========================================== */
.content-section {
  padding: 60px 24px;
  position: relative;
  z-index: 2;
}
.content-section.tight {
  padding: 30px 24px;
}
.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.content-wide {
  max-width: 1120px;
  margin: 0 auto;
}
.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 12px;
  background: rgba(43, 182, 85, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate-900);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-title em {
  color: var(--green-400);
  font-style: normal;
}
.section-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 16px;
}
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 48px;
  box-shadow:
    0 4px 30px rgba(15, 23, 42, 0.01),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}
.glass-panel.dark {
  background: rgba(15, 23, 42, 0.93);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.glass-panel.dark p {
  color: #94a3b8;
}
.glass-panel.dark h2,
.glass-panel.dark h3 {
  color: var(--white);
}

/* Two-column prose + panel layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr;
}
@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

/* Checklist */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  padding: 18px 20px;
  font-weight: 500;
  color: var(--slate-800);
}
.check-item .check-icon {
  color: var(--green-400);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .check-grid {
    grid-template-columns: 1fr;
  }
}

/* Value / belief cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.value-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 32px 28px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(43, 182, 85, 0.35);
}
.value-card h3 {
  font-size: 1.2rem;
  color: var(--slate-900);
  margin-bottom: 10px;
  font-weight: 700;
}
.value-card p {
  color: var(--slate-600);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
  border-left: 2px solid rgba(43, 182, 85, 0.25);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-400);
  border: 3px solid #f8fafc;
}
.timeline-year {
  font-weight: 700;
  color: var(--green-600);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-size: 1.15rem;
  color: var(--slate-900);
  margin-bottom: 6px;
  font-weight: 700;
}
.timeline-item p {
  color: var(--slate-600);
  line-height: 1.6;
}

/* Numbered step cards (how it works) */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 32px;
}
.step-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-400);
  opacity: 0.55;
  line-height: 1;
}
.step-card h3 {
  font-size: 1.3rem;
  color: var(--slate-900);
  margin-bottom: 10px;
  font-weight: 700;
}
.step-card p {
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.step-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-card ul li {
  color: var(--slate-800);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  gap: 8px;
}
.step-card ul li::before {
  content: "→";
  color: var(--green-400);
  font-weight: 700;
}
.step-card .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.chip {
  background: rgba(43, 182, 85, 0.08);
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}
@media (max-width: 640px) {
  .step-card {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 24px 28px;
}
.faq-item h4 {
  font-size: 1.05rem;
  color: var(--slate-900);
  margin-bottom: 8px;
  font-weight: 700;
}
.faq-item p {
  color: var(--slate-600);
  line-height: 1.6;
  font-size: 0.97rem;
}

.faq-search {
  max-width: 600px;
  margin: 0 auto 48px;
  display: flex;
  gap: 10px;
}
.faq-search input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  font-family: inherit;
}
.faq-search input:focus {
  outline: 2px solid var(--green-400);
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.faq-category-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  padding: 24px;
  text-decoration: none;
  color: var(--slate-900);
  transition: all 0.25s ease;
  display: block;
}
.faq-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 182, 85, 0.35);
}
.faq-category-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.faq-category-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
}

/* Pricing tables */
.pricing-table-wrap {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}
table.fee-table {
  width: 100%;
  border-collapse: collapse;
}
table.fee-table th {
  text-align: left;
  background: rgba(15, 23, 42, 0.04);
  color: var(--slate-900);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 16px 24px;
  font-weight: 700;
}
table.fee-table td {
  padding: 16px 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--slate-700, var(--slate-800));
  font-size: 0.95rem;
}
table.fee-table tr:hover td {
  background: rgba(43, 182, 85, 0.04);
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pricing-plan-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.pricing-plan-card.featured {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(9, 13, 22, 0.15);
}
.pricing-plan-card.featured .plan-price,
.pricing-plan-card.featured .plan-name {
  color: var(--white);
}
.pricing-plan-card.featured .plan-feature {
  color: #cbd5e1;
}
.pricing-plan-card.featured .plan-feature::before {
  color: var(--green-400);
}
.plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.plan-tag {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 20px;
}
.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.6;
}
.plan-features {
  list-style: none;
  margin: 24px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-feature {
  font-size: 0.92rem;
  color: var(--slate-700, var(--slate-800));
  display: flex;
  gap: 8px;
}
.plan-feature::before {
  content: "✓";
  color: var(--green-400);
  font-weight: 700;
}
@media (max-width: 900px) {
  .pricing-plan-grid {
    grid-template-columns: 1fr;
  }
  .pricing-plan-card.featured {
    transform: none;
  }
}

/* Roadmap columns */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.roadmap-col {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 32px 28px;
}
.roadmap-col.now {
  border-top: 4px solid var(--green-400);
}
.roadmap-col.next {
  border-top: 4px solid #2563eb;
}
.roadmap-col.future {
  border-top: 4px solid #a855f7;
}
.roadmap-col h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--slate-900);
  font-weight: 700;
}
.roadmap-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roadmap-col li {
  color: var(--slate-600);
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
}
.roadmap-col li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 700;
}
@media (max-width: 900px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* Reputation profile card */
.reputation-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 24px;
  padding: 40px;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(9, 13, 22, 0.15);
}
.reputation-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.rep-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}
.rep-row:last-child {
  border-bottom: none;
}
.rep-label {
  color: #94a3b8;
}
.rep-value {
  color: var(--white);
  font-weight: 700;
}

/* Manifesto */
.manifesto-block {
  max-width: 760px;
  margin: 0 auto 56px;
}
.manifesto-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--slate-900);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.manifesto-block p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--slate-700, var(--slate-800));
  margin-bottom: 6px;
}
.manifesto-pledge {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 24px auto 0;
}
.manifesto-pledge li {
  font-weight: 600;
  color: var(--slate-900);
  font-size: 1.05rem;
  display: flex;
  gap: 10px;
}
.manifesto-pledge li::before {
  content: "✓";
  color: var(--green-400);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--green-400);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-channel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 24px;
}
.contact-channel h4 {
  font-size: 1.05rem;
  color: var(--slate-900);
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-channel p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature icon strip for products page anchors */
.anchor-offset {
  scroll-margin-top: 100px;
}

/* ==========================================
   STATS SECTION
========================================== */
.stats-section {
  padding: 100px 24px;
  position: relative;
  z-index: 2;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}
.stats-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}
.stats-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--slate-900);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.stats-title em {
  color: var(--green-400);
  font-style: normal;
}
.stats-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--slate-600);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 182, 85, 0.3);
}
.stat-number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 992px) {
  .stats-section {
    padding: 80px 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 450px;
    margin: 0 auto;
  }
  .stat-card {
    padding: 32px 24px;
  }
}

/* ==========================================
   FEATURES GRID
========================================== */
.features-section {
  padding: 120px 24px;
  position: relative;
  z-index: 2;
}
.features-container {
  max-width: 1280px;
  margin: 0 auto;
}
.features-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.features-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 12px;
  background: rgba(43, 182, 85, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
}
.features-main-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--slate-900);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.features-main-title em {
  color: var(--green-400);
  font-style: normal;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.features-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.features-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 56px 48px;
  border-radius: 24px;
  box-shadow:
    0 4px 30px rgba(15, 23, 42, 0.01),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(43, 182, 85, 0.4);
}
.card-bg-icon {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  color: var(--slate-900);
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover .card-bg-icon {
  opacity: 0.06;
  transform: scale(1.1) rotate(-4deg);
  color: var(--green-400);
}
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.feature-card h3 {
  font-size: 1.6rem;
  color: var(--slate-900);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 32px;
  flex-grow: 1;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 24px;
}
.feature-bullets li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-800);
  display: flex;
  align-items: center;
}
.feature-bullets li::before {
  content: "✓";
  color: var(--green-400);
  font-weight: 700;
  margin-right: 12px;
  font-size: 1.1rem;
}

.feature-card.compact {
  padding: 36px 32px;
}
.feature-card.compact h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.feature-card.compact .feature-desc {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.referral-banner {
  position: relative;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  margin-top: 32px;
  box-shadow: 0 20px 40px rgba(9, 13, 22, 0.08);
}
.referral-content {
  max-width: 680px;
}
.referral-banner h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.referral-banner p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.5;
}
.referral-banner .btn-primary {
  background: var(--white);
  color: var(--slate-900);
  white-space: nowrap;
}
.referral-banner .btn-primary:hover {
  background: var(--green-400);
  color: var(--white);
}

@media (max-width: 992px) {
  .features-section {
    padding: 80px 24px;
  }
  .features-grid,
  .features-grid.cols-3,
  .features-grid.cols-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-card {
    padding: 40px 32px;
  }
  .card-bg-icon {
    width: 200px;
    height: 200px;
    bottom: -20px;
    right: -20px;
  }
  .referral-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }
  .referral-banner .btn-primary {
    width: 100%;
  }
}

/* ==========================================
   HOW-CARD GRID (asymmetric steps)
========================================== */
.how-section {
  padding: 80px 24px;
  position: relative;
  z-index: 2;
}
.how-container {
  max-width: 1280px;
  margin: 0 auto;
}
.how-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.how-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 12px;
  background: rgba(43, 182, 85, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
}
.how-main-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--slate-900);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.how-main-title em {
  color: var(--green-400);
  font-style: normal;
}
.how-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.how-card {
  position: relative;
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow:
    0 4px 30px rgba(15, 23, 42, 0.01),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 260px;
}
.how-card.step-row-2:nth-of-type(4) {
  grid-column: 2 / span 2;
}
.how-card.step-row-2:nth-of-type(5) {
  grid-column: 4 / span 2;
}
.how-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(43, 182, 85, 0.4);
}
.how-bg-number {
  position: absolute;
  bottom: -20px;
  right: -5px;
  font-size: 8.5rem;
  font-weight: 800;
  color: var(--slate-900);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.05em;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-card:hover .how-bg-number {
  opacity: 0.07;
  color: var(--green-400);
  transform: scale(1.05) rotate(-3deg);
}
.how-card-content {
  position: relative;
  z-index: 2;
}
.how-card h3 {
  font-size: 1.4rem;
  color: var(--slate-900);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.how-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--slate-600);
}
@media (max-width: 1100px) {
  .how-asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .how-card,
  .how-card.step-row-2:nth-of-type(4),
  .how-card.step-row-2:nth-of-type(5) {
    grid-column: span 1 !important;
  }
}
@media (max-width: 768px) {
  .how-section {
    padding: 80px 24px;
  }
  .how-asymmetric-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .how-card {
    min-height: auto;
    padding: 40px 32px;
  }
  .how-bg-number {
    font-size: 7rem;
    bottom: -10px;
  }
}

/* ==========================================
   CTA INTERLUDE
========================================== */
.cta-interlude-section {
  padding: 60px 24px 100px;
  position: relative;
  z-index: 2;
}
.cta-interlude-container {
  max-width: 1280px;
  margin: 0 auto;
}
.cta-interlude-card {
  position: relative;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(9, 13, 22, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.cta-interlude-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cta-interlude-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.cta-interlude-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 40px;
}
.cta-interlude-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.btn-primary-light {
  background: var(--white);
  color: var(--slate-950);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.btn-primary-light:hover {
  background: var(--green-400);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.cta-bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  color: var(--white);
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .cta-interlude-section {
    padding: 40px 24px 80px;
  }
  .cta-interlude-card {
    padding: 60px 24px;
    border-radius: 24px;
  }
  .cta-interlude-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary-light,
  .btn-secondary-dark {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

/* ==========================================
   BLOG
========================================== */
.blog-section {
  padding: 100px 24px 140px;
  position: relative;
  z-index: 2;
}
.blog-container {
  max-width: 1280px;
  margin: 0 auto;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.blog-header-left {
  max-width: 600px;
}
.blog-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 12px;
  background: rgba(43, 182, 85, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
}
.blog-main-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--slate-900);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.blog-main-title em {
  color: var(--green-400);
  font-style: normal;
}
.btn-blog-more {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.04);
  color: var(--slate-900);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-blog-more:hover {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
  transform: translateY(-2px);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 30px rgba(15, 23, 42, 0.01),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(43, 182, 85, 0.35);
}
.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-placeholder-img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-gradient-1 {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}
.img-gradient-2 {
  background: linear-gradient(135deg, #065f46, #10b981);
}
.img-gradient-3 {
  background: linear-gradient(135deg, #581c87, #a855f7);
}
.img-gradient-4 {
  background: linear-gradient(135deg, #92400e, #f59e0b);
}
.img-gradient-5 {
  background: linear-gradient(135deg, #831843, #ec4899);
}
.img-gradient-6 {
  background: linear-gradient(135deg, #134e4a, #14b8a6);
}
.blog-card:hover .blog-placeholder-img {
  transform: scale(1.06);
}
.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.02em;
}
.blog-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.82rem;
  color: var(--slate-600);
  font-weight: 500;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.3rem;
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.blog-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 24px;
  flex-grow: 1;
}
.blog-read-link {
  text-decoration: none;
  color: var(--slate-900);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.blog-card:hover .blog-read-link {
  color: var(--green-600);
}
.mobile-only-btn-wrapper {
  display: none;
}
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding: 80px 24px 100px;
  }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
  .desktop-only {
    display: none;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto 32px;
  }
  .blog-card-content {
    padding: 24px;
  }
  .mobile-only-btn-wrapper {
    display: block;
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
  }
  .btn-blog-more.mobile-only {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

/* ==========================================
   FOOTER
========================================== */
.site-footer {
  padding: 80px 24px 40px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.5);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.footer-brand-col {
  max-width: 320px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate-600);
}
.footer-links-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-900);
  margin-bottom: 20px;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--slate-600);
  font-weight: 400;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
}
.footer-links-col a:hover {
  color: var(--green-600);
  transform: translateX(2px);
}
.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.88rem;
  color: var(--slate-600);
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-brand-col {
    max-width: 100%;
    grid-column: span 2;
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .site-footer {
    padding: 60px 24px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-links-col h4 {
    margin-bottom: 14px;
  }
  .footer-bottom {
    padding-top: 24px;
    text-align: center;
    justify-content: center;
  }
}
