:root {
  --bg: #0b0f0e;
  --bg-soft: #111715;
  --bg-dark: #0d1311;
  --surface: rgba(20, 27, 24, 0.9);
  --surface-strong: #161d1a;
  --text: #ecf5f1;
  --text-soft: #9dafaa;
  --text-light: #cfe0d9;
  --text-muted: #b7c8c2;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --primary: #2ee6a6;
  --primary-dark: #1fc88b;
  --primary-soft: rgba(46, 230, 166, 0.12);
  --primary-line: rgba(46, 230, 166, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.34);
  --container: 1180px;
  --container-narrow: 820px;
  --transition: 220ms ease;
}

/* =========================
   RESET & BASE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 230, 166, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(46, 230, 166, 0.04), transparent 24%),
    var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 32px, var(--container-narrow));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section__header {
  max-width: 760px;
  margin-bottom: 40px;
}

.section__header h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section__header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section__footer-text {
  max-width: 780px;
  margin-top: 32px;
  color: var(--text-soft);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow {
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 0.9rem;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(11, 15, 14, 0.78);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo__image {
  display: block;
  width: auto;
  height: 40px;
  max-width: 100px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}


.logo--footer {
  color: #ffffff;
}

.logo--footer .logo__image {
  height: 36px;
  max-width: 95px;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-soft);
  font-weight: 600;
  transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #08110e;
  box-shadow: 0 16px 40px rgba(46, 230, 166, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #46efb3 0%, var(--primary) 100%);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  box-shadow: var(--shadow);
  border-color: rgba(46, 230, 166, 0.2);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 36px rgba(2, 6, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--full {
  width: 100%;
}

/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HERO
========================= */

.hero {
  overflow: hidden;
  padding-top: 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero__content h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 10.5ch;
  color: var(--text);
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.34));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1.1s ease forwards;
  animation-delay: 0.45s;
}

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

.hero__lead {
  max-width: 700px;
  margin: 0 0 16px;
  font-size: 1.15rem;
  color: var(--text-soft);
}

.hero__sub {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
}

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

.hero__visual {
  position: relative;
}

.hero-laptop-mockup {
  position: relative;
  padding: 18px 18px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 29, 26, 0.98), rgba(15, 20, 19, 0.98));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-laptop-mockup::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -36px;
  right: -24px;
  background: rgba(46, 230, 166, 0.14);
  border-radius: 999px;
  filter: blur(45px);
  z-index: -1;
}

.hero-laptop-mockup::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -28px;
  left: -18px;
  background: rgba(46, 230, 166, 0.08);
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
}

.hero-laptop-mockup__top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-laptop-mockup__screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f1513;
}

.hero-laptop-mockup__screen img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: top center;
}

.hero-service-graphic {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 29, 26, 0.98), rgba(15, 20, 19, 0.98));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-service-graphic__browser {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #0f1513;
  overflow: hidden;
}

.hero-service-graphic__top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.hero-service-graphic__screen {
  padding: 18px;
}

.hero-service-graphic__nav {
  height: 14px;
  width: 46%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.hero-service-graphic__hero {
  height: 110px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  margin-bottom: 16px;
}

.hero-service-graphic__rows {
  display: grid;
  gap: 10px;
}

.hero-service-graphic__row {
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-service-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(22, 29, 26, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.hero-mockup {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 29, 26, 0.98), rgba(15, 20, 19, 0.98));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-mockup::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -30px;
  left: -20px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -40px;
  right: -30px;
  background: rgba(46, 230, 166, 0.14);
  border-radius: 999px;
  filter: blur(45px);
  z-index: -1;
}

.hero-mockup::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -30px;
  left: -20px;
  background: rgba(46, 230, 166, 0.08);
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
}

.hero-mockup__top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 999px;
}

.hero-mockup__screen {
  padding: 18px;
  border-radius: 24px;
  background: #0f1513;
  border: 1px solid var(--border);
  min-height: 360px;
}

.mockup-content {
  display: grid;
  gap: 14px;
}

.mockup-navbar {
  height: 18px;
  width: 42%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.mockup-hero {
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  margin-bottom: 18px;
}

.mockup-block {
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(22, 29, 26, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  backdrop-filter: blur(10px);
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 {
  top: 72px;
  right: -24px;
}

.badge-2 {
  top: 150px;
  left: -28px;
  animation-delay: 0.6s;
}

.badge-3 {
  bottom: 100px;
  right: -18px;
  animation-delay: 1.1s;
}

.badge-4 {
  bottom: 28px;
  left: -18px;
  animation-delay: 1.6s;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* =========================
   PROBLEM
========================= */

.problem-section {
  position: relative;
  overflow: hidden;
}

.problem-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 42px;
}

.problem-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 11ch;
  color: var(--text);
}

.problem-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.problem-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: problemUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes problemUnderline {
  to {
    transform: scaleX(1);
  }
}

.problem-lead {
  max-width: 720px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.problem-visual {
  position: relative;
}

.problem-visual__image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  min-height: 420px;
  background: #e2e8f0;
}

.problem-visual__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

.problem-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -20px;
  top: -20px;
  background: rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
}

.problem-floating-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  backdrop-filter: blur(10px);
  animation: floatProblemBadge 4.5s ease-in-out infinite;
}

