/* ===========================
   THRIVE ECOMMERCE — STYLES
   Black & Green. Growth.
   =========================== */

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

:root {
  --black: #0A0A0A;
  --green: #37ed61;
  --green-dim: rgba(55, 237, 97, 0.12);
  --green-glow: rgba(55, 237, 97, 0.25);
  --white: #FFFFFF;

  --text: #E8E8E8;
  --muted: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(55, 237, 97, 0.25);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--green);
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(55, 237, 97, 0.3);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--white);
}

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.3px;
}

.btn--accent {
  background-color: var(--green);
  color: var(--black);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(55, 237, 97, 0.15);
}

.btn--accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: none;
}

.btn--accent:hover::after {
  animation: btnShine 0.6s ease forwards;
}

@keyframes btnShine {
  to { left: 120%; }
}

.btn--accent:hover {
  background-color: #4dff75;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--green-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--lg { padding: 18px 48px; font-size: 15px; width: 100%; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--white);
  transition: filter 0.3s ease;
}

.nav__logo:hover {
  filter: drop-shadow(0 0 8px var(--green-glow));
}

.nav__logo:hover .logo-icon {
  filter: drop-shadow(0 0 12px var(--green));
}

/* Logo icon & accent */
.logo-icon {
  width: 22px;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

.logo-text {
  color: var(--white);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav__link:hover { color: var(--green); }

.nav__link--active {
  color: var(--green) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(55, 237, 97, 0.08) 0%, rgba(55, 237, 97, 0.03) 40%, transparent 70%);
  filter: blur(60px);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero__gradient::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -15%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(97, 55, 237, 0.07) 0%, rgba(97, 55, 237, 0.02) 40%, transparent 70%);
  filter: blur(60px);
  animation: glowPulse2 10s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.05) translateY(-10px); }
}

@keyframes glowPulse2 {
  0%, 100% { opacity: 0.5; transform: scale(1) translateY(0); }
  50% { opacity: 0.9; transform: scale(1.08) translateY(10px); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--green); }
  50% { box-shadow: 0 0 24px var(--green), 0 0 48px var(--green-dim); }
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  margin-bottom: 28px;
}

.hero__title-line {
  display: block;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: -3px;
  color: var(--white);
  opacity: 0;
  transform: translateY(-30px);
  animation: dropIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.3s; }
.hero__title-line:nth-child(3) { animation-delay: 0.5s; }

@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero__title-line--accent {
  color: var(--green);
}

.hero__rotate {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.1em;
}

.hero__rotate-word {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__rotate:not(.js-ready) .hero__rotate-word:first-child {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero__rotate-word.active {
  opacity: 1;
  transform: translateY(0);
}

.hero__rotate-word.exit {
  opacity: 0;
  transform: translateY(-100%);
}

.hero__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
}

/* Hero Visual — Brand Card */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__brand-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) rotateY(-4deg);
  animation: cardIn 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.3s ease;
  will-change: transform;
}

.hero__brand-card:hover {
  border-color: var(--border-hover);
}

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0) rotateY(0); }
}

/* Header bar */
.brand-card__header {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-card__dots {
  display: flex;
  gap: 6px;
}

.brand-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.brand-card__dots span:first-child { background: rgba(255, 75, 75, 0.5); }
.brand-card__dots span:nth-child(2) { background: rgba(255, 200, 50, 0.5); }
.brand-card__dots span:nth-child(3) { background: rgba(55, 237, 97, 0.5); }

.brand-card__header-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-card__header-period {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  margin-left: auto;
  padding-left: 12px;
}

/* Hero metric (Total sales) */
.brand-card__hero-metric {
  padding: 18px 20px 12px;
  opacity: 0;
  animation: sectionFade 0.6s 0.6s ease forwards;
}

.brand-card__hero-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.brand-card__hero-value {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}

/* Metrics grid */
.brand-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  opacity: 0;
  animation: sectionFade 0.6s 1.8s ease forwards;
}

.brand-card__metric {
  padding: 14px 16px;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.3s ease;
}

