/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0B0B0B;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --accent: #00FFD1;
  --accent-dim: rgba(0, 255, 209, 0.15);
  --accent-glow: rgba(0, 255, 209, 0.3);
  --text: #FFFFFF;
  --text-secondary: #A0A0A0;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 255, 209, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Subtle grid overlay ===== */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,255,209,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,209,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== Ambient radial glow on body ===== */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 10%, rgba(0,255,209,0.03), transparent),
    radial-gradient(ellipse 500px 500px at 85% 50%, rgba(0,255,209,0.02), transparent),
    radial-gradient(ellipse 600px 300px at 50% 90%, rgba(0,255,209,0.025), transparent);
}

/* Ensure all sections are above bg layers */
.header, main, footer, .fab, .mobile-menu {
  position: relative;
  z-index: 1;
}

/* ===== Mobile hint banner ===== */
.mobile-hint {
  display: none;
}

@media (max-width: 768px) {
  .mobile-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 16px;
    left: 12px;
    right: 12px;
    z-index: 9999;
    padding: 12px 16px;
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(0, 255, 209, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    animation: mobileHintSlide 0.5s ease-out;
  }
  .mobile-hint.hidden {
    display: none;
  }
  .mobile-hint__icon {
    font-size: 20px;
    flex-shrink: 0;
  }
  .mobile-hint__text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
  }
  .mobile-hint__close {
    flex-shrink: 0;
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    transition: color 0.2s;
  }
  .mobile-hint__close:hover {
    color: var(--accent);
  }
  @keyframes mobileHintSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ========== Reveal Animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========== Pulse Dot ========== */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(2); }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn--xl {
  padding: 18px 40px;
  font-size: 18px;
}

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

.btn--primary:hover {
  background: #00e6bc;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--primary:active {
  transform: translateY(0);
}

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

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo__bracket {
  color: var(--accent);
}

.logo__accent {
  color: var(--accent);
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

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

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  background: var(--accent);
  color: var(--bg);
}

.header__cta:hover {
  background: #00e6bc;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ========== Mobile Menu ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.mobile-menu__link:hover {
  color: var(--accent);
}

.mobile-menu__btn {
  margin-top: 12px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 36px;
  font-size: 16px;
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 255, 209, 0.2);
  border-radius: 100px;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 32px;
  animation: heroBadgeIn 0.8s ease both 0.2s;
}

@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 800px;
  animation: heroTitleIn 1s ease both 0.4s;
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero__typed-word {
  position: relative;
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.7;
  animation: heroFadeIn 1s ease both 0.6s;
}

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

/* Social proof line */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  animation: heroFadeIn 1s ease both 0.8s;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero__proof-item strong {
  color: var(--text);
  font-weight: 600;
}

.hero__proof-sep {
  color: rgba(255,255,255,0.15);
  font-size: 18px;
  line-height: 1;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  animation: heroFadeIn 1s ease both 1s;
}

.hero__cta-main {
  position: relative;
  overflow: hidden;
}

.hero__cta-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
  animation: heroShimmer 3s ease-in-out infinite 2s;
}

@keyframes heroShimmer {
  0% { left: -100%; }
  30% { left: 120%; }
  100% { left: 120%; }
}

/* Scroll hint */
.hero__scroll-hint {
  margin-top: 48px;
  animation: heroFadeIn 1s ease both 1.4s;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  margin-top: 6px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
}

/* Floating tech orbs */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  padding: 8px 16px;
  background: rgba(0,255,209,0.04);
  border: 1px solid rgba(0,255,209,0.12);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,255,209,0.4);
  letter-spacing: 1px;
  opacity: 0;
  animation: orbFloat 8s ease-in-out infinite, orbAppear 1s ease both;
}

.hero__orb--1 { top: 18%; left: 8%; animation-delay: 1.5s, 1.5s; }
.hero__orb--2 { top: 28%; right: 10%; animation-delay: 2s, 2s; animation-duration: 9s, 1s; }
.hero__orb--3 { bottom: 30%; left: 6%; animation-delay: 2.5s, 2.5s; animation-duration: 7s, 1s; }
.hero__orb--4 { bottom: 22%; right: 7%; animation-delay: 3s, 3s; animation-duration: 10s, 1s; }
.hero__orb--5 { top: 50%; left: 14%; animation-delay: 3.5s, 3.5s; animation-duration: 8.5s, 1s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(2deg); }
  75% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes orbAppear {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

/* Particles */
.hero__particles {
  position: absolute;
  inset: 0;
}

.hero__particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift 6s linear infinite;
}

.hero__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 0.8s; animation-duration: 7s; }
.hero__particles span:nth-child(3) { left: 45%; top: 30%; animation-delay: 1.6s; animation-duration: 5s; }
.hero__particles span:nth-child(4) { left: 65%; top: 70%; animation-delay: 2.4s; animation-duration: 8s; }
.hero__particles span:nth-child(5) { left: 80%; top: 25%; animation-delay: 3.2s; animation-duration: 6s; }
.hero__particles span:nth-child(6) { left: 90%; top: 55%; animation-delay: 4s; animation-duration: 7.5s; }
.hero__particles span:nth-child(7) { left: 35%; top: 80%; animation-delay: 4.8s; animation-duration: 5.5s; }
.hero__particles span:nth-child(8) { left: 55%; top: 15%; animation-delay: 5.6s; animation-duration: 6.5s; }

@keyframes particleDrift {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-80px) scale(0.5); }
}

.hero__example {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 12px 24px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero__example-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__timer {
  text-align: center;
}

.hero__timer-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Hero BG */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,209,0.12) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(80px);
  animation: glowPulse 6s ease-in-out infinite;
}

.hero__glow--second {
  top: auto;
  bottom: -30%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,100,255,0.06) 0%, transparent 70%);
  animation-delay: 3s;
  opacity: 0.4;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scale(1.08); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ========== Section ========== */
.section {
  padding: 100px 0;
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 60px;
}

/* ========== Metrics / Social Proof ========== */
.metrics {
  padding: 56px 0 64px;
  position: relative;
}

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

.metrics__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  overflow: hidden;
}

.metrics__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s, width 0.35s;
}

.metrics__card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 32px rgba(0, 255, 209, 0.06);
  transform: translateY(-2px);
}