.floating-card--1 {
  top: 22px;
  left: -18px;
}

.floating-card--2 {
  top: 120px;
  right: -20px;
  animation-delay: 0.8s;
}

.floating-card--3 {
  bottom: 26px;
  left: 24px;
  animation-delay: 1.5s;
}

@keyframes floatProblemBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.problem-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.problem-card__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  color: var(--primary);  font-size: 1.15rem;
  font-weight: 800;
}

.problem-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.problem-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.problem-highlight {
  max-width: 900px;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.problem-highlight p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.problem-highlight p:last-child {
  margin-bottom: 0;
}

.problem-highlight strong {
  color: var(--text);
}

.problem-card:nth-child(1) {
  transition-delay: 0.05s;
}

.problem-card:nth-child(2) {
  transition-delay: 0.12s;
}

.problem-card:nth-child(3) {
  transition-delay: 0.19s;
}

.problem-card:nth-child(4) {
  transition-delay: 0.26s;
}

/* =========================
   BENEFITS
========================= */

.benefits-section {
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: 40px;
  right: -80px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.benefits-section .container {
  position: relative;
  z-index: 1;
}

.benefits-header {
  max-width: 860px;
  margin-bottom: 42px;
}

.benefits-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.benefits-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.benefits-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: benefitsUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes benefitsUnderline {
  to {
    transform: scaleX(1);
  }
}

.benefits-lead {
  max-width: 720px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.benefits-premium-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.benefit-card {
  grid-column: span 4;
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: var(--surface);  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  opacity: 0;
  transition: opacity 240ms ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card--featured {
  grid-column: span 8;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.94));
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 24px 68px rgba(37, 99, 235, 0.1);
}

.benefit-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.benefit-card__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.benefit-card__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.benefit-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.benefits-highlight {
  max-width: 760px;
  padding: 22px 26px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.benefits-highlight p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 600;
}

.benefit-card:nth-child(1) {
  transition-delay: 0.04s;
}

.benefit-card:nth-child(2) {
  transition-delay: 0.1s;
}

.benefit-card:nth-child(3) {
  transition-delay: 0.16s;
}

.benefit-card:nth-child(4) {
  transition-delay: 0.22s;
}

.benefit-card:nth-child(5) {
  transition-delay: 0.28s;
}

.benefit-card:nth-child(6) {
  transition-delay: 0.34s;
}

/* =========================
   INCLUDE
========================= */

.include-section {
  position: relative;
  overflow: hidden;
}

.include-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -80px;
  top: 120px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.include-section .container {
  position: relative;
  z-index: 1;
}

.include-top {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 42px;
}

.include-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.include-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.include-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: includeUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes includeUnderline {
  to {
    transform: scaleX(1);
  }
}

.include-lead {
  margin: 0 0 20px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.include-intro-card {
  max-width: 660px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.include-intro-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}

.include-visual {
  position: relative;
}

.include-visual__image {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  background: #e2e8f0;
}

.include-visual__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.include-floating {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  backdrop-filter: blur(10px);
  animation: floatIncludeBadge 4.5s ease-in-out infinite;
}

.include-floating--1 {
  top: 20px;
  left: -18px;
}

.include-floating--2 {
  top: 110px;
  right: -22px;
  animation-delay: 0.8s;
}

.include-floating--3 {
  bottom: 28px;
  left: 24px;
  animation-delay: 1.5s;
}

@keyframes floatIncludeBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.include-card {
  grid-column: span 3;
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.include-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  opacity: 0;
  transition: opacity 240ms ease;
}

.include-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.include-card:hover::before {
  opacity: 1;
}

.include-card--featured {
  grid-column: span 6;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.94));
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 24px 68px rgba(37, 99, 235, 0.08);
}

.include-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.include-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
}

.include-card__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.include-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}

.include-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.include-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.include-summary__badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.include-summary p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
}

.include-card:nth-child(1) {
  transition-delay: 0.04s;
}

.include-card:nth-child(2) {
  transition-delay: 0.1s;
}

.include-card:nth-child(3) {
  transition-delay: 0.16s;
}

.include-card:nth-child(4) {
  transition-delay: 0.22s;
}

.include-card:nth-child(5) {
  transition-delay: 0.28s;
}

.include-card:nth-child(6) {
  transition-delay: 0.34s;
}

.include-card:nth-child(7) {
  transition-delay: 0.4s;
}

.include-card:nth-child(8) {
  transition-delay: 0.46s;
}

/* =========================
   TARGET
========================= */

.target-section {
  position: relative;
  overflow: hidden;
}