.brand-card__metric:hover {
  background: rgba(55, 237, 97, 0.04);
}

.brand-card__metric-label {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.3;
  font-weight: 400;
}

.brand-card__metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-card__metric-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 2px;
}

.brand-card__metric-tag--up {
  background: rgba(55, 237, 97, 0.12);
  color: var(--green);
}

/* Sections */
.brand-card__section {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  opacity: 0;
}

.brand-card__section:nth-child(3) { animation: sectionFade 0.6s 1.0s ease forwards; }
.brand-card__section:nth-child(5) { animation: sectionFade 0.6s 2.2s ease forwards; }

@keyframes sectionFade {
  to { opacity: 1; }
}

.brand-card__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Chart */
.brand-card__chart {
  height: 70px;
  position: relative;
}

.brand-card__chart-svg {
  width: 100%;
  height: 100%;
}

.brand-card__chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 1.5s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-card__chart-area {
  opacity: 0;
  animation: fadeIn 0.8s 2.0s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Top products */
.brand-card__products {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.brand-card__product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
}

.brand-card__product-row:last-child {
  border-bottom: none;
}

.brand-card__product-rank {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  width: 16px;
  text-align: center;
}

.brand-card__product-name {
  font-size: 11px;
  color: var(--text);
  font-weight: 400;
  flex: 1;
}

.brand-card__product-sales {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}


.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===========================
   MARQUEE
   =========================== */
.marquee {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--black);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  white-space: nowrap;
}

.marquee__content span {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee__dot {
  width: 4px !important;
  height: 4px;
  border-radius: 50%;
  background: var(--green) !important;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   BENTO GRID
   =========================== */
.bento {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.bento::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(55, 237, 97, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: glowPulse 10s ease-in-out infinite;
}

.bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.bento__card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.02);
}

.bento__card:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(55, 237, 97, 0.1), 0 0 20px rgba(55, 237, 97, 0.04);
}

/* Large card — spans 2 cols */
.bento__card--large {
  grid-column: span 2;
  padding: 56px 48px;
}

.bento__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.bento__card-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

/* Stat card */
.bento__card--stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: var(--green-dim);
  border-color: rgba(55, 237, 97, 0.15);
}

.bento__card--stat:hover {
  border-color: rgba(55, 237, 97, 0.35);
}

.bento__stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 12px;
}

.bento__stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Dark service cards */
.bento__card--dark {
  padding: 36px 28px;
}

.bento__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-dim);
  border: 1px solid rgba(55, 237, 97, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento__card--dark:hover .bento__icon {
  box-shadow: 0 0 20px var(--green-dim), 0 0 40px rgba(55, 237, 97, 0.06);
  transform: scale(1.08);
}

.bento__card--dark h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.bento__card--dark p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===========================
   SERVICES — ACCORDION
   =========================== */
.services {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 35%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(55, 237, 97, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: glowPulse2 12s ease-in-out infinite;
}

.services__list {
  display: flex;
  flex-direction: column;
}

.services__item {
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 0;
}

.services__item:first-child {
  border-top: 1px solid var(--border);
}

.services__item:hover {
  padding-left: 16px;
  box-shadow: inset 0 0 30px rgba(55, 237, 97, 0.03);
}

.services__item.active {
  border-left-color: var(--green);
  padding-left: 16px;
  background: rgba(55, 237, 97, 0.02);
}

.services__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  cursor: pointer;
  transition: padding 0.4s ease;
}

.services__item.active .services__item-header {
  padding-bottom: 20px;
}

.services__item-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.services__item-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  transition: color 0.3s ease;
}

.services__item:hover .services__item-title {
  color: var(--green);
}

.services__item-right {
  display: flex;
  align-items: center;
  gap: 24px;
}


.services__item-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s ease;
}

.services__item.active .services__item-toggle {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
  transform: rotate(45deg);
}

.services__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.services__item.active .services__item-body {
  max-height: 200px;
}

.services__item-content {
  padding-bottom: 36px;
  padding-left: 0;
}

.services__item-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 20px;
}