.metrics__card:hover::before {
  opacity: 1;
  width: 60%;
}

.metrics__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
}

.metrics__data {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.metrics__value {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.metrics__suffix {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--accent);
  opacity: 0.7;
}

.metrics__label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  max-width: 200px;
}

/* ========== About ========== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__content .section__label {
  text-align: left;
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__text strong {
  color: var(--accent);
  font-weight: 600;
}

.about__stack {
  margin-top: 28px;
}

.about__stack-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: block;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__tag {
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 255, 209, 0.15);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.about__highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
}

.about__highlight-card strong {
  font-family: var(--font-heading);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.about__highlight-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========== Who For ========== */
.whofor .section__label,
.whofor .section__title,
.whofor .section__subtitle {
  text-align: center;
}

.whofor .section__subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Marquee wrapper */
.whofor__marquee-wrap {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.whofor__marquee {
  display: flex;
  width: max-content;
}

.whofor__marquee-track {
  display: flex;
  gap: 12px;
  padding-right: 12px;
  animation: marquee-left 38s linear infinite;
}

.whofor__marquee[data-direction="right"] .whofor__marquee-track {
  animation-name: marquee-right;
  animation-duration: 42s;
}

.whofor__marquee:nth-child(3) .whofor__marquee-track {
  animation-duration: 32s;
}

.whofor__marquee:nth-child(4) .whofor__marquee-track {
  animation-duration: 36s;
}

/* Pause on hover */
.whofor__marquee-wrap:hover .whofor__marquee-track {
  animation-play-state: paused;
}

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

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

/* Tags */
.whofor__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
  white-space: nowrap;
  cursor: default;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.whofor__tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 255, 209, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 209, 0.15), inset 0 0 12px rgba(0, 255, 209, 0.04);
  transform: translateY(-2px);
}

/* Bottom CTA */
.whofor__bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(0, 255, 209, 0.08), rgba(0, 255, 209, 0.02));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
}

.whofor__bottom::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.1), transparent 70%);
  pointer-events: none;
}

.whofor__bottom::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.05), transparent 70%);
  pointer-events: none;
}

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

.whofor__bottom-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.whofor__bottom-text p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.whofor__bottom-sub {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  margin-top: 6px;
  max-width: 440px;
}

.whofor__bottom-btn {
  flex-shrink: 0;
}

/* ========== Advantages ========== */
.advantages .section__label,
.advantages .section__title,
.advantages .section__subtitle {
  text-align: center;
}

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

/* Advantage Card */
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s, transform 0.35s, box-shadow 0.35s;
}

/* Full-width card spans all 3 columns */
.adv-card--full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  background: linear-gradient(135deg, rgba(0,255,209,0.06), rgba(0,255,209,0.01));
  border-color: var(--border-hover);
}

.adv-card--full .adv-card__num {
  grid-column: 1;
  grid-row: 1;
}

.adv-card--full .adv-card__icon {
  grid-column: 1;
  grid-row: 2 / 4;
  align-self: start;
}

.adv-card--full .adv-card__title {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}

.adv-card--full .adv-card__text {
  grid-column: 2;
  grid-row: 3;
  max-width: 600px;
}

/* Top gradient line (hidden by default) */
.adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

/* Corner glow */
.adv-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,255,209,0.07), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.adv-card--full::before {
  opacity: 1;
}

.adv-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.adv-card:hover::after {
  opacity: 1;
}

/* Number marker */
.adv-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.adv-card:hover .adv-card__num {
  opacity: 0.8;
}

/* Icon */
.adv-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(0,255,209,0.1);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--accent);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.adv-card:hover .adv-card__icon {
  background: rgba(0,255,209,0.12);
  border-color: rgba(0,255,209,0.25);
  box-shadow: 0 0 20px rgba(0,255,209,0.1);
}

/* Title */
.adv-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

/* Text */
.adv-card__text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* Accent bottom line inside full-width card */
.adv-card__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,209,0.2), transparent);
  grid-column: 1 / -1;
}

/* ========== Showcase ========== */
.showcase {
  overflow: hidden;
}

.showcase__feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.showcase__feature:last-of-type {
  border-bottom: none;
}

.showcase__feature--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.showcase__feature--reverse > :first-child {
  order: 2;
}

.showcase__feature--reverse > :last-child {
  order: 1;
}

.showcase__feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(0,255,209,0.15);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.showcase__feature-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.showcase__feature-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase__feature-desc strong {
  color: var(--accent);
  font-weight: 600;
}

.showcase__feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase__feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.showcase__feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Device Mockups */
.showcase__devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  perspective: 1000px;
}

.showcase__device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.showcase__device-frame {
  background: #1a1a1a;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: var(--transition-slow);
}

.showcase__device:hover .showcase__device-frame {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(0,255,209,0.08);
}

.showcase__device--desktop .showcase__device-frame {
  width: 320px;
  border-radius: 12px;
}

.showcase__device--tablet .showcase__device-frame {
  width: 180px;
  border-radius: 14px;
}

.showcase__device--phone .showcase__device-frame--phone {
  width: 110px;
  border-radius: 20px;
  border-width: 3px;
}

.showcase__device-notch {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: #111;
  border-bottom: 1px solid var(--border);
}