.target-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -80px;
  bottom: 40px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.target-section .container {
  position: relative;
  z-index: 1;
}

.target-top {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 42px;
}

.target-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.target-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);}

.target-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background:linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: targetUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes targetUnderline {
  to {
    transform: scaleX(1);
  }
}

.target-lead {
  margin: 0 0 20px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.target-intro-card {
  max-width: 660px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.target-intro-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}

.target-visual {
  position: relative;
}

.target-visual__image {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  background: #e2e8f0;
}

.target-visual__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.target-floating {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  backdrop-filter: blur(10px);
  animation: floatTargetBadge 4.5s ease-in-out infinite;
}

.target-floating--1 {
  top: 24px;
  left: -18px;
}

.target-floating--2 {
  top: 110px;
  right: -22px;
  animation-delay: 0.8s;
}

.target-floating--3 {
  bottom: 28px;
  left: 24px;
  animation-delay: 1.5s;
}

@keyframes floatTargetBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.target-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.target-audience-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.target-audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.target-audience-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  color: var(--primary);  font-size: 1.05rem;
  font-weight: 800;
}

.target-audience-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}

.target-audience-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.target-check-wrapper {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(46, 230, 166, 0.05), rgba(22, 29, 26, 0.96));
  border: 1px solid var(--primary-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.target-check-header {
  margin-bottom: 22px;
}

.target-check-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.target-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.target-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.target-check-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(46, 230, 166, 0.14);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 2px;
}

.target-check-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}

.target-audience-card:nth-child(1) {
  transition-delay: 0.04s;
}

.target-audience-card:nth-child(2) {
  transition-delay: 0.1s;
}

.target-audience-card:nth-child(3) {
  transition-delay: 0.16s;
}

.target-audience-card:nth-child(4) {
  transition-delay: 0.22s;
}

.target-check-item:nth-child(1) {
  transition-delay: 0.05s;
}

.target-check-item:nth-child(2) {
  transition-delay: 0.1s;
}

.target-check-item:nth-child(3) {
  transition-delay: 0.15s;
}

.target-check-item:nth-child(4) {
  transition-delay: 0.2s;
}

.target-check-item:nth-child(5) {
  transition-delay: 0.25s;
}

/* =========================
   PROCESS
========================= */

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -60px;
  bottom: 20px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.process-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.process-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.process-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: processUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes processUnderline {
  to {
    transform: scaleX(1);
  }
}

.process-lead {
  max-width: 700px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.process-side-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.process-side-card__label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-side-card__text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.process-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(46, 230, 166, 0.12),
    rgba(46, 230, 166, 0.4),
    rgba(46, 230, 166, 0.12)
  );
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  opacity: 0;
  transition: opacity 240ms ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.process-card:hover::before {
  opacity: 1;
}

.process-card__step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.process-card__number {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.process-card__mini-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}

.process-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.pricing-heading {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text);
}

.pricing-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.pricing-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: pricingUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes pricingUnderline {
  to {
    transform: scaleX(1);
  }
}

.process-card:nth-child(2) { transition-delay: 0.05s; }
.process-card:nth-child(3) { transition-delay: 0.12s; }
.process-card:nth-child(4) { transition-delay: 0.19s; }
.process-card:nth-child(5) { transition-delay: 0.26s; }

.pricing-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 28px;
}

.pricing-toggle__btn {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
}