.services__item-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: letter-spacing 0.3s ease;
}

.services__item-link:hover {
  letter-spacing: 1px;
}

/* ===========================
   ABOUT — SPLIT LAYOUT
   =========================== */
.about {
  padding: 140px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -2px;
}

.about__text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.about__diffs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__diff {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__diff-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 7px;
  box-shadow: 0 0 12px var(--green-dim);
}

.about__diff p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* ===========================
   PROCESS
   =========================== */
.process {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(55, 237, 97, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: glowPulse 14s ease-in-out infinite;
}

.process__track {
  position: relative;
}

.process__line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

.process__line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), rgba(55, 237, 97, 0.6));
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px var(--green-glow), 0 0 6px var(--green);
  border-radius: 2px;
  position: relative;
}

.process__line-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green), 0 0 40px var(--green-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process__line-fill.animating::after {
  opacity: 1;
  animation: lineGlow 0.6s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  from { box-shadow: 0 0 16px var(--green), 0 0 40px var(--green-glow); }
  to { box-shadow: 0 0 24px var(--green), 0 0 60px var(--green-glow); }
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process__step {
  padding-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step.active {
  opacity: 1;
  transform: translateY(0);
}

/* Dot */
.process__step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--border);
  margin-bottom: 28px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.process__step.active .process__step-dot {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 20px var(--green-dim), 0 0 40px rgba(55, 237, 97, 0.08);
}

/* Ping ripple */
.process__step-ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--green);
  opacity: 0;
  pointer-events: none;
}