.showcase__device-notch span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.showcase__device-notch span:nth-child(1) { background: #ff5f57; }
.showcase__device-notch span:nth-child(2) { background: #ffbd2e; }
.showcase__device-notch span:nth-child(3) { background: #28ca41; }

.showcase__device-island {
  width: 40px;
  height: 12px;
  background: #000;
  border-radius: 10px;
  margin: 8px auto 4px;
}

.showcase__device-screen {
  background: var(--bg);
}

.showcase__device--desktop .showcase__device-screen { height: 200px; }
.showcase__device--tablet .showcase__device-screen { height: 240px; }
.showcase__device--phone .showcase__device-screen { height: 200px; }

.showcase__device-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Screen content mocks */
.showcase__screen-content {
  padding: 12px;
  height: 100%;
}

.showcase__mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.showcase__mock-logo {
  width: 40px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.7;
}

.showcase__mock-links {
  display: flex;
  gap: 6px;
}

.showcase__mock-links span {
  width: 20px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

.showcase__mock-btn-small {
  width: 32px;
  height: 10px;
  background: var(--accent);
  border-radius: 5px;
  opacity: 0.5;
}

.showcase__mock-burger span {
  display: block;
  width: 14px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  margin-bottom: 2px;
  border-radius: 1px;
}

.showcase__mock-hero {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.showcase__mock-badge {
  width: 50px;
  height: 8px;
  background: var(--accent-dim);
  border-radius: 4px;
  border: 1px solid rgba(0,255,209,0.15);
}

.showcase__mock-title {
  width: 85%;
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.showcase__mock-title--short { width: 55%; }

.showcase__mock-subtitle {
  width: 70%;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 2px;
}

.showcase__mock-buttons {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.showcase__mock-btn {
  height: 12px;
  border-radius: 6px;
}

.showcase__mock-btn--primary {
  width: 50px;
  background: var(--accent);
  opacity: 0.7;
}

.showcase__mock-btn--outline {
  width: 40px;
  border: 1px solid rgba(255,255,255,0.2);
}

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

.showcase__mock-cards {
  display: flex;
  gap: 6px;
}

.showcase__mock-cards--col { flex-direction: column; }

.showcase__mock-card {
  flex: 1;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.showcase__screen-content--phone .showcase__mock-logo { width: 30px; height: 6px; }
.showcase__screen-content--phone .showcase__mock-title { height: 7px; }
.showcase__screen-content--phone .showcase__mock-subtitle { height: 4px; }
.showcase__screen-content--phone .showcase__mock-btn { height: 10px; }

/* Speed Demo */
.showcase__speed-demo {
  display: flex;
  justify-content: center;
}

.showcase__speed-comparison {
  display: flex;
  align-items: center;
  gap: 24px;
}

.showcase__speed-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.showcase__speed-browser {
  width: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #1a1a1a;
}

.showcase__speed-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #111;
  border-bottom: 1px solid var(--border);
}

.showcase__speed-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.showcase__speed-bar > span:nth-child(1) { background: #ff5f57; }
.showcase__speed-bar > span:nth-child(2) { background: #ffbd2e; }
.showcase__speed-bar > span:nth-child(3) { background: #28ca41; }

.showcase__speed-url {
  margin-left: 8px;
  font-size: 0.6rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.showcase__speed-screen {
  padding: 14px;
  min-height: 140px;
  position: relative;
}

.showcase__speed-skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase__skel { border-radius: 4px; }
.showcase__skel--h { width: 75%; height: 12px; background: rgba(255,255,255,0.06); }
.showcase__skel--p { width: 100%; height: 6px; background: rgba(255,255,255,0.04); }
.showcase__skel--short { width: 60%; }

.showcase__skel-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.showcase__skel--box {
  flex: 1;
  height: 35px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

.showcase__speed-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.showcase__speed-col--slow .showcase__speed-browser { border-color: rgba(255,68,68,0.2); }

.showcase__speed-col--slow .showcase__skel { animation: shimmer 2s infinite ease-in-out; }

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.showcase__speed-screen--loaded .showcase__skel--done { animation: none; }
.showcase__skel--done.showcase__skel--h { background: rgba(0,255,209,0.15); }
.showcase__skel--done.showcase__skel--p { background: rgba(255,255,255,0.12); }
.showcase__skel--done.showcase__skel--box { background: rgba(0,255,209,0.08); border: 1px solid rgba(0,255,209,0.15); }

.showcase__speed-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(0,255,209,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkPulse 2s infinite;
}

@keyframes checkPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,209,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(0,255,209,0); }
}

.showcase__speed-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase__speed-col--fast .showcase__speed-browser { border-color: rgba(0,255,209,0.2); }

.showcase__speed-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.showcase__speed-score {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.showcase__speed-metric--bad .showcase__speed-score { color: #ff4444; }
.showcase__speed-metric--good .showcase__speed-score { color: var(--accent); }

.showcase__speed-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase__speed-tag {
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.showcase__speed-vs {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Interactions Demo */
.showcase__interactions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showcase__demo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.showcase__demo-preview {
  width: 100%;
  height: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.showcase__demo-preview:hover { border-color: var(--border-hover); }

.showcase__demo-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hover demo */
.showcase__demo-btn-fake {
  padding: 8px 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.showcase__demo-preview--hover:hover .showcase__demo-btn-fake {
  transform: scale(1.05);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.showcase__demo-cursor {
  position: absolute;
  bottom: 22px;
  right: 35%;
  animation: cursorMove 3s ease-in-out infinite;
}

@keyframes cursorMove {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(-15px, -10px); }
  60% { transform: translate(-15px, -10px); }
}

.showcase__demo-ripple {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  animation: rippleDemo 3s ease-in-out infinite;
}

@keyframes rippleDemo {
  0%, 35%, 100% { box-shadow: inset 0 0 0 0 rgba(255,255,255,0); }
  50% { box-shadow: inset 0 0 0 20px rgba(255,255,255,0.15); }
  65% { box-shadow: inset 0 0 0 40px rgba(255,255,255,0); }
}

/* Reveal demo */
.showcase__demo-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 60%;
}

.showcase__demo-line {
  height: 6px;
  border-radius: 3px;
  background: var(--accent);
  animation: revealLine 2.5s ease-in-out infinite;
}

.showcase__demo-line--1 { width: 90%; animation-delay: 0s; }
.showcase__demo-line--2 { width: 70%; animation-delay: 0.2s; }
.showcase__demo-line--3 { width: 50%; animation-delay: 0.4s; }

@keyframes revealLine {
  0% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}

.showcase__demo-scroll-indicator {
  position: absolute;
  right: 12px;
  top: 20%;
  width: 4px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.showcase__demo-scroll-thumb {
  width: 100%;
  height: 12px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.5;
  animation: scrollThumb 2.5s ease-in-out infinite;
}

@keyframes scrollThumb {
  0% { transform: translateY(0); }
  50% { transform: translateY(28px); }
  100% { transform: translateY(0); }
}

/* Morph demo */
.showcase__demo-shape {
  width: 40px;
  height: 40px;
  background: var(--accent);
  animation: morphShape 4s ease-in-out infinite;
}

@keyframes morphShape {
  0%, 100% { border-radius: 10%; transform: rotate(0deg) scale(1); }
  25% { border-radius: 50%; transform: rotate(90deg) scale(0.8); }
  50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(180deg) scale(1.1); }
  75% { border-radius: 50%; transform: rotate(270deg) scale(0.9); }
}

/* Micro-interactions demo */
.showcase__demo-preview--micro { gap: 20px; }

.showcase__demo-toggle-track {
  width: 36px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  position: relative;
  animation: toggleAnim 3s ease-in-out infinite;
}

.showcase__demo-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
  animation: toggleThumb 3s ease-in-out infinite;
}

@keyframes toggleAnim {
  0%, 45% { background: rgba(255,255,255,0.15); }
  50%, 95% { background: var(--accent); }
}

@keyframes toggleThumb {
  0%, 45% { transform: translateX(0); }
  50%, 95% { transform: translateX(16px); }
}

.showcase__demo-counter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__demo-counter-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.showcase__demo-counter-pulse {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: counterPulse 2s ease-out infinite;
}

@keyframes counterPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Code Demo */
.showcase__code-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase__code-window {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d0d;
}

.showcase__code-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #111;
  border-bottom: 1px solid var(--border);
  gap: 10px;
}

.showcase__code-dots {
  display: flex;
  gap: 5px;
}

.showcase__code-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.showcase__code-dots span:nth-child(1) { background: #ff5f57; }
.showcase__code-dots span:nth-child(2) { background: #ffbd2e; }
.showcase__code-dots span:nth-child(3) { background: #28ca41; }

.showcase__code-filename {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

.showcase__code-tabs {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.showcase__code-tab {
  padding: 3px 10px;
  font-size: 0.65rem;
  color: var(--text-secondary);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  cursor: default;
}

.showcase__code-tab--active {
  background: rgba(0,255,209,0.1);
  color: var(--accent);
}

.showcase__code-body {
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.8;
  position: relative;
}

.showcase__code-line { white-space: nowrap; }

.showcase__code-num {
  display: inline-block;
  width: 24px;
  color: rgba(255,255,255,0.2);
  text-align: right;
  margin-right: 16px;
  user-select: none;
}

.showcase__code-tag { color: #ff7b72; }
.showcase__code-attr { color: #79c0ff; }
.showcase__code-str { color: #a5d6ff; }

.showcase__code-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 4px;
}

.showcase__code-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.showcase__code-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* Form Demo */
.showcase__form-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase__form-window {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.showcase__form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #111;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.showcase__form-header-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: formDotPulse 2s infinite;
}

@keyframes formDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.showcase__form-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase__form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showcase__form-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase__form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  transition: var(--transition);
}

.showcase__form-input--filled {
  border-color: rgba(0,255,209,0.3);
}

.showcase__form-input--typing {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,209,0.08);
}

.showcase__form-input-text {
  font-size: 0.85rem;
  color: var(--text);
}

.showcase__form-input-placeholder {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.2);
}

.showcase__form-blink {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

.showcase__form-input-check {
  width: 20px;
  height: 20px;
  background: rgba(0,255,209,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__form-submit {
  margin-top: 4px;
}

.showcase__form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: default;
  transition: var(--transition);
}

.showcase__form-submit-btn:hover {
  box-shadow: 0 4px 20px var(--accent-glow);
}

.showcase__form-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.showcase__form-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.showcase__form-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.showcase__form-feat-icon {
  font-size: 0.9rem;
}

/* Analytics Demo */
.showcase__analytics-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase__analytics-dashboard {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.showcase__analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #111;
  border-bottom: 1px solid var(--border);
}

.showcase__analytics-title-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.showcase__analytics-dot {
  width: 8px;
  height: 8px;
  background: #28ca41;
  border-radius: 50%;
}

.showcase__analytics-period {
  font-size: 0.65rem;
  color: var(--text-secondary);
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.showcase__analytics-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.showcase__analytics-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 10px;
  background: var(--bg-card);
}

.showcase__analytics-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.showcase__analytics-stat-value--up { color: var(--text); }
.showcase__analytics-stat-value--accent { color: var(--accent); }

.showcase__analytics-stat-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase__analytics-stat-change {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

.showcase__analytics-stat-change--up {
  color: #28ca41;
}

.showcase__analytics-chart {
  padding: 16px;
}

.showcase__analytics-chart-svg {
  width: 100%;
  height: 60px;
}

.showcase__chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawChart 2s ease forwards;
}

.showcase__chart-area {
  opacity: 0;
  animation: fadeInChart 1s ease 1.5s forwards;
}

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

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

.showcase__analytics-services {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.showcase__analytics-service {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.showcase__analytics-service-badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Copywriting & Marketing Demo */
.showcase__copy-demo {
  flex: 1;
  min-width: 0;
}

.showcase__copy-comparison {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.showcase__copy-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase__copy-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.showcase__copy-label--good {
  color: var(--accent);
}

.showcase__copy-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  transition: border-color 0.3s;
}
.showcase__copy-card--good {
  border-color: rgba(0,255,209,0.25);
  background: rgba(0,255,209,0.03);
}

.showcase__copy-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.showcase__copy-heading--weak {
  color: var(--text-secondary);
  font-weight: 500;
}

.showcase__copy-text {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.showcase__copy-text--weak {
  color: rgba(255,255,255,0.35);
}

.showcase__copy-btn-fake {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s;
}
.showcase__copy-btn-fake--weak {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
}
.showcase__copy-btn-fake--good {
  background: rgba(0,255,209,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,255,209,0.25);
}

.showcase__copy-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  width: fit-content;
}
.showcase__copy-stat--bad {
  background: rgba(255,107,107,0.08);
}
.showcase__copy-stat--good {
  background: rgba(0,255,209,0.08);
}
.showcase__copy-stat-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
}
.showcase__copy-stat--bad .showcase__copy-stat-val { color: #ff6b6b; }
.showcase__copy-stat--good .showcase__copy-stat-val { color: var(--accent); }
.showcase__copy-stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase__copy-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  opacity: 0.5;
}

.showcase__copy-funnel {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.showcase__copy-funnel-step {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.showcase__copy-funnel-step:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.06);
}
.showcase__copy-funnel-icon {
  font-size: 14px;
  line-height: 1;
}

/* Self-Reference Block */
.showcase__selfref {
  position: relative;
  margin-top: 80px;
  padding: 60px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
}

.showcase__selfref-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,255,209,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.showcase__selfref-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.showcase__selfref-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,255,209,0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  animation: selfrefBadgePulse 3s ease-in-out infinite;
}

@keyframes selfrefBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,209,0.15); }
  50% { box-shadow: 0 0 0 10px rgba(0,255,209,0); }
}

.showcase__selfref-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.showcase__selfref-desc {
  max-width: 550px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Scores — bar style */
.showcase__selfref-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}

.showcase__selfref-score {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase__selfref-score-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.showcase__selfref-score-name {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.showcase__selfref-score-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.showcase__selfref-score-val--accent { color: var(--accent); }
.showcase__selfref-score-val--purple { color: #a78bfa; }
.showcase__selfref-score-val--green { color: #34d399; }
.showcase__selfref-score-val--orange { color: #fb923c; }

.showcase__selfref-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.showcase__selfref-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s ease;
}

.showcase__selfref-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.showcase__selfref-tech {
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  transition: var(--transition);
}

.showcase__selfref-tech:hover {
  border-color: var(--border-hover);
  color: var(--accent);
}

/* Bottom CTA */
.showcase__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 60px;
  text-align: center;
}

.showcase__cta-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
}

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

.showcase__cta-subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  opacity: 0.7;
}

/* Showcase Responsive */
@media (max-width: 1024px) {
  .showcase__feature {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .showcase__feature--reverse > :first-child { order: 0; }
  .showcase__feature--reverse > :last-child { order: 0; }
  .showcase__device--desktop .showcase__device-frame { width: 280px; }
  .showcase__device--tablet .showcase__device-frame { width: 160px; }
  .showcase__speed-browser { width: 200px; }
  .showcase__selfref { padding: 50px 30px; margin-top: 60px; }
}

@media (max-width: 768px) {
  .showcase__feature { padding: 44px 0; gap: 28px; }

  /* Devices — stack vertically, center */
  .showcase__devices {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .showcase__device--desktop .showcase__device-frame { width: 100%; max-width: 320px; }
  .showcase__device--tablet .showcase__device-frame { width: 100%; max-width: 220px; }
  .showcase__device--tablet .showcase__device-screen { height: 180px; }
  .showcase__device--phone .showcase__device-frame--phone { width: 140px; }
  .showcase__device--phone .showcase__device-screen { height: 240px; }

  /* Speed — vertical */
  .showcase__speed-comparison { flex-direction: column; gap: 16px; }
  .showcase__speed-browser { width: 100%; max-width: 280px; }
  .showcase__speed-vs { width: 32px; height: 32px; font-size: 0.8rem; }

  /* Interactions — 2 cols still works on tablet */
  .showcase__interactions-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .showcase__demo-preview { height: 100px; }

  /* Code */
  .showcase__code-features { grid-template-columns: 1fr; }
  .showcase__code-body { font-size: 0.65rem; overflow-x: auto; }

  /* Form */
  .showcase__form-features { flex-direction: column; }

  /* Analytics */
  .showcase__analytics-services { flex-direction: column; }
  .showcase__analytics-stat-value { font-size: 1.2rem; }

  /* Copywriting */
  .showcase__copy-comparison { flex-direction: column; gap: 12px; }
  .showcase__copy-arrow {
    transform: rotate(90deg);
    width: auto;
    height: 30px;
  }
  .showcase__copy-heading { font-size: 0.85rem; }
  .showcase__copy-funnel { gap: 6px; }

  /* Selfref */
  .showcase__selfref { padding: 40px 20px; margin-top: 50px; }
  .showcase__selfref-scores { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Feature text */
  .showcase__feature-title { font-size: 1.4rem; }
  .showcase__feature-desc { font-size: 0.95rem; }

  /* CTA */
  .showcase__cta { padding-top: 40px; }
  .showcase__cta-subtext { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .showcase__feature { padding: 36px 0; gap: 24px; }

  /* Devices — only desktop & phone, full width */
  .showcase__device--desktop .showcase__device-frame {
    width: 100%;
    max-width: 100%;
  }
  .showcase__device--desktop .showcase__device-screen { height: 160px; }
  .showcase__device--tablet { display: none; }
  .showcase__device--phone .showcase__device-frame--phone {
    width: 120px;
  }
  .showcase__device--phone .showcase__device-screen { height: 200px; }
  .showcase__device-label { font-size: 0.6rem; }

  /* Speed — full width browsers */
  .showcase__speed-browser { max-width: 100%; width: 100%; }
  .showcase__speed-screen { min-height: 120px; padding: 12px; }
  .showcase__speed-score { font-size: 1.6rem; }
  .showcase__speed-tag { font-size: 0.65rem; padding: 3px 10px; }

  /* Interactions — 2 cols, compact */
  .showcase__interactions-grid { gap: 8px; }
  .showcase__demo-preview { height: 80px; }
  .showcase__demo-btn-fake { padding: 6px 14px; font-size: 0.65rem; }
  .showcase__demo-label { font-size: 0.7rem; }
  .showcase__demo-shape { width: 28px; height: 28px; }
  .showcase__demo-counter-num { font-size: 1rem; }
  .showcase__demo-toggle-track { width: 28px; height: 16px; }
  .showcase__demo-toggle-thumb { width: 10px; height: 10px; }

  /* Code — compact, no overflow */
  .showcase__code-body { padding: 12px 10px; font-size: 0.58rem; line-height: 1.7; }
  .showcase__code-num { width: 18px; margin-right: 8px; }
  .showcase__code-line { font-size: 0.58rem; }
  .showcase__code-tab { padding: 2px 6px; font-size: 0.55rem; }
  .showcase__code-filename { font-size: 0.6rem; }
  .showcase__code-bar { padding: 8px 10px; }
  .showcase__code-dots span { width: 6px; height: 6px; }

  /* Form — full width, compact */
  .showcase__form-body { padding: 16px; gap: 12px; }
  .showcase__form-input { padding: 8px 12px; min-height: 36px; }
  .showcase__form-input-text { font-size: 0.8rem; }
  .showcase__form-submit-btn { padding: 10px; font-size: 0.8rem; }
  .showcase__form-feat { padding: 6px 12px; font-size: 0.75rem; }
  .showcase__form-label { font-size: 0.65rem; }

  /* Analytics — 3 col stats compact */
  .showcase__analytics-stat { padding: 12px 6px; }
  .showcase__analytics-stat-value { font-size: 1rem; }
  .showcase__analytics-stat-label { font-size: 0.55rem; }
  .showcase__analytics-stat-change { font-size: 0.6rem; }
  .showcase__analytics-chart { padding: 10px; }
  .showcase__analytics-service { padding: 6px 12px; font-size: 0.75rem; }
  .showcase__analytics-service-badge { width: 18px; height: 18px; font-size: 0.5rem; }
  .showcase__analytics-period { font-size: 0.55rem; padding: 2px 8px; }

  /* Selfref — compact ring layout */
  .showcase__selfref {
    padding: 28px 16px;
    margin-top: 36px;
    border-radius: var(--radius-lg);
  }
  .showcase__selfref-title { font-size: 1.2rem; }
  .showcase__selfref-desc { font-size: 0.9rem; line-height: 1.6; }
  .showcase__selfref-scores {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .showcase__selfref-score-name { font-size: 12px; }
  .showcase__selfref-score-val { font-size: 13px; }
  .showcase__selfref-stack { gap: 6px; }
  .showcase__selfref-tech { padding: 4px 10px; font-size: 0.65rem; }
  .showcase__selfref-badge { font-size: 0.7rem; padding: 6px 14px; }

  /* Feature text */
  .showcase__feature-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .showcase__feature-icon svg { width: 22px; height: 22px; }
  .showcase__feature-title { font-size: 1.25rem; margin-bottom: 10px; }
  .showcase__feature-desc { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
  .showcase__feature-list { gap: 8px; }
  .showcase__feature-list li { font-size: 0.85rem; }

  /* CTA */
  .showcase__cta { padding-top: 32px; gap: 16px; }
  .showcase__cta-text { font-size: 1rem; }
  .showcase__cta-subtext { font-size: 0.7rem; line-height: 1.5; }
}

/* iPhone SE / small phones */
@media (max-width: 375px) {
  .showcase__feature { padding: 28px 0; gap: 20px; }

  .showcase__device--desktop .showcase__device-screen { height: 140px; }
  .showcase__device--phone .showcase__device-frame--phone { width: 100px; }
  .showcase__device--phone .showcase__device-screen { height: 170px; }

  .showcase__speed-score { font-size: 1.4rem; }
  .showcase__speed-screen { min-height: 100px; }

  .showcase__demo-preview { height: 70px; }
  .showcase__demo-btn-fake { padding: 5px 10px; font-size: 0.6rem; }

  .showcase__code-body { padding: 10px 8px; font-size: 0.52rem; }
  .showcase__code-num { width: 14px; margin-right: 6px; font-size: 0.5rem; }

  .showcase__analytics-stat-value { font-size: 0.85rem; }
  .showcase__analytics-stat { padding: 10px 4px; }

  .showcase__copy-card { padding: 14px; }
  .showcase__copy-heading { font-size: 0.8rem; }
  .showcase__copy-text { font-size: 0.72rem; }
  .showcase__copy-btn-fake { font-size: 0.68rem; padding: 6px 12px; }
  .showcase__copy-stat-val { font-size: 0.95rem; }
  .showcase__copy-funnel-step { font-size: 0.68rem; padding: 5px 10px; }

  .showcase__selfref-scores { gap: 8px; }
  .showcase__selfref-score-name { font-size: 11px; }
  .showcase__selfref-score-val { font-size: 12px; }
  .showcase__selfref-title { font-size: 1.1rem; }
  .showcase__selfref-desc { font-size: 0.8rem; }
  .showcase__selfref-tech { padding: 3px 8px; font-size: 0.6rem; }

  .showcase__form-body { padding: 14px; }
  .showcase__form-input-text { font-size: 0.75rem; }

  /* Showcase CTA — full width button */
  .showcase__cta .btn--lg {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.85rem;
  }
  .showcase__cta-text { font-size: 0.95rem; }
  .showcase__cta-subtext { font-size: 0.65rem; }
}

/* ========== Pricing ========== */
.pricing .section__label,
.pricing .section__title,
.pricing .section__subtitle {
  text-align: center;
}

/* Hero card */
.pricing__hero {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.pricing__hero:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 60px rgba(0, 255, 209, 0.06);
}

.pricing__hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Promo badge */
.pricing__promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: promoPulse 2.5s ease-in-out infinite;
}

@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.2); }
  50% { box-shadow: 0 0 20px 4px rgba(255, 107, 107, 0.1); }
}

/* Price area */
.pricing__price-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.pricing__price-block {
  text-align: center;
}

.pricing__price-old {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: line-through;
  text-decoration-color: #ff6b6b;
  text-decoration-thickness: 2px;
  opacity: 0.5;
  display: block;
  margin-bottom: 4px;
}

.pricing__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.pricing__price {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pricing__currency {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--accent);
  opacity: 0.7;
}

.pricing__savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(0, 255, 209, 0.08);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 10px;
}

.pricing__price-context {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.pricing__per-unit {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing__per-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.pricing__per-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hosting/domain note */
.pricing__note {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.6;
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.4;
}

/* Divider */
.pricing__divider {
  height: 1px;
  background: var(--border);
  margin: 0 -40px 32px;
}

/* Features grid */
.pricing__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  text-align: left;
  margin-bottom: 36px;
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.pricing__feature:nth-last-child(-n+2) {
  border-bottom: none;
}

.pricing__feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.pricing__feature span {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* CTA */
.pricing__btn {
  width: 100%;
  max-width: 420px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

/* Timer (inside hero card) */
.pricing__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(0, 255, 209, 0.04);
  border: 1px solid rgba(0, 255, 209, 0.1);
  border-radius: var(--radius);
}

.pricing__timer-label {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pricing__timer-blocks {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing__timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.pricing__timer-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pricing__timer-unit {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.pricing__timer-sep {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 255, 209, 0.35);
  margin-bottom: 12px;
}

/* Extras (add-ons) */
.pricing__extras {
  max-width: 680px;
  margin: 32px auto 0;
}

.pricing__extras-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
}

.pricing__extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pricing__extra {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

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

.pricing__extra-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.pricing__extra-info svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__extra-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.pricing__extra-info span {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing__extra-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Guarantee badges */
.pricing__guarantees {
  max-width: 680px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pricing__guar {
  background: rgba(0, 255, 209, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.3s;
}

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

.pricing__guar-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing__guar strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing__guar span {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========== Steps ========== */
.steps__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.steps__timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.step {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  position: relative;
}

.step__number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.step__content {
  padding-top: 12px;
}

.step__day {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 6px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq .section__label,
.faq .section__title,
.faq .section__subtitle {
  text-align: center;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

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

.faq__item[open] {
  border-color: rgba(0, 255, 209, 0.2);
  box-shadow: 0 0 24px rgba(0, 255, 209, 0.04);
}

.faq__question {
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  transition: color 0.3s;
  color: var(--text);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  content: '';
}

.faq__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 22px;
}

.faq__item[open] .faq__num {
  opacity: 1;
}

.faq__question > span:nth-child(2) {
  flex: 1;
}

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
  color: var(--text-secondary);
  margin-left: auto;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  padding: 0 22px 20px 58px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  animation: faqFadeIn 0.3s ease;
}

.faq__answer p {
  margin: 0 0 8px;
}

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

.faq__answer strong {
  color: var(--text);
  font-weight: 600;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA at bottom */
.faq__cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.faq__cta p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.faq__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: gap 0.3s;
}

.faq__cta-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.faq__cta-link:hover {
  gap: 12px;
}

.faq__cta-link:hover::after {
  width: calc(100% - 24px);
}

.faq__cta-link svg {
  transition: transform 0.3s;
}

.faq__cta-link:hover svg {
  transform: translateX(3px);
}

/* ========== Contact Form ========== */
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.contact__main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 36px 36px 32px;
}

.contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.contact__group--full {
  grid-column: 1 / -1;
}

.contact__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact__input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: 0.3s;
  outline: none;
}

.contact__input::placeholder {
  color: var(--text-secondary);
  opacity: 0.45;
}

.contact__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact__textarea {
  resize: vertical;
  min-height: 70px;
  max-height: 180px;
}

.contact__submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 32px;
}

.contact__note {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 12px;
  opacity: 0.7;
}

/* Steps under form */
.contact__steps {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 20px 36px;
}

.contact__steps-title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.contact__steps-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.contact__step-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(0,255,209,0.15);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.contact__step-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.contact__step-arrow {
  flex-shrink: 0;
  opacity: 0.35;
}

/* Aside cards */
.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s;
}

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

.contact__card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact__card-title {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact__card-link {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  transition: 0.3s;
}

a.contact__card-link:hover {
  color: var(--accent);
}

.contact__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 255, 209, 0.15);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* ========== Guarantee ========== */
.guarantee__inner {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.guarantee__icon {
  margin-bottom: 24px;
}

.guarantee__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.guarantee__text {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.guarantee__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.guarantee__card {
  padding: 24px;
  background: rgba(0, 255, 209, 0.03);
  border: 1px solid rgba(0, 255, 209, 0.1);
  border-radius: var(--radius-lg);
}

.guarantee__card strong {
  font-family: var(--font-heading);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.guarantee__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== Footer Links ========== */
.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

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

/* ========== Footer ========== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

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

.footer__copy {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========== FAB ========== */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: var(--transition);
  animation: fabPulse 3s ease-in-out infinite;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px var(--accent-glow);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 40px rgba(0, 255, 209, 0.5); }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adv-card--full {
    grid-column: 1 / -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .nav, .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .adv-card--full {
    display: block;
  }

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

  .metrics__card {
    padding: 22px 20px;
  }

  .metrics {
    padding: 40px 0 48px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guarantee__inner {
    padding: 36px 24px;
  }

  .guarantee__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing__timer {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .pricing__timer-value {
    font-size: 18px;
  }

  .pricing__timer-block {
    min-width: 36px;
  }

  .pricing__timer-sep {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .pricing__hero {
    padding: 36px 28px;
  }

  .pricing__price-area {
    flex-direction: column;
    gap: 24px;
  }

  .pricing__price-context {
    flex-direction: row;
    gap: 24px;
    text-align: center;
    justify-content: center;
  }

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

  .pricing__feature:last-child {
    border-bottom: none;
  }

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

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

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq__answer {
    padding-left: 50px;
  }

  .steps__timeline::before {
    left: 27px;
  }

  .step__number {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }

  .step {
    gap: 20px;
  }

  .timer__block {
    min-width: 56px;
    padding: 10px 12px;
  }

  .timer__value {
    font-size: 22px;
  }

  .timer__sep {
    font-size: 22px;
  }

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

  .contact__form {
    padding: 24px;
  }

  .contact__steps {
    padding: 18px 24px;
  }

  .contact__steps-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .contact__step-arrow {
    display: none;
  }

  .contact__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact__badge {
    grid-column: 1 / -1;
  }

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

  .hero__actions .btn--lg {
    width: 100%;
  }

  /* Hero proof & orbs */
  .hero__proof {
    flex-direction: column;
    gap: 10px;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
  }

  .hero__proof-sep { display: none; }

  .hero__orbs { display: none; }

  .hero__scroll-hint { margin-top: 32px; }

  .fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .fab svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    letter-spacing: -0.5px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero__example {
    font-size: 13px;
    padding: 10px 16px;
  }

  .hero__proof {
    padding: 14px 16px;
  }

  .hero__proof-item {
    font-size: 12px;
    gap: 6px;
  }

  .hero__proof-item svg {
    width: 14px;
    height: 14px;
  }

  .hero__scroll-hint { display: none; }

  .step__number {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .steps__timeline::before {
    left: 23px;
  }

  .step {
    gap: 16px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .metrics__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metrics__card {
    padding: 18px 16px;
    gap: 12px;
  }

  .metrics__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .metrics__icon svg {
    width: 18px;
    height: 18px;
  }

  .metrics__value {
    font-size: 28px;
  }

  .metrics__suffix {
    font-size: 15px;
  }

  .metrics__label {
    font-size: 11px;
  }

  .whofor__marquee-wrap {
    margin-top: 32px;
    gap: 10px;
  }

  .whofor__tag {
    padding: 8px 14px;
    font-size: 12px;
    gap: 4px;
  }

  .whofor__marquee-track {
    gap: 8px;
    padding-right: 8px;
  }

  .whofor__bottom {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

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

  .whofor__bottom-sub {
    max-width: 100% !important;
  }

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

  .adv-card--full {
    display: block;
  }

  .pricing__extra {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pricing__extra-price {
    align-self: flex-end;
  }

  .pricing__hero {
    padding: 28px 20px;
  }

  .pricing__divider {
    margin: 0 -20px 24px;
  }

  .about__grid {
    gap: 24px;
  }

  .about__highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about__stack {
    justify-content: center;
  }

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

/* iPhone SE / small phones — global */
@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .section__subtitle {
    font-size: 0.85rem;
    margin-bottom: 36px;
  }

  .section__label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  /* Header */
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .logo {
    font-size: 19px;
  }

  .burger {
    width: 28px;
    gap: 5px;
  }

  /* Mobile menu */
  .mobile-menu__link {
    font-size: 22px;
  }

  .mobile-menu__list {
    gap: 22px;
  }

  .mobile-menu__btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Hero */
  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .hero__title {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 0.85rem;
  }

  .hero__badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 20px;
  }

  .hero__proof {
    padding: 12px 14px;
    gap: 8px;
  }

  .hero__proof-item {
    font-size: 11px;
    gap: 5px;
  }

  .hero__proof-item svg {
    width: 12px;
    height: 12px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .btn--lg {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .hero__example {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Metrics */
  .metrics {
    padding: 28px 0 32px;
  }

  .metrics__grid {
    gap: 8px;
  }

  .metrics__card {
    padding: 14px 12px;
    gap: 10px;
    border-radius: var(--radius);
  }

  .metrics__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .metrics__icon svg {
    width: 16px;
    height: 16px;
  }

  .metrics__value {
    font-size: 24px;
  }

  .metrics__suffix {
    font-size: 13px;
  }

  .metrics__label {
    font-size: 10px;
    line-height: 1.35;
  }

  /* About */
  .about__card {
    padding: 16px;
  }

  .about__card-title {
    font-size: 0.85rem;
  }

  .about__card-desc {
    font-size: 0.75rem;
  }

  /* Whofor */
  .whofor__tag {
    padding: 6px 10px;
    font-size: 10px;
    gap: 3px;
  }

  .whofor__marquee-track {
    gap: 6px;
    padding-right: 6px;
  }

  .whofor__bottom {
    padding: 20px 14px;
  }

  .whofor__bottom-text p {
    font-size: 1.1rem;
  }

  /* Advantages */
  .adv-card {
    padding: 20px 18px;
  }

  .adv-card__num {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .adv-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .adv-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .adv-card__title {
    font-size: 15px;
  }

  .adv-card__text {
    font-size: 13px;
  }

  /* Pricing */
  .pricing__hero {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }

  .pricing__promo {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 20px;
  }

  .pricing__price {
    font-size: 36px;
  }

  .pricing__currency {
    font-size: 20px;
  }

  .pricing__price-old {
    font-size: 18px;
  }

  .pricing__savings {
    font-size: 11px;
    padding: 3px 10px;
  }

  .pricing__per-value {
    font-size: 17px;
  }

  .pricing__per-label {
    font-size: 11px;
  }

  .pricing__divider {
    margin: 0 -16px 20px;
  }

  .pricing__feature strong {
    font-size: 13px;
  }

  .pricing__feature span {
    font-size: 11px;
  }

  .pricing__feature svg {
    width: 16px;
    height: 16px;
  }

  .pricing__btn {
    font-size: 14px;
    padding: 14px 20px;
  }

  .pricing__timer {
    padding: 12px 12px;
    gap: 8px;
    flex-direction: column;
  }

  .pricing__timer-label {
    font-size: 11px;
  }

  .pricing__timer-value {
    font-size: 16px;
  }

  .pricing__timer-block {
    min-width: 32px;
  }

  .pricing__timer-sep {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .pricing__extra {
    padding: 14px;
  }

  .pricing__extra-info strong {
    font-size: 13px;
  }

  .pricing__extra-info span {
    font-size: 11px;
  }

  .pricing__extra-price {
    font-size: 14px;
  }

  .pricing__extras-title {
    font-size: 16px;
  }

  .pricing__guar {
    padding: 16px 14px;
    gap: 10px;
  }

  .pricing__guar-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .pricing__guar-icon svg {
    width: 16px;
    height: 16px;
  }

  .pricing__guar strong {
    font-size: 13px;
  }

  .pricing__guar span {
    font-size: 11px;
  }

  /* Process */
  .step__content h3 {
    font-size: 1rem;
  }

  .step__content p {
    font-size: 0.8rem;
  }

  .step__number {
    width: 40px;
    height: 40px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .steps__timeline::before {
    left: 19px;
  }

  .step {
    gap: 14px;
  }

  /* FAQ */
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq__question {
    font-size: 13px;
    padding: 14px 14px;
    gap: 10px;
  }

  .faq__num {
    font-size: 11px;
    min-width: 18px;
  }

  .faq__answer {
    padding: 0 14px 14px 42px;
    font-size: 12px;
    line-height: 1.6;
  }

  .faq__icon {
    width: 16px;
    height: 16px;
  }

  .faq__cta {
    padding: 24px 16px;
    margin-top: 32px;
  }

  .faq__cta p {
    font-size: 14px;
  }

  /* Contact */
  .contact__form {
    padding: 20px 16px;
  }

  .contact__steps {
    padding: 16px;
  }

  .contact__steps-title {
    font-size: 10px;
  }

  .contact__step-text {
    font-size: 12px;
  }

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

  .contact__card {
    padding: 14px;
  }

  .contact__sidebar {
    padding: 20px 16px;
  }

  .contact__form .btn--lg {
    font-size: 0.9rem;
    padding: 14px 20px;
  }

  /* Footer */
  .footer__links {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .footer__links a {
    font-size: 12px;
  }

  .footer__copy {
    font-size: 12px;
  }

  /* FAB */
  .fab {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .fab svg {
    width: 22px;
    height: 22px;
  }
}
/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__particles,
  .hero__orbs { display: none; }
}