.pricing-toggle__btn.is-active {
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card--featured {
  background: linear-gradient(180deg, #101816 0%, #0c1311 100%);
  color: #ffffff;
  border-color: rgba(46, 230, 166, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}

.pricing-card--featured .pricing-card__tag,
.pricing-card--featured .pricing-card__intro,
.pricing-card--featured .pricing-list,
.pricing-card--featured .pricing-price__note {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card--featured .pricing-price__compare {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-card--featured .pricing-card__header h3,
.pricing-card--featured .pricing-price__main,
.pricing-card--featured .pricing-list li {
  color: #ffffff;
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 230, 166, 0.14);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(46, 230, 166, 0.2);
}

.pricing-card__header {
  margin-bottom: 10px;
}

.pricing-card__header h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.pricing-card__tag {
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.pricing-price {
  margin-bottom: 18px;
}

.pricing-price__main-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-price__main {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
}

.pricing-price__compare {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-soft);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pricing-price__note {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.pricing-card__intro {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--text-soft);
}

.pricing-list {
  margin: 0 0 24px;
  padding-left: 20px;
  flex-grow: 1;
}

.pricing-list li {
  margin-bottom: 10px;
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing-extra {
  max-width: 760px;
  margin-top: 26px;
  color: var(--text-soft);
}

.section-cta {
  margin-top: 30px;
}

/* =========================
   ADDON
========================= */

.addon-section {
  position: relative;
  overflow: hidden;
}

.addon-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -60px;
  top: 60px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.addon-section .container {
  position: relative;
  z-index: 1;
}

.addon-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.addon-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.addon-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.addon-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: addonUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes addonUnderline {
  to {
    transform: scaleX(1);
  }
}

.addon-lead {
  margin: 0 0 20px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.addon-intro-card {
  max-width: 650px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.addon-intro-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}

.addon-visual__panel {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 16px;
}

.addon-visual__module {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  animation: addonFloat 4.5s ease-in-out infinite;
}

.addon-visual__module:nth-child(2) {
  animation-delay: 0.7s;
}

.addon-visual__module:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes addonFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.addon-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.addon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.addon-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.addon-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  font-size: 1.2rem;
}

.addon-card__badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.addon-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.addon-card__price {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

.addon-card p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.addon-footer {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.addon-footer__pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.addon-footer p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================
   COMPARISON
========================= */

.comparison-section {
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -80px;
  top: 80px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.comparison-section .container {
  position: relative;
  z-index: 1;
}

.comparison-header {
  max-width: 860px;
}

.comparison-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.comparison-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.comparison-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: comparisonUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes comparisonUnderline {
  to {
    transform: scaleX(1);
  }
}

.comparison-lead {
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 10px;
  margin-bottom: 30px;
}

.compare-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.compare-card:hover {
  transform: translateY(-8px);
}

.compare-card--negative {
  background: var(--surface);
}

.compare-card--negative:hover {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  border-color: rgba(148, 163, 184, 0.22);
}

.compare-card--positive {
  background: linear-gradient(180deg, #101816 0%, #0c1311 100%);
  color: #ffffff;
  border-color: rgba(46, 230, 166, 0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.compare-card--positive:hover {
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.28);
  border-color: rgba(96, 165, 250, 0.4);
}

.compare-card__top {
  margin-bottom: 24px;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-badge--negative {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-soft);
}

.compare-badge--positive {
  background: rgba(46, 230, 166, 0.12);
  color: #ffffff;
  border: 1px solid rgba(46, 230, 166, 0.18);
}

.compare-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.compare-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  line-height: 1.7;
  font-size: 1.02rem;
}

.compare-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 2px;
}

.compare-icon--negative {
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-soft);
}

.compare-icon--positive {
  background: rgba(46, 230, 166, 0.14);
  color: #ffffff;
  border: 1px solid rgba(46, 230, 166, 0.16);
}

.compare-card--negative .compare-list li {
  color: var(--text-soft);
}

.compare-card--positive .compare-list li {
  color: rgba(255, 255, 255, 0.92);
}

.comparison-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.comparison-summary__pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-summary p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.6;
}

.compare-card:nth-child(1) {
  transition-delay: 0.05s;
}

.compare-card:nth-child(2) {
  transition-delay: 0.14s;
}

/* =========================
   TRUST
========================= */

.trust-section {
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -70px;
  top: 70px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.trust-section .container {
  position: relative;
  z-index: 1;
}

.trust-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 38px;
}

.trust-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.trust-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.trust-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: trustUnderline 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes trustUnderline {
  to {
    transform: scaleX(1);
  }
}

.trust-lead {
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.trust-visual__panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 16px;
}

.trust-visual__item {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-strong);  border: 1px solid rgba(148, 163, 184, 0.12);
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  animation: trustFloat 4.5s ease-in-out infinite;
}

.trust-visual__item:nth-child(2) {
  animation-delay: 0.7s;
}

.trust-visual__item:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes trustFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.trust-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.trust-card--highlight {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.94));
  border-color: rgba(37, 99, 235, 0.16);
}

.trust-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.06));
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
}

.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.trust-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.trust-explainer p:last-child {
  margin-bottom: 0;
}

.trust-explainer {
  max-width: 980px;
  padding: 30px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.trust-explainer p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.trust-explainer__strong {
  font-weight: 800;
  color: var(--text) !important;
}

.trust-card:nth-child(1) {
  transition-delay: 0.04s;
}

.trust-card:nth-child(2) {
  transition-delay: 0.1s;
}

.trust-card:nth-child(3) {
  transition-delay: 0.16s;
}

/* =========================
   FAQ
========================= */

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -80px;
  top: 90px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-header {
  max-width: 760px;
}

.faq-heading {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.faq-title-accent {
  position: relative;
  display: inline;
  color: var(--primary);
}

.faq-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.22), rgba(46, 230, 166, 0.08));
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: faqUnderline 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes faqUnderline {
  to {
    transform: scaleX(1);
  }
}

.faq-lead {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq-item {
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.faq-item.active {
  border-color: rgba(46, 230, 166, 0.22);
  background: linear-gradient(180deg, rgba(46, 230, 166, 0.04), rgba(22, 29, 26, 0.96));
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--text-soft);
  line-height: 1.75;
}

.faq-answer p + p {
  margin-top: -4px;
}

/* =========================
   FINAL CTA
========================= */


.cta-final-section {
  position: relative;
  padding: 110px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(46, 230, 166, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(46, 230, 166, 0.08), transparent 20%),
    linear-gradient(180deg, #08110f 0%, #0b1412 100%);
  overflow: hidden;
}

.cta-final-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
  padding: 56px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(20, 27, 24, 0.9), rgba(14, 19, 17, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.cta-final-box__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cta-final-box__media {
  position: relative;
  z-index: 2;
}

.cta-final-box__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.cta-final-box__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  z-index: 1;
}

.cta-final-box__glow--1 {
  width: 260px;
  height: 260px;
  top: -70px;
  left: -40px;
  background: rgba(46, 230, 166, 0.14);
}

.cta-final-box__glow--2 {
  width: 220px;
  height: 220px;
  right: -30px;
  bottom: -60px;
  background: rgba(46, 230, 166, 0.1);
}

.cta-final-box__kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(46, 230, 166, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-final-box__title {
  margin: 0 0 18px;
  max-width: 14ch;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #ffffff;
}

.cta-final-box__title-accent {
  position: relative;
  display: inline;
  color: #7ef0c5;
}

.cta-final-box__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(90deg, rgba(126, 240, 197, 0.18), rgba(46, 230, 166, 0.3));
  border-radius: 999px;
  z-index: -1;
}

.cta-final-box__text {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cta-final-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #08110f;
  padding: 0 0 34px;
}

.footer-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.footer-brand {
  max-width: 420px;
}

.footer__text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 6px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* =========================
   BLOG / PAGE SUPPORT
========================= */

.page-hero {
  padding-top: 72px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero__lead {
  margin: 0 auto;
  max-width: 700px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.text-link {
  font-weight: 700;
  color: var(--primary-dark);
}

.blog-card,
.sidebar-box {
  background: var(--surface-strong);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.blog-card h2,
.blog-card h3,
.sidebar-box h2 {
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.blog-card__meta,
.article-meta {
  color: var(--primary-dark);
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article-main h1 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.article-content {
  margin-top: 28px;
  color: var(--text-soft);
}

.article-content h2,
.article-content h3 {
  color: var(--text);
  letter-spacing: -0.02em;
}

.article-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
}

.article-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.article-content ul {
  margin: 0;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1080px) {
  .problem-top,
  .include-top,
  .target-top,
  .addon-top,
  .trust-top {
    grid-template-columns: 1fr;
  }

  .problem-copy h2 {
    max-width: none;
  }

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

  .benefit-card,
  .benefit-card--featured {
    grid-column: span 6;
  }

  .include-card {
    grid-column: span 6;
  }

  .include-card--featured {
    grid-column: span 12;
  }

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

  .target-check-grid {
    grid-template-columns: 1fr;
  }

  .process-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .process-line {
    display: none;
  }

  .addon-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero__grid,
  .compare-grid,
  .pricing-grid,
  .problem-list,
  .addon-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .section {
    padding: 78px 0;
  }

  .hero-mockup__screen,
  .hero-laptop-mockup__screen {
    min-height: 280px;
  }

  .floating-badge {
    position: absolute;
    display: inline-flex;
    margin: 0;
    padding: 10px 12px;
    font-size: 0.82rem;
    animation: floatBadge 4s ease-in-out infinite;
  }

  .badge-1 {
    top: 56px;
    right: 10px;
  }

  .badge-2 {
    top: 116px;
    left: 10px;
  }

  .badge-3 {
    right: 10px;
    bottom: 84px;
  }

  .badge-4 {
    left: 10px;
    bottom: 20px;
  }

  .hero-mockup,
  .hero-laptop-mockup {
    display: flex;
    flex-direction: column;
  }

  .comparison-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .cta-final-section {
    padding: 90px 0 34px;
  }

  .cta-final-box {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 26px;
    border-radius: 26px;
  }

  .cta-final-box__title {
    max-width: none;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero__content h1,
  .page-hero h1,
  .article-main h1 {
    max-width: none;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .cta-final-box__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .benefits-premium-grid,
  .include-grid,
  .target-audience-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card--featured,
  .include-card,
  .include-card--featured {
    grid-column: auto;
  }

  .benefit-card__top,
  .include-card__top,
  .process-card__step {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-visual__image,
  .problem-visual__image img,
  .include-visual__image,
  .include-visual__image img,
  .target-visual__image,
  .target-visual__image img {
    min-height: 300px;
  }

  .problem-floating-card,
  .include-floating,
  .target-floating {
    position: absolute;
    display: inline-flex;
    margin: 0;
    padding: 10px 12px;
    font-size: 0.82rem;
    animation-duration: 4.5s;
  }

  .floating-card--1,
  .include-floating--1,
  .target-floating--1 {
    top: 14px;
    left: 10px;
  }

  .floating-card--2,
  .include-floating--2,
  .target-floating--2 {
    top: 82px;
    right: 10px;
  }

  .floating-card--3,
  .include-floating--3,
  .target-floating--3 {
    left: 12px;
    bottom: 14px;
  }

  .problem-visual,
  .include-visual,
  .target-visual {
    display: block;
  }

  .include-summary,
  .addon-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .target-check-wrapper,
  .trust-explainer {
    padding: 22px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px 18px;
  }

  .pricing-price__main {
    font-size: 2rem;
  }

  .pricing-price__main-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-nav {
    gap: 14px;
  }
}

.problem-lead,
.benefits-lead,
.include-lead,
.target-lead,
.process-lead,
.addon-lead,
.comparison-lead,
.trust-lead,
.faq-lead,
.problem-card p,
.benefit-card p,
.include-card p,
.target-audience-card p,
.process-card p,
.addon-card p:last-child,
.trust-card p,
.pricing-card__intro,
.pricing-price__note,
.pricing-price__compare,
.compare-card--negative .compare-list li,
.comparison-summary p,
.include-summary p,
.addon-footer p,
.section__header p,
.section__footer-text,
.footer__text,
.page-hero__lead,
.article-content {
  color: var(--text-soft);
}

.process-side-card,
.include-intro-card,
.target-intro-card,
.addon-intro-card,
.trust-explainer,
.target-check-wrapper,
.comparison-summary,
.include-summary,
.addon-footer,
.benefits-highlight {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.target-check-item,
.trust-visual__item,
.addon-visual__module {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.faq-icon::before,
.faq-icon::after,
.problem-card__icon,
.benefit-card__icon,
.include-card__icon,
.target-audience-card__icon,
.process-card__number,
.trust-card__icon {
  color: var(--primary);
}

.pricing-card--featured,
.compare-card--positive,
.cta-final-section {
  background-image: none;
}

.pricing-card--featured,
.compare-card--positive,
.cta-final-box {
  background: linear-gradient(180deg, #101816 0%, #0c1311 100%);
}

/* =========================================
   PATCH FINALE CONTRASTO / FEATURED / BADGE
   Da incollare in fondo al CSS
========================================= */

/* Variabili extra */
:root {
  --surface-2: #101715;
  --surface-3: #0d1412;
  --surface-featured: linear-gradient(180deg, #0f1d18 0%, #0b1311 100%);
  --surface-featured-strong: linear-gradient(180deg, #123126 0%, #0c1e18 100%);
  --pill-bg: rgba(255, 255, 255, 0.06);
  --pill-border: rgba(255, 255, 255, 0.1);
  --pill-text: var(--text);
  --accent-border: rgba(46, 230, 166, 0.28);
  --accent-soft-bg: rgba(46, 230, 166, 0.08);
  --accent-strong-bg: rgba(46, 230, 166, 0.14);
  --text-strong: #f4fbf8;
  --text-body: #c5d4ce;
  --text-dim: #99aca5;
}

/* Testi secondari */
.problem-lead,
.benefits-lead,
.include-lead,
.target-lead,
.process-lead,
.addon-lead,
.comparison-lead,
.trust-lead,
.faq-lead,
.problem-card p,
.benefit-card p,
.include-card p,
.target-audience-card p,
.process-card p,
.addon-card p:last-child,
.trust-card p,
.pricing-card__intro,
.pricing-price__note,
.pricing-price__compare,
.faq-answer p,
.include-summary p,
.addon-footer p,
.comparison-summary p,
.section__header p,
.section__footer-text,
.footer__text,
.page-hero__lead,
.article-content,
.process-side-card__text,
.include-intro-card p,
.target-intro-card p,
.addon-intro-card p,
.trust-explainer p,
.target-check-item p {
  color: var(--text-body);
}

/* Titoli */
.problem-copy h2,
.benefits-heading,
.include-heading,
.target-heading,
.process-heading,
.addon-heading,
.comparison-heading,
.trust-heading,
.faq-heading,
.section__header h2,
.pricing-card__header h3,
.compare-card h3,
.benefit-card h3,
.include-card h3,
.target-audience-card h3,
.process-card h3,
.trust-card h3,
.addon-card h3 {
  color: var(--text-strong);
}

/* Linee accent sotto i titoli: tutte verdi */
.hero-title-accent::after,
.problem-title-accent::after,
.benefits-title-accent::after,
.include-title-accent::after,
.target-title-accent::after,
.process-title-accent::after,
.addon-title-accent::after,
.comparison-title-accent::after,
.trust-title-accent::after,
.faq-title-accent::after,
.cta-final-box__title-accent::after {
  background: linear-gradient(90deg, rgba(46, 230, 166, 0.18), rgba(46, 230, 166, 0.34));
}

/* Pills / label / kicker */
.eyebrow,
.section-kicker,
.cta-final-box__kicker,
.compare-badge,
.pricing-badge,
.target-check-badge,
.include-summary__badge,
.addon-footer__pill,
.comparison-summary__pill {
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  color: var(--pill-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Badge accentati */
.eyebrow,
.cta-final-box__kicker,
.target-check-badge,
.include-summary__badge,
.addon-footer__pill,
.comparison-summary__pill,
.compare-badge--positive,
.pricing-badge {
  background: rgba(46, 230, 166, 0.1);
  border-color: rgba(46, 230, 166, 0.22);
  color: var(--text-strong);
}

/* Section kicker neutri ma leggibili */
.section-kicker,
.compare-badge--negative {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-body);
}

/* Floating badge sulle immagini */
.floating-badge,
.problem-floating-card,
.include-floating,
.target-floating {
  background: rgba(18, 24, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-strong);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

/* Card standard */
.problem-card,
.benefit-card,
.include-card,
.target-audience-card,
.process-card,
.addon-card,
.trust-card,
.faq-item,
.pricing-card,
.compare-card--negative {
  background: linear-gradient(180deg, rgba(16, 23, 21, 0.96), rgba(12, 18, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

/* Box informativi */
.problem-highlight,
.benefits-highlight,
.include-intro-card,
.target-intro-card,
.process-side-card,
.addon-intro-card,
.trust-explainer,
.target-check-wrapper,
.comparison-summary,
.include-summary,
.addon-footer {
  background: linear-gradient(180deg, rgba(18, 24, 22, 0.96), rgba(13, 18, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

/* Evita i box slavati chiari */
.problem-highlight,
.benefits-highlight,
.trust-explainer,
.target-check-wrapper {
  color: var(--text-body);
}

.problem-highlight strong,
.trust-explainer__strong {
  color: var(--text-strong) !important;
}

/* Card featured vere */
.benefit-card--featured,
.include-card--featured,
.trust-card--highlight {
  background: var(--surface-featured);
  border: 1px solid var(--accent-border);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

/* Pricing middle card: deve staccarsi davvero */
.pricing-card--featured {
  background: var(--surface-featured-strong);
  border: 1px solid rgba(46, 230, 166, 0.34);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(46, 230, 166, 0.08) inset;
  transform: translateY(-10px);
}

.pricing-card--featured .pricing-card__header h3,
.pricing-card--featured .pricing-price__main,
.pricing-card--featured .pricing-list li,
.pricing-card--featured .pricing-card__intro,
.pricing-card--featured .pricing-card__tag,
.pricing-card--featured .pricing-price__note {
  color: #ffffff;
}

/* Comparison: differenza netta */
.compare-card--negative {
  background: linear-gradient(180deg, rgba(17, 23, 21, 0.96), rgba(11, 16, 14, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
}

.compare-card--positive {
  background: var(--surface-featured-strong);
  border: 1px solid rgba(46, 230, 166, 0.3);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.compare-card--negative .compare-list li {
  color: var(--text-body);
}

.compare-card--positive .compare-list li {
  color: #f4fbf8;
}

/* Icone comparison */
.compare-icon--negative {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-body);
}

.compare-icon--positive {
  background: rgba(46, 230, 166, 0.12);
  color: #ffffff;
  border: 1px solid rgba(46, 230, 166, 0.18);
}

/* Pricing toggle molto più evidente */
.pricing-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-toggle__btn {
  color: var(--text-dim);
}

.pricing-toggle__btn.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-strong);
  border: 1px solid rgba(46, 230, 166, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

/* Icone e micro-box interni */
.problem-card__icon,
.benefit-card__icon,
.include-card__icon,
.target-audience-card__icon,
.process-card__number,
.trust-card__icon,
.addon-card__icon {
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.14), rgba(46, 230, 166, 0.06));
  color: var(--primary);
  border: 1px solid rgba(46, 230, 166, 0.08);
}

/* Process line */
.process-line {
  background: linear-gradient(
    90deg,
    rgba(46, 230, 166, 0.1),
    rgba(46, 230, 166, 0.38),
    rgba(46, 230, 166, 0.1)
  );
}

/* FAQ */
.faq-item.active {
  border-color: rgba(46, 230, 166, 0.22);
  background: linear-gradient(180deg, rgba(46, 230, 166, 0.05), rgba(14, 20, 18, 0.96));
}

.faq-icon::before,
.faq-icon::after {
  background: var(--primary);
}

/* Pannelli visuali laterali: no bianco */
.addon-visual__panel,
.trust-visual__panel {
  background: linear-gradient(180deg, rgba(16, 23, 21, 0.96), rgba(12, 18, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.addon-visual__module,
.trust-visual__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-strong);
}

/* CTA finale */
.cta-final-section {
  background:
    radial-gradient(circle at top left, rgba(46, 230, 166, 0.1), transparent 22%),
    radial-gradient(circle at top right, rgba(46, 230, 166, 0.06), transparent 20%),
    linear-gradient(180deg, #08110f 0%, #0b1412 100%);
}

.cta-final-box {
  background: linear-gradient(135deg, rgba(18, 24, 22, 0.96), rgba(12, 17, 15, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cta-final-box__glow--1 {
  background: rgba(46, 230, 166, 0.12);
}

.cta-final-box__glow--2 {
  background: rgba(46, 230, 166, 0.08);
}

.cta-final-box__title-accent {
  color: #7ef0c5;
}

/* Footer */
.site-footer {
  background: #08110f;
}

/* Menu mobile */
@media (max-width: 900px) {
  .main-nav {
    background: rgba(16, 23, 21, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* =========================
   BLOG PAGE
========================= */

.blog-hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 36px;
}

.blog-hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: 40px;
  right: -80px;
  background: rgba(46, 230, 166, 0.08);
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
}

.blog-hero .container,
.blog-section .container {
  position: relative;
  z-index: 1;
}

.blog-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.blog-hero__content h1 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--text);
}

.blog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-featured-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22, 29, 26, 0.96), rgba(14, 19, 17, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
}

.blog-featured-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f1513;
}

.blog-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.blog-featured-card:hover .blog-featured-card__image img {
  transform: scale(1.04);
}

.blog-featured-card__body {
  padding: 24px;
}

.blog-featured-card__body h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.blog-featured-card__body h2 a:hover {
  color: var(--primary);
}

.blog-featured-card__body p:last-of-type {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.75;
}

.blog-section {
  padding-top: 32px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.blog-main {
  min-width: 0;
}

.blog-sidebar {
  position: sticky;
  top: 110px;
}

.blog-list-header {
  margin-bottom: 26px;
}

.blog-list-header h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.blog-grid--enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 29, 26, 0.96), rgba(14, 19, 17, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 230, 166, 0.24);
  box-shadow: var(--shadow-strong);
}

.blog-card--large {
  grid-column: span 2;
}

.blog-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f1513;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}

.blog-card__content {
  padding: 24px;
}

.blog-card__meta {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.75;
}

.blog-sidebar__box {
  margin-bottom: 22px;
  background: linear-gradient(180deg, rgba(22, 29, 26, 0.96), rgba(14, 19, 17, 0.98));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.blog-sidebar__box h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.blog-sidebar__box p {
  color: var(--text-soft);
  line-height: 1.75;
}

.blog-sidebar__image {
  margin: -28px -28px 18px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  aspect-ratio: 16 / 10;
  background: #0f1513;
}

.blog-sidebar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(46, 230, 166, 0.08);
  border: 1px solid rgba(46, 230, 166, 0.14);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.blog-category:hover {
  background: rgba(46, 230, 166, 0.14);
  border-color: rgba(46, 230, 166, 0.28);
  color: var(--primary);
}

.sidebar-post {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: start;
}

.sidebar-post + .sidebar-post {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sidebar-post__thumb {
  display: block;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 16px;
  background: #0f1513;
  border: 1px solid var(--border);
}

.sidebar-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post__content .blog-card__meta {
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.sidebar-post__content a {
  display: inline-block;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.sidebar-post__content a:hover {
  color: var(--primary);
}

/* CTA BLOG */
.cta-box {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 23, 20, 0.98), rgba(14, 19, 17, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.cta-box p {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
  line-height: 1.75;
}

.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* BLOG FOOTER FIX */
.footer-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.footer-brand {
  max-width: 420px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 6px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* =========================
   BLOG RESPONSIVE
========================= */

@media (max-width: 1080px) {
  .blog-hero__grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 900px) {
  .blog-grid--enhanced {
    grid-template-columns: 1fr;
  }

  .blog-card--large {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .blog-hero {
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .blog-featured-card__body,
  .blog-card__content,
  .cta-box,
  .blog-sidebar__box {
    padding: 22px;
  }

  .blog-sidebar__image {
    margin: -22px -22px 16px;
  }

  .sidebar-post {
    grid-template-columns: 64px 1fr;
  }

  .sidebar-post__thumb {
    width: 64px;
    height: 64px;
  }

  .cta-box__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.blog-category.is-active {
  background: rgba(46, 230, 166, 0.16);
  border-color: rgba(46, 230, 166, 0.32);
  color: var(--primary);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.blog-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.blog-pagination__link:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 230, 166, 0.28);
  color: var(--primary);
}

.blog-pagination__link.is-active {
  background: var(--primary);
  color: #08110e;
  border-color: var(--primary);
}

.blog-card__meta a,
.sidebar-post__content .blog-card__meta a {
  color: inherit;
}

.blog-card__meta a:hover,
.sidebar-post__content .blog-card__meta a:hover {
  color: var(--primary);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(420px, calc(100vw - 24px));
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(14, 18, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

.cookie-banner__title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.cookie-banner__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--primary);
  font-weight: 700;
}

.cookie-banner__preferences-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.cookie-banner__preferences {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-pref-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.cookie-pref-row__title {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.cookie-pref-row__desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.cookie-pref-row__always-on {
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.cookie-pref-toggle {
  width: 42px;
  height: 24px;
  accent-color: #2ee6a6;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap-reverse;
  gap: 10px;
}

.cookie-banner__btn {
  min-height: 44px;
  padding: 0 14px;
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-pref-row {
    align-items: flex-start;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1 1 100%;
  }
}