.process__step.active .process__step-ping {
  animation: dotPing 1.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes dotPing {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Step card */
.process__step-card {
  padding: 28px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step.active .process__step-card {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.process__step.active:hover .process__step-card {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
}

/* Icon */
.process__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(55, 237, 97, 0);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step.active .process__step-icon {
  background: var(--green-dim);
  border-color: rgba(55, 237, 97, 0.15);
  color: var(--green);
}

.process__step-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.process__step.active .process__step-title {
  opacity: 1;
}

.process__step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.5s ease 0.15s;
}

.process__step.active .process__step-desc {
  opacity: 1;
}


/* ===========================
   PRICING HERO
   =========================== */
.pricing-hero {
  padding: 160px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.pricing-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* ===========================
   PRICING CTA
   =========================== */
.pricing-cta {
  padding: 120px 0;
  background: var(--black);
}

.pricing-cta__inner {
  text-align: center;
  padding: 64px 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-cta__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.pricing-cta__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 32px;
}

/* ===========================
   PRICING CARDS
   =========================== */
.pricing {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

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

.pricing__card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(55, 237, 97, 0.1), 0 0 20px rgba(55, 237, 97, 0.04);
}

.pricing__card--featured {
  border-color: var(--green);
  background: rgba(55, 237, 97, 0.04);
  padding-top: 52px;
}

.pricing__card--featured:hover {
  border-color: var(--green);
  box-shadow: 0 16px 60px rgba(55, 237, 97, 0.12);
}

.pricing__card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 8px 8px;
}

.pricing__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing__card-name {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.pricing__card-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing__price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing__card--featured .pricing__price-amount {
  color: var(--green);
}

.pricing__card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 300;
}

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.pricing__features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
}

.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.pricing__turnaround {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 24px;
}

.pricing__cta {
  width: 100%;
  margin-top: auto;
}

/* ===========================
   ABOUT — Tabs & Panels
   =========================== */
.about__tabs {
  display: flex;
  gap: 4px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 4px;
  border: 1px solid var(--border);
}

.about__tab {
  flex: 1;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: none;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about__tab:hover {
  color: var(--white);
}

.about__tab.active {
  background: var(--green);
  color: var(--black);
}

.about__panel {
  display: none;
  animation: panelFade 0.35s ease;
}

.about__panel.active {
  display: block;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   ABOUT — Founder & Scope
   =========================== */
.about__founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.about__founder-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__founder-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about__founder-name:hover {
  color: var(--green);
}

.about__linkedin-icon {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  vertical-align: middle;
  margin-left: 6px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.about__founder-name:hover .about__linkedin-icon {
  opacity: 1;
}

.about__founder-role {
  font-size: 13px;
  color: var(--muted);
}

.about__scope {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ===========================
   WHO IT'S FOR — Tags
   =========================== */
.audience__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.audience__tag {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.audience__tag:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ===========================
   BLOG PREVIEW
   =========================== */
.blog-preview {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.blog-preview__card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-preview__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(55, 237, 97, 0.1), 0 0 20px rgba(55, 237, 97, 0.04);
}

.blog-preview__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.blog-preview__card-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-preview__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.blog-preview__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  transition: opacity 0.2s;
}

.blog-preview__card:hover .blog-preview__link {
  opacity: 0.8;
}

.blog-preview__more {
  text-align: center;
  margin-top: 40px;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.faq__grid {
  max-width: 720px;
  margin: 56px auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question-text {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  padding-right: 24px;
}

.faq__question-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq__item.active .faq__question-icon {
  transform: rotate(45deg);
  color: var(--green);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT — WIZARD FORM
   =========================== */
.contact {
  position: relative;
  padding: 120px 0;
  background: #050505;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.contact__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.contact__header {
  text-align: center;
  margin-bottom: 56px;
}

.contact__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 0;
}

.contact__alt {
  text-align: center;
  margin-top: 40px;
}

.contact__alt p {
  font-size: 14px;
  color: var(--muted);
}

.contact__alt a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}

.contact__alt a:hover {
  border-color: var(--green);
}

/* --- Wizard --- */
.wizard {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.wizard__progress {
  position: relative;
  margin-bottom: 48px;
}

.wizard__progress-bar {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.wizard__progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33.33%;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px var(--green-glow);
}

.wizard[data-step="2"] .wizard__progress-bar::after { width: 66.66%; }
.wizard[data-step="3"] .wizard__progress-bar::after { width: 100%; }

.wizard__steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.wizard__step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.4s ease;
}

.wizard__step-dot.active {
  border-color: var(--green);
  color: var(--black);
  background: var(--green);
  box-shadow: 0 0 20px var(--green-dim);
}

.wizard__step-dot.done {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}

/* Panels */
.wizard__panel {
  display: none;
  animation: panelIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard__panel.active {
  display: block;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard__question {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.wizard__hint {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 300;
}

.wizard__auto-hint {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 24px;
  font-weight: 400;
}

/* Option Cards */
.wizard__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.wizard__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wizard__option-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.02);
}

.wizard__option-box:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.wizard__option input:checked + .wizard__option-box {
  border-color: var(--green);
  background: var(--green-dim);
  box-shadow: 0 0 30px rgba(55, 237, 97, 0.08);
}

.wizard__option-icon {
  color: var(--muted);
  transition: color 0.3s ease;
}

.wizard__option input:checked + .wizard__option-box .wizard__option-icon {
  color: var(--green);
}

.wizard__option-label {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.wizard__option-desc {
  font-size: 13px;
  color: var(--muted);
}

/* Textarea Step */
.wizard__textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 200px;
}

.wizard__textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.wizard__textarea:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.wizard__textarea-wrap {
  margin-bottom: 40px;
}

/* Details Step */
.wizard__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.wizard__fields .form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.wizard__fields .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.wizard__fields .form-group input:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--green-dim);
}

/* Nav buttons */
.wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard__nav .btn--lg {
  width: auto;
  padding: 16px 48px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 48px 0 100px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--white);
}

.footer__logo .logo-icon {
  width: 18px;
  margin-right: 8px;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s ease;
  position: relative;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}

.footer__links a:hover { color: var(--white); }

.footer__links a:hover::after { width: 100%; }

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s ease;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__social a:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(55, 237, 97, 0.12);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer__legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal:hover {
  color: var(--green);
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  backdrop-filter: blur(16px);
  z-index: 9999;
  max-width: 600px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner .btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner p a {
  color: var(--green);
  text-decoration: none;
}

.cookie-banner p a:hover {
  text-decoration: underline;
}

/* ===========================
   MODAL
   =========================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.modal__content {
  position: relative;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.modal__close:hover {
  color: var(--white);
}

.modal__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.modal__sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.modal__input,
.modal__textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.modal__input:focus,
.modal__textarea:focus {
  outline: none;
  border-color: var(--green);
}

.modal__input::placeholder,
.modal__textarea::placeholder {
  color: var(--muted);
}

.modal__textarea {
  resize: vertical;
  min-height: 80px;
}

.modal__submit {
  width: 100%;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }

  .hero__brand-card {
    width: 320px;
    margin: 0 auto;
  }

  /* Fix brand card metrics visibility on tablet */
  .brand-card__hero-metric,
  .brand-card__section,
  .brand-card__metrics {
    opacity: 1;
    animation: none;
  }

  .brand-card__chart-line {
    stroke-dashoffset: 0;
    animation: none;
  }

  .brand-card__chart-area {
    opacity: 1;
    animation: none;
  }


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

  .bento__card--large { grid-column: span 2; }
  .pricing__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing__card--featured {
    grid-column: span 2;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }


  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process__line { display: none; }

  .process__step {
    opacity: 1;
    transform: none;
  }

  .process__step-card {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
  }

  .process__step-icon {
    background: var(--green-dim);
    border-color: rgba(55, 237, 97, 0.15);
    color: var(--green);
  }

  .process__step-title { opacity: 1; }
  .process__step-desc { opacity: 1; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav__menu.active { right: 0; }

  .nav__menu .nav__link {
    font-size: 22px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    color: var(--white);
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) { opacity: 0; }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__container { padding-top: 120px; }

  .hero__title-line {
    letter-spacing: -2px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn { width: 100%; max-width: 260px; }

  /* Brand card mobile */
  .hero__brand-card {
    width: 100%;
    max-width: 320px;
  }

  .brand-card__hero-metric,
  .brand-card__section,
  .brand-card__metrics {
    opacity: 1;
    animation: none;
  }

  .brand-card__chart-line {
    stroke-dashoffset: 0;
    animation: none;
  }

  .brand-card__chart-area {
    opacity: 1;
    animation: none;
  }

  /* About section mobile */
  .about__founder-name {
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .about__title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .about__diffs {
    gap: 12px;
  }

  .about__tabs {
    justify-content: center;
  }

  .audience__tags {
    justify-content: center;
  }

  /* Blog preview mobile */
  .blog-preview__card {
    padding: 24px 20px;
  }

  .blog-preview__card-title {
    font-size: 16px;
  }

  /* Contact / wizard mobile */
  .contact__title {
    font-size: clamp(28px, 5vw, 44px);
  }

  .wizard__question {
    font-size: 20px;
  }

  .wizard__textarea {
    font-size: 16px;
  }

  .wizard__fields .form-group input {
    font-size: 16px;
  }

  /* FAQ mobile */
  .faq__question-text {
    font-size: 15px;
  }

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

  .bento__card--large,
  .bento__card { padding: 32px 24px; }

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

  .pricing__card--featured {
    grid-column: span 1;
  }

  .bento,
  .services,
  .about,
  .process,
  .pricing,
  .contact,
  .blog-preview,
  .faq {
    padding: 80px 0;
  }

  .blog-preview__grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-header { margin-bottom: 40px; }

  .services__item-left { gap: 16px; }

  .services__item-content { padding-left: 0; }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process__step-dot { display: none; }

  .process__step-card { padding: 24px 20px; }

  .footer__top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .modal__content {
    padding: 32px 20px;
    width: 95%;
    max-height: 85vh;
  }

  .modal__title {
    font-size: 20px;
  }

  .modal__input,
  .modal__textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    bottom: 12px;
    padding: 14px 20px;
  }

  .pricing-cta__inner {
    padding: 40px 24px;
  }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero__title-line { font-size: 38px; letter-spacing: -1.5px; }
  .hero__brand-card { width: 280px; }
  .services__item-title { font-size: 22px; }

  .modal__content {
    padding: 24px 16px;
  }
}
