/* WebLock — DMCA-inspired (Light Green · White · Mint) */

:root {
  --green-50: #f0faf4;
  --green-100: #d8f0e3;
  --green-200: #b0dfc4;
  --green: #2daa6a;
  --green-dark: #1f8f56;
  --green-darker: #156b40;
  --green-light: #e8f7ee;
  --blue-50: var(--green-50);
  --blue-100: var(--green-100);
  --blue-200: var(--green-200);
  --blue: var(--green);
  --blue-dark: var(--green-dark);
  --accent: #0d9488;
  --accent-light: #e6f7f5;
  --white: #ffffff;
  --bg: #f8fcf9;
  --surface: #ffffff;
  --text: #3d4f47;
  --text-dark: #1a2e22;
  --muted: #5c7268;
  --border: #d6e8dc;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(45, 170, 106, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 170, 106, 0.1);
  --shadow-lg: 0 8px 32px rgba(45, 170, 106, 0.12);
  --font: 'Inter', system-ui, sans-serif;
  --heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'Inter', system-ui, sans-serif;
  --nav-h: 68px;
  --topbar-h: 36px;
  --transition: 0.2s ease;
  --navy: #1a3d2e;
  --navy-mid: #245a42;
  --cyan: var(--green);
  --ink: var(--text-dark);
  --cream: var(--white);
  --amber: var(--green);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.text-link { color: var(--green-dark); font-weight: 500; }
.text-link:hover { color: var(--green-darker); }

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

ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green-200);
}

.btn--outline:hover {
  background: var(--green-50);
  border-color: var(--green);
}

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--white);
  border-color: var(--green-200);
}

.btn--white {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--cream);
}

.btn--white:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--cream);
}

.btn--ghost-white {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
  clip-path: none;
  text-transform: none;
}
.btn--ghost-white:hover { background: var(--ink); color: var(--cream); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Topbar */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.75rem;
  height: var(--topbar-h);
  border-bottom: 2px solid var(--amber);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  height: 100%;
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.topbar__link:hover { color: var(--amber); }
.topbar__status-dot { background: var(--teal) !important; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  transition: var(--transition);
}

.header.scrolled { box-shadow: 0 4px 0 var(--amber); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.logo em {
  font-style: normal;
  color: var(--amber);
}

.logo__shield {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  border: 2px solid var(--amber);
  color: var(--amber);
  box-shadow: 3px 3px 0 var(--amber);
}

.logo__shield svg { width: 20px; height: 20px; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav__link:hover,
.nav__link.active {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 2px 2px 0 var(--ink);
}

.header__cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 88px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-12deg, transparent, transparent 80px, rgba(232,160,32,0.03) 80px, rgba(232,160,32,0.03) 81px);
  opacity: 0.6;
}

.hero__orb { display: none; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--amber);
  border: 2px solid var(--cream);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 28px;
  box-shadow: 3px 3px 0 var(--cream);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--ink);
  animation: pulse 2s infinite;
}

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

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--amber);
  display: block;
  font-style: italic;
}

.hero__desc {
  font-size: 1.0625rem;
  color: rgba(245, 240, 230, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.stat__num {
  display: block;
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--amber);
}

.stat__label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.45);
}

/* Hero image frame */
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.hero-frame__ring {
  position: absolute;
  inset: -16px;
  border: 2px solid var(--amber);
  transform: rotate(6deg);
  pointer-events: none;
}
.hero-frame__img {
  position: relative;
  border: 3px solid var(--cream);
  background: var(--ink-soft);
  transform: rotate(-3deg);
  box-shadow: 12px 12px 0 var(--amber);
  overflow: hidden;
}
.hero-frame__img img { width: 100%; }
.hero-frame__float {
  position: absolute;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 2;
}
.hero-frame__float strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--amber);
}
.hero-frame__float--1 { top: 12%; left: -8%; animation: floatY 4s ease-in-out infinite; }
.hero-frame__float--2 { bottom: 10%; right: -6%; animation: floatY 4s ease-in-out infinite 1s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Marquee trust */
.marquee-trust {
  background: var(--amber);
  border-block: 3px solid var(--ink);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-trust__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-trust__content {
  display: flex;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}
.marquee-trust__content span {
  font-family: var(--heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  position: relative;
  padding: 24px;
}

.hero__card img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero__card-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(29, 111, 255, 0.4), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Problems slider */
.problems {
  padding: 80px 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.problems__slider {
  background: var(--surface);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.problems__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.problem-card__img {
  overflow: hidden;
  background: var(--green-light);
  position: relative;
  border-right: 1px solid var(--green-200);
}

.problem-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(45, 170, 106, 0.08) 0%, rgba(232, 247, 238, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.problem-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.problem-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.problem-card__body h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}

.problem-card__body p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.problems__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-top: 1px solid var(--border);
}

.problems__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.problems__btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.problems__dots {
  display: flex;
  gap: 8px;
}

.problems__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.problems__dot.active {
  background: var(--blue);
  width: 28px;
  border-radius: 5px;
}

/* Section head */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-head__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  background: var(--ink);
  padding: 6px 12px;
  margin-bottom: 16px;
}

.section-head__title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-head__desc {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Features */
.features {
  padding: 100px 0;
}

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

.features__grid--bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card--tall { grid-row: span 2; }
.feature-card--wide { grid-column: span 2; }

.feature-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--amber);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: var(--heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* How it works */
.how {
  padding: 100px 0;
  background: var(--surface);
}

.how__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

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

.how__step {
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.how__step:hover {
  border-color: rgba(29, 111, 255, 0.25);
  box-shadow: var(--shadow);
}

.how__num {
  display: block;
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 12px;
}

.how__step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.how__step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Badge section */
.badge-section {
  padding: 100px 0;
  background: var(--ink);
  color: var(--cream);
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
  padding-top: 120px;
}

.badge-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.badge-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.badge-section__list {
  margin-bottom: 32px;
}

.badge-section__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.badge-section__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.badge-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-section__visual img {
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3));
}

/* Why */
.why {
  padding: 100px 0;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.why__content > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why__point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.why__point svg {
  flex-shrink: 0;
  color: var(--cyan);
}

.why__visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: var(--surface);
}

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

.plan-card {
  position: relative;
  background: var(--surface);
  border: 3px solid var(--ink);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.plan-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.plan-card--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--amber);
  box-shadow: 8px 8px 0 var(--amber);
  transform: translateY(-8px);
}

.plan-card--featured:hover {
  transform: translate(-4px, -12px);
  box-shadow: 12px 12px 0 var(--amber);
}

.plan-card--featured .plan-card__for,
.plan-card--featured .plan-card__period {
  color: rgba(255, 255, 255, 0.6);
}

.plan-card--featured .plan-card__features li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
}

.plan-card__head h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.plan-card__for {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.plan-card__price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-card--featured .plan-card__price {
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-card__amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.plan-card__period {
  font-size: 0.875rem;
  color: var(--muted);
}

.plan-card__features {
  margin-bottom: 32px;
}

.plan-card__features li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.plan-card__features li:last-child { border-bottom: none; }

.plan-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.plan-card--featured .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.plan-card--featured .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Blog */
.blog {
  padding: 100px 0;
}

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

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__body time {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 8px 0 10px;
  line-height: 1.4;
}

.blog-card__body h3 a:hover { color: var(--blue); }

.blog-card__body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.blog-card__link:hover { text-decoration: underline; }

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--surface);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg);
  transition: var(--transition);
}

.faq__item[open] {
  border-color: rgba(29, 111, 255, 0.25);
  box-shadow: var(--shadow);
}

.faq__item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 24px 18px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA */
.cta {
  padding: 88px 0;
  background: var(--amber);
  color: var(--ink);
  text-align: center;
  border-top: 3px solid var(--ink);
}

.cta__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
  max-width: 700px;
  margin-inline: auto;
}

.cta__inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 1.0625rem;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(245, 240, 230, 0.65);
  padding-top: 64px;
  border-top: 3px solid var(--amber);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}

.logo--footer .logo__text-part { color: var(--white); }

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

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

.footer__col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.9375rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--cyan); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8125rem;
}

/* Payment page */
.payment-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.payment-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.payment-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.payment-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.payment-form h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.payment-form > p {
  color: var(--muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 111, 255, 0.12);
}

.plan-summary {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.plan-summary__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.125rem;
}

.plan-summary__price {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 4px;
}

.payment-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.payment-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.payment-info__features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.9375rem;
}

.payment-info__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ─── Extended Components ─── */

h1, h2, h3, h4 { font-family: var(--heading); }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.1); }
.btn--success { background: var(--cyan) !important; border-color: var(--cyan) !important; }

.topbar__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.topbar__status-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.topbar__links { display: flex; gap: 20px; }
.topbar__inner { justify-content: space-between; }

body.nav-open { overflow: hidden; }

/* Dashboard mockup */
.dashboard-mock {
  background: var(--navy-mid);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
}
.dashboard-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dashboard-mock__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.dashboard-mock__dot:first-child { background: #ff5f57; }
.dashboard-mock__dot:nth-child(2) { background: #febc2e; }
.dashboard-mock__dot:nth-child(3) { background: #28c840; }
.dashboard-mock__url {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
}
.dashboard-mock__body { display: flex; min-height: 280px; }
.dashboard-mock__sidebar {
  width: 56px;
  padding: 16px 12px;
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-mock__nav-item {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.dashboard-mock__nav-item--active { background: var(--blue); }
.dashboard-mock__main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.dashboard-mock__cards { display: flex; gap: 10px; }
.dashboard-mock__card {
  flex: 1;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.dashboard-mock__card--green { border-color: rgba(0,212,170,0.3); background: rgba(0,212,170,0.08); }
.dashboard-mock__card-label { display: block; font-size: 0.625rem; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.dashboard-mock__card-val { font-family: var(--heading); font-size: 1rem; font-weight: 700; color: var(--white); }
.dashboard-mock__card--green .dashboard-mock__card-val { color: var(--cyan); }
.dashboard-mock__chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 8px 0;
}
.dashboard-mock__chart-bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--blue), rgba(29,111,255,0.3));
  border-radius: 4px 4px 0 0;
  animation: chartGrow 1.2s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
@keyframes chartGrow { to { transform: scaleY(1); } }
.dashboard-mock__alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 8px;
  font-size: 0.6875rem;
  color: var(--cyan);
}

/* Trust bar */
.trust {
  padding: 32px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust__label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.trust__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.trust__item svg { color: var(--blue); flex-shrink: 0; }

.problem-card__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--amber);
  padding: 4px 10px;
  margin-bottom: 14px;
}

/* Metrics */
.metrics {
  padding: 64px 0;
  background: var(--ink);
  color: var(--cream);
  border-block: 3px solid var(--amber);
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.metrics__num {
  display: block;
  font-family: var(--heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1.2;
}
.metrics__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.how__step-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,111,255,0.1);
  border-radius: 10px;
  color: var(--blue);
  margin-bottom: 12px;
}

/* Compare table */
.compare { padding: 100px 0; }
.compare__table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare__head, .compare__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare__table--plans .compare__head,
.compare__table--plans .compare__row {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.compare__head { background: var(--bg); font-weight: 700; }
.compare__head .compare__cell { font-family: var(--heading); color: var(--navy); }
.compare__row:last-child { border-bottom: none; }
.compare__row:nth-child(even) { background: rgba(244,247,252,0.5); }
.compare__cell {
  padding: 16px 20px;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
}
.compare__cell--feature { font-weight: 500; color: var(--text); }
.compare__cell--us { background: rgba(232,160,32,0.12); font-weight: 700; }
.compare__yes { color: var(--cyan); font-weight: 700; }
.compare__no { color: var(--muted); }

/* Testimonials */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--surface);
  border: 2px solid var(--ink);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: var(--heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.25;
}
.testimonial:hover { box-shadow: 6px 6px 0 var(--ink); transform: translate(-2px, -2px); }
.testimonial__stars { color: #f59e0b; font-size: 0.875rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial footer { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--amber);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
}
.testimonial footer span { font-size: 0.8125rem; color: var(--muted); }

.pricing__note, .blog__more { text-align: center; margin-top: 40px; }
.pricing__note a { color: var(--blue); font-weight: 600; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer extras */
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__social a:hover { background: var(--blue); color: var(--white); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__tagline { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }
.footer__links { grid-template-columns: repeat(4, 1fr); }

/* Page hero */
.page-hero {
  padding: 80px 0 64px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero__inner { position: relative; max-width: 720px; margin-inline: auto; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.125rem; line-height: 1.7; }
.page-hero--sm { padding: 56px 0 48px; }
.page-hero--sm h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); }

/* About */
.about-story { padding: 80px 0; }
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story__content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-story__content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-story__visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.values { padding: 80px 0; background: var(--surface); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); border-color: rgba(29,111,255,0.2); }
.value-card__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,111,255,0.08);
  border-radius: 12px;
  color: var(--blue);
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* Services */
.services-list { padding: 80px 0; }
.service-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block__icon {
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.service-block__icon img { width: 48px; height: 48px; object-fit: contain; }
.service-block h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-block p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.service-block ul { padding-left: 0; }
.service-block li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: var(--text);
}
.service-block li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

/* Contact */
.contact-section { padding: 80px 0; }
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,111,255,0.08);
  border-radius: 10px;
  color: var(--blue);
  margin-bottom: 14px;
}
.contact-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 10px; line-height: 1.6; }
.contact-card__link { color: var(--blue); font-weight: 600; font-size: 0.9375rem; }
.contact-card__link:hover { text-decoration: underline; }

.contact-form, .payment-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h2, .payment-form h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form > p, .payment-form > p { color: var(--muted); margin-bottom: 28px; font-size: 0.9375rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: var(--transition);
  color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,111,255,0.12);
  background: var(--white);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
}
.form-check input { margin-top: 3px; accent-color: var(--blue); flex-shrink: 0; }
.form-check a { color: var(--blue); }

/* Payment */
.payment-page { min-height: 100vh; display: flex; flex-direction: column; }
.payment-page main { flex: 1; }
.payment-hero { padding: 60px 0 80px; }
.payment-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.payment-steps__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}
.payment-steps__item--active { color: var(--blue); }
.payment-steps__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--border);
  color: var(--muted);
}
.payment-steps__item--active .payment-steps__num {
  background: var(--blue);
  color: var(--white);
}
.payment-steps__line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  max-width: 60px;
}
.payment-info h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.payment-info > p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.payment-info__features { margin-bottom: 24px; }
.payment-info__features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: var(--text);
}
.payment-info__features li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.payment-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.payment-trust svg { color: var(--cyan); }

.plan-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}
.plan-summary__row { display: flex; justify-content: space-between; align-items: center; }
.plan-summary__name { font-weight: 700; color: var(--navy); font-size: 1.0625rem; }
.plan-summary__desc { font-size: 0.8125rem; color: var(--muted); }
.plan-summary__price {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}
.payment-form__help {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}
.payment-form__help a { color: var(--blue); }

/* Legal */
.legal-content { padding: 64px 0 80px; }
.legal-content__inner { max-width: 760px; }
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}
.legal-content a { color: var(--blue); }

/* Blog article */
.article { padding: 64px 0 80px; }
.article__header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.article__header time {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--muted);
}
.article__header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.article__header p { color: var(--muted); font-size: 1.0625rem; line-height: 1.7; }
.article__img {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.article__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
}
.article__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
}
.article__body p { margin-bottom: 20px; color: var(--muted); }
.article__body ul { margin-bottom: 20px; padding-left: 24px; list-style: disc; }
.article__body li { margin-bottom: 8px; color: var(--muted); }
.article__nav {
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.article__nav a { color: var(--blue); font-weight: 600; font-size: 0.9375rem; }

.blog--page { padding-top: 0; }
.pricing--page { padding-top: 0; }

/* Features 6-col grid */
.features__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--delay { transition-delay: 0.15s; }
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner,
  .badge-section__inner,
  .why__inner,
  .how__inner,
  .faq__inner,
  .payment-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual { order: -1; }
  .dashboard-mock { max-width: 420px; margin: 0 auto; }

  .features__grid,
  .features__grid--bento { grid-template-columns: repeat(2, 1fr); }
  .feature-card--tall { grid-row: span 1; }
  .feature-card--wide { grid-column: span 1; }
  .pricing__grid,
  .blog__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-story__inner,
  .contact-section__inner { grid-template-columns: 1fr; }
  .compare__head, .compare__row { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }

  .how__steps { grid-template-columns: 1fr; }
  .problem-card { grid-template-columns: 1fr; }
  .problem-card__img { max-height: 220px; }
}

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

  .nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    margin-left: 0;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link { width: 100%; padding: 12px 16px; }

  .header__cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 48px 0 60px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .problem-card__body { padding: 28px; }
  .payment-form, .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .features__grid,
  .features__grid--bento { grid-template-columns: 1fr; }
  .trust__items { gap: 20px; }
  .service-block { grid-template-columns: 1fr; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .footer__links { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .compare__head, .compare__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .compare__cell { padding: 10px 16px; }
  .compare__cell--feature { background: var(--bg); font-weight: 700; }
}

/* ═══ DMCA-style Theme Overrides ═══ */

/* Topbar & Header */
.topbar {
  background: var(--green-50);
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.topbar__link:hover { color: var(--green-dark); }
.topbar__status-dot { background: var(--green) !important; }

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.logo { font-family: var(--heading); color: var(--text-dark); font-weight: 700; }
.logo em { color: var(--green); }

.nav__link {
  font-family: var(--font);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  border-radius: var(--radius-sm);
}
.nav__link:hover,
.nav__link.active {
  color: var(--green-dark);
  background: var(--green-light);
  box-shadow: none;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%);
  color: var(--text-dark);
  clip-path: none;
  padding: 64px 0 80px;
}
.hero__grid {
  background: radial-gradient(circle at 80% 20%, var(--green-light) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, var(--green-100) 0%, transparent 50%);
  opacity: 1;
}
.hero__title { font-family: var(--heading); color: var(--text-dark); font-weight: 700; }
.hero__title span { color: var(--green-dark); font-style: normal; display: inline; }
.hero__desc { color: var(--muted); }

.badge {
  background: var(--green-light);
  border: 1px solid rgba(94, 201, 160, 0.3);
  color: var(--green-dark);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
  border-radius: 100px;
}
.badge__dot { background: var(--green); border-radius: 50%; }

.stat__num { font-family: var(--heading); color: var(--green-dark); font-weight: 700; }
.stat__label {
  font-family: var(--font);
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.8125rem;
}



/* Trust bar */
.trust {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.trust__item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust__item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* Sections */
.section-head__tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.section-head__title { font-family: var(--heading); color: var(--text-dark); font-weight: 700; }
.section-head__desc { color: var(--muted); }

/* Problems slider */
.problems__slider {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.problem-card__tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
}
.problem-card__body h2 { color: var(--text-dark); font-weight: 600; }
.problems__btn {
  border-radius: 50%;
  border-color: var(--border);
}
.problems__btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.problems__dot.active { background: var(--green); }

/* Features */
.features__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
  background: var(--white);
  padding: 28px 24px;
}
.feature-card::before { display: none; }
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}
.feature-card__icon {
  background: var(--green-light);
  border: none;
  border-radius: 12px;
  width: 52px;
  height: 52px;
}
.feature-card h3 {
  font-family: var(--heading);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--text-dark);
}

/* Metrics */
.metrics {
  background: var(--green-50);
  border: none;
  color: var(--text-dark);
}
.metrics__num { color: var(--green-dark); }
.metrics__label { color: var(--muted); }

/* How it works */
.how { background: var(--white); }
.how__step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.how__step:hover { border-color: var(--green-200); box-shadow: var(--shadow); }
.how__num { color: var(--green-dark); font-family: var(--heading); }
.how__step-icon { background: var(--green-light); color: var(--green-dark); border-radius: 10px; }

/* Badge section */
.badge-section {
  background: var(--white);
  color: var(--text-dark);
  clip-path: none;
  margin-top: 0;
  padding-top: 100px;
  border-top: 1px solid var(--border);
}
.badge-section h2 { color: var(--text-dark); }
.badge-section p { color: var(--muted); }
.badge-section__list li::before { color: var(--green); }

/* Compare */
.compare__table { border: 1px solid var(--border); border-radius: var(--radius); box-shadow: none; }
.compare__head { background: var(--green-50); }
.compare__cell--us { background: var(--green-light); }
.compare__yes { color: var(--green-dark); font-weight: 600; }
.compare__no { color: var(--muted); }

/* Testimonials */
.testimonials { background: var(--bg); }
.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
}
.testimonial::before { color: var(--green-200); opacity: 0.5; }
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial__avatar {
  background: var(--green-light);
  color: var(--green-dark);
  border: none;
  border-radius: 50%;
}
.testimonial__stars { color: #fbbf24; }

/* Pricing */
.pricing { background: var(--white); }
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
  background: var(--white);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card--featured {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--green);
  box-shadow: var(--shadow-lg);
  transform: none;
}
.plan-card--featured:hover { transform: translateY(-4px); }
.plan-card--featured .plan-card__for,
.plan-card--featured .plan-card__period { color: var(--muted); }
.plan-card--featured .plan-card__features li { color: var(--text); border-color: var(--border); }
.plan-card__badge {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font);
}
.plan-card__amount { color: var(--text-dark); }
.pricing__note a { color: var(--green-dark); }

/* Blog */
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__link { color: var(--green-dark); }

/* FAQ */
.faq { background: var(--bg); }
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.faq__item[open] { border-color: var(--green-200); box-shadow: var(--shadow); }
.faq__item summary { color: var(--text-dark); font-weight: 500; }
.faq__item summary::after { color: var(--green-dark); }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-darker) 100%);
  color: var(--white);
  border: none;
}
.cta__inner h2 { color: var(--white); }
.cta__inner p { color: rgba(255,255,255,0.85); }
.btn--white { background: var(--white); color: var(--green-dark); border-color: var(--white); box-shadow: none; }
.btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost-white { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost-white:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  border-top: 3px solid var(--green);
}
.footer__social a { background: rgba(255,255,255,0.08); border-radius: 8px; }
.footer__social a:hover { background: var(--green); color: var(--white); }
.footer__col a:hover { color: var(--green); }
.logo--footer .logo__text-part { color: var(--white); }

/* Page hero */
.page-hero {
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
  color: var(--text-dark);
  clip-path: none;
}
.page-hero h1 { color: var(--text-dark); }
.page-hero p { color: var(--muted); }
.page-hero .section-head__tag { background: var(--green-light); color: var(--green-dark); }

/* Forms */
.contact-form, .payment-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 170, 106, 0.15);
}
.form-check a { color: var(--green-dark); }
.payment-steps__item--active { color: var(--green-dark); }
.payment-steps__item--active .payment-steps__num { background: var(--green); }
.plan-summary { background: var(--green-50); border-color: var(--border); }
.plan-summary__price { color: var(--green-dark); }
.payment-info__features li::before,
.service-block li::before { color: var(--green); }

/* Misc cards */
.contact-card, .value-card, .service-block {
  border-color: var(--border);
  border-radius: var(--radius);
}
.contact-card:hover, .value-card:hover { box-shadow: var(--shadow-md); }
.contact-card__icon, .value-card__icon { background: var(--green-light); color: var(--green-dark); border-radius: 10px; }
.contact-card__link { color: var(--green-dark); }
.legal-content a { color: var(--green-dark); }
.article__nav a { color: var(--green-dark); }

.btn--success { background: var(--green) !important; border-color: var(--green) !important; color: var(--white) !important; }

@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .features__grid { grid-template-columns: 1fr; }
  .trust__inner { gap: 16px 24px; }
}

/* ═══ Logo — Rectangle (1/3 lock · 2/3 WebLock) ═══ */

.logo {
  gap: 0;
  font-size: inherit;
}

.logo__rect {
  display: inline-flex;
  align-items: stretch;
  min-width: 148px;
  height: 40px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--green-200);
  box-shadow: 0 2px 10px rgba(45, 170, 106, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo:hover .logo__rect {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45, 170, 106, 0.22);
}

.logo__icon-part {
  flex: 1 1 33.333%;
  max-width: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3ec87e 0%, var(--green) 45%, var(--green-dark) 100%);
  padding: 4px;
}

.logo__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.logo__lock {
  width: 14px;
  height: 14px;
}

.logo__text-part {
  flex: 2 1 66.667%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px 0 12px;
  background: var(--white);
  font-family: var(--heading);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-dark);
  white-space: nowrap;
}

.logo__text-part em {
  font-style: normal;
  color: var(--green-dark);
}

.logo--footer .logo__text-part {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.logo--footer .logo__text-part em {
  color: #7ee0a8;
}

/* ═══ Hero Radar Animation ═══ */

.radar-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 1;
  padding: 12px;
}

.radar__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 170, 106, 0.12) 0%, transparent 68%);
  animation: haloPulse 3s ease-in-out infinite;
}

.radar__orbit {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px dashed rgba(45, 170, 106, 0.2);
  animation: radarSweep 20s linear infinite reverse;
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

.radar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(94, 201, 160, 0.08) 0%, transparent 45%),
    radial-gradient(circle at center, rgba(45, 170, 106, 0.1) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 12px 40px rgba(45, 170, 106, 0.18),
    0 0 0 1px var(--green-200),
    inset 0 0 60px rgba(45, 170, 106, 0.08);
  overflow: hidden;
}

.radar__grid {
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(from 0deg, transparent 0deg 11deg, rgba(45, 170, 106, 0.035) 11deg 12deg),
    radial-gradient(circle, transparent 24%, rgba(45, 170, 106, 0.07) 25%, transparent 26%),
    radial-gradient(circle, transparent 49%, rgba(45, 170, 106, 0.06) 50%, transparent 51%),
    radial-gradient(circle, transparent 74%, rgba(45, 170, 106, 0.05) 75%, transparent 76%);
}

.radar__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(45, 170, 106, 0.18);
}

.radar__ring--1 { width: 25%; height: 25%; }
.radar__ring--2 { width: 50%; height: 50%; }
.radar__ring--3 { width: 75%; height: 75%; }
.radar__ring--4 { width: 94%; height: 94%; border-color: rgba(94, 201, 160, 0.25); }

.radar__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  height: 20%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(94, 201, 160, 0.5);
  animation: radarPulse 3s ease-out infinite;
}

.radar__pulse--2 { animation-delay: 1.5s; }

@keyframes radarPulse {
  0% { width: 20%; height: 20%; opacity: 0.8; }
  100% { width: 100%; height: 100%; opacity: 0; }
}

.radar__crosshair {
  position: absolute;
  background: rgba(45, 170, 106, 0.12);
}

.radar__crosshair--h {
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  transform: translateY(-50%);
}

.radar__crosshair--v {
  left: 50%;
  top: 5%;
  bottom: 5%;
  width: 1px;
  transform: translateX(-50%);
}

.radar__sweep-trail {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 250deg,
    rgba(45, 170, 106, 0.06) 290deg,
    rgba(94, 201, 160, 0.12) 330deg,
    transparent 360deg
  );
  animation: radarSweep 4s linear infinite;
  opacity: 0.7;
}

.radar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 310deg,
    rgba(94, 201, 160, 0.65) 328deg,
    rgba(45, 170, 106, 0.25) 340deg,
    transparent 360deg
  );
  animation: radarSweep 4s linear infinite;
  filter: blur(0.5px);
}

@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar__blip {
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 2;
}

.radar__blip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px rgba(94, 201, 160, 0.5);
  animation: blipPulse 2.5s ease-in-out infinite;
}

.radar__blip-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(94, 201, 160, 0.6);
  animation: blipRing 2.5s ease-out infinite;
}

@keyframes blipPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes blipRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.radar__blip--1 { top: 18%; left: 70%; }
.radar__blip--2 { top: 55%; left: 20%; }
.radar__blip--2::before { animation-delay: 0.8s; }
.radar__blip--2 .radar__blip-ring { animation-delay: 0.8s; }
.radar__blip--3 { top: 70%; left: 65%; }
.radar__blip--3::before { animation-delay: 1.6s; }
.radar__blip--3 .radar__blip-ring { animation-delay: 1.6s; }
.radar__blip--4 { top: 32%; left: 38%; }
.radar__blip--4::before { animation-delay: 2.2s; }
.radar__blip--4 .radar__blip-ring { animation-delay: 2.2s; }

.radar__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar__center-glow {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--accent));
  opacity: 0.35;
  filter: blur(10px);
  z-index: -1;
  animation: haloPulse 2.5s ease-in-out infinite;
}

.radar__center-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3ec87e 0%, var(--green) 45%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow:
    0 6px 24px rgba(45, 170, 106, 0.35),
    inset 0 2px 6px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.radar__center-circle svg { width: 30px; height: 30px; }

.radar-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 5;
  animation: floatY 4s ease-in-out infinite;
}

.radar-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  flex-shrink: 0;
}

.radar-float--1 .radar-float__icon {
  background: var(--green-light);
  color: var(--green-dark);
}

.radar-float strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}

.radar-float__label {
  color: var(--muted);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.radar-float--1 {
  top: 6%;
  left: -2%;
  animation-delay: 0s;
}

.radar-float--1 strong { color: var(--green-dark); }

.radar-float--2 {
  bottom: 10%;
  right: -4%;
  animation-delay: 1.2s;
}

.radar-status {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(94, 201, 160, 0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 5;
}

.radar-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

/* ═══ Protection Flow Section ═══ */

.protection-flow {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.code-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.code-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.code-block__copy {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.code-block__copy:hover { background: var(--blue-dark); }

.code-block__body {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #a8d4f5;
  white-space: pre-wrap;
  word-break: break-all;
}

.protection-flow__note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--muted);
}

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

.protection-step {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.protection-step:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
}

.protection-step__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: 10px;
}

.protection-step__icon--block { background: var(--green-light); color: var(--green-dark); }
.protection-step__icon--warn { background: #fef3c7; color: #d97706; }
.protection-step__icon--badge { background: var(--blue-50); color: var(--blue-dark); }
.protection-step__icon--lock { background: #fce7f3; color: #db2777; }

.protection-step h3 {
  font-family: var(--heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.protection-step p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.protection-step code {
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.75rem;
  padding: 2px 6px;
  background: var(--blue-50);
  color: var(--blue-dark);
  border-radius: 4px;
}

.how .section-head { margin-bottom: 40px; }

.how__steps {
  margin-top: 8px;
}

/* ═══ Features — DMCA-style compact icons ═══ */

.features {
  background: var(--white);
}

.features__grid--original {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card--image {
  padding: 28px 22px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--white);
}

.feature-card--image:hover {
  transform: translateY(-3px);
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
}

.feature-card__img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  aspect-ratio: unset;
  overflow: hidden;
  background: var(--green-light);
  border: 1px solid var(--green-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Blue/cyan brand assets → WebLock green palette */
.theme-tint {
  filter: hue-rotate(118deg) saturate(1.1) brightness(1.03);
}

.feature-card--image:hover .feature-card__img img {
  transform: scale(1.08);
}

.feature-card__body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card__body h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-card__body p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ═══ Badge Preview Section ═══ */

.badge-preview {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.badge-preview__browser {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.badge-preview__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--border);
}

.badge-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-preview__dot--red { background: #ff6b6b; }
.badge-preview__dot--yellow { background: #ffd93d; }
.badge-preview__dot--green { background: var(--green); }

.badge-preview__url {
  margin-left: 8px;
  flex: 1;
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.6875rem;
  color: var(--muted);
  text-align: center;
}

.badge-preview__page {
  position: relative;
  padding: 20px 16px 72px;
  min-height: 280px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.badge-preview__skeleton {
  border-radius: 6px;
  background: linear-gradient(90deg, var(--blue-50) 0%, var(--border) 50%, var(--blue-50) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 2s ease-in-out infinite;
  margin-bottom: 12px;
}

.badge-preview__skeleton--hero {
  height: 56px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.badge-preview__skeleton--line { height: 10px; }
.badge-preview__skeleton--short { width: 65%; }
.badge-preview__skeleton--mid { width: 80%; }
.badge-preview__skeleton--img {
  height: 72px;
  border-radius: 8px;
  margin: 16px 0;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.badge-preview__badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(45, 170, 106, 0.2), 0 0 12px rgba(45, 170, 106, 0.15);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: badgeFloat 3s ease-in-out infinite;
  z-index: 2;
}

.badge-preview__badge:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 170, 106, 0.28);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* Badge mini-radar (matches secure-script.js live badge) */
.wl-badge-radar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wl-badge-radar__disc {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%);
  border: 1px solid var(--green-200);
  box-shadow: 0 2px 8px rgba(45, 170, 106, 0.15);
}

.wl-badge-radar__grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 46%, rgba(45, 170, 106, 0.09) 47%, transparent 49%),
    radial-gradient(circle, transparent 70%, rgba(45, 170, 106, 0.07) 71%, transparent 73%),
    linear-gradient(rgba(45, 170, 106, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 170, 106, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 8px, 8px 100%;
  background-position: center;
}

.wl-badge-radar__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(45, 170, 106, 0.22);
  pointer-events: none;
}

.wl-badge-radar__ring--1 { width: 52%; height: 52%; }
.wl-badge-radar__ring--2 { width: 74%; height: 74%; }
.wl-badge-radar__ring--3 { width: 90%; height: 90%; border-color: rgba(94, 201, 160, 0.28); }

.wl-badge-radar__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(94, 201, 160, 0.45);
  animation: wlRadarPulse 2.5s ease-out infinite;
  pointer-events: none;
}

.wl-badge-radar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 298deg,
    rgba(94, 201, 160, 0.55) 318deg,
    rgba(45, 170, 106, 0.22) 336deg,
    transparent 360deg
  );
  animation: wlRadarSweep 3s linear infinite;
  pointer-events: none;
}

.wl-badge-radar__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wl-badge-radar__lock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3ec87e, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 2px 6px rgba(31, 143, 86, 0.4);
}

.wl-badge-radar__lock svg { width: 10px; height: 10px; }

@keyframes wlRadarSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes wlRadarPulse {
  0% { width: 30%; height: 30%; opacity: 0.75; }
  100% { width: 100%; height: 100%; opacity: 0; }
}

.badge-preview__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-preview__badge-text strong {
  font-family: var(--heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-preview__badge-status {
  font-size: 0.625rem;
  color: var(--muted);
}

.badge-preview__badge-status em {
  font-style: normal;
  color: var(--green-dark);
  font-weight: 600;
}

.badge-preview__popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: calc(100% - 32px);
  max-width: 300px;
  padding: 24px 20px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.2);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 10;
}

.badge-preview__popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.badge-preview__popup img {
  max-width: 72px;
  margin: 0 auto 12px;
}

.badge-preview__popup h4 {
  font-family: var(--heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.badge-preview__popup p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.badge-preview__popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.badge-preview__popup-close:hover { background: var(--blue-dark); }

.badge-preview__caption {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.badge-section__visual {
  position: relative;
}

/* ═══ Extended Responsive ═══ */

@media (min-width: 1400px) {
  .container { width: min(1280px, 90vw); }
  .hero__inner { gap: 80px; }
  .radar-wrap { max-width: 500px; }
  .features__grid--original { gap: 32px; }
}

@media (max-width: 1024px) {
  .protection-flow { grid-template-columns: 1fr; }
  .features__grid--original { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .radar-wrap { max-width: 380px; }
  .radar-float--1 { left: 0; }
  .radar-float--2 { right: 0; }
  .badge-preview { max-width: 360px; }
}

@media (max-width: 768px) {
  .hero__inner { gap: 32px; }
  .radar-wrap { max-width: min(320px, 90vw); padding: 8px; }
  .radar__center-circle { width: 52px; height: 52px; }
  .radar__center-circle svg { width: 24px; height: 24px; }
  .radar__center-glow { width: 60px; height: 60px; }
  .radar-float { padding: 8px 10px; gap: 8px; }
  .radar-float strong { font-size: 0.9375rem; }
  .radar-float--1 { top: 2%; left: 0; }
  .radar-float--2 { bottom: 6%; right: 0; }
  .protection-step { padding: 14px 16px; gap: 12px; }
  .protection-step__icon { width: 38px; height: 38px; }
  .badge-preview__page { min-height: 240px; padding-bottom: 64px; }
  .feature-card__body { padding: 20px; }
}

/* DMCA-style section alternation */
.problems { background: var(--green-50); }
.trust { background: var(--white); }
.metrics { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compare { background: var(--green-50); padding-top: 80px; padding-bottom: 80px; }
.pricing { background: var(--white); }

@media (max-width: 480px) {
  .feature-card__img { width: 48px; height: 48px; padding: 6px; }
  .feature-card--image { padding: 22px 18px; }
  .logo__rect { min-width: 132px; height: 36px; border-radius: 0; }
  .logo__circle { width: 22px; height: 22px; }
  .logo__lock { width: 12px; height: 12px; }
  .logo__text-part { font-size: 0.9375rem; padding: 0 10px 0 8px; }
  .radar-wrap { max-width: min(280px, 92vw); }
  .radar-float { display: none; }
  .radar-status { font-size: 0.6875rem; padding: 6px 14px; bottom: -4px; }
  .code-block__body { font-size: 0.75rem; padding: 14px; }
  .trust__item { font-size: 0.8125rem; }
  .badge-preview { max-width: 100%; }
  .badge-preview__popup { width: calc(100% - 24px); }
}

@media (max-width: 360px) {
  .container { width: 94vw; }
  .hero__title { font-size: 1.65rem; }
  .hero__stats { gap: 14px; }
  .stat__num { font-size: 1.25rem; }
  .stat__label { font-size: 0.75rem; }
  .btn--lg { padding: 14px 20px; font-size: 0.9375rem; }
  .protection-step { flex-direction: column; }
  .radar-wrap { max-width: min(240px, 94vw); }
  .radar__center-circle { width: 44px; height: 44px; }
  .radar__center-circle svg { width: 20px; height: 20px; }
  .radar__center-glow { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .radar__sweep,
  .radar__sweep-trail,
  .radar__pulse,
  .radar__orbit,
  .radar__halo,
  .radar__blip::before,
  .radar__blip-ring,
  .radar-float,
  .badge__dot,
  .radar-status__dot,
  .badge-preview__badge,
  .badge-preview__skeleton {
    animation: none;
  }
}

/* ═══ Text visibility — light backgrounds ═══ */

.topbar,
.topbar__link,
.topbar__status { color: var(--muted) !important; }
.topbar__link:hover { color: var(--green-dark) !important; }

.page-hero,
.page-hero h1,
.status-hero,
.status-hero h1 {
  color: var(--text-dark) !important;
}
.page-hero p,
.status-hero p {
  color: var(--muted) !important;
}

.hero,
.hero__title,
.hero__desc,
.hero .stat__label,
.badge-section,
.badge-section h2 {
  color: var(--text-dark) !important;
}
.hero__desc,
.badge-section p,
.badge-section__list li,
.hero .stat__label {
  color: var(--muted) !important;
}
.badge-section__list li { color: var(--text) !important; }

.plan-card,
.plan-card h3,
.plan-card__amount,
.plan-card__features li,
.plan-card__for,
.plan-card__period {
  color: var(--text-dark) !important;
}
.plan-card--featured,
.plan-card--featured h3,
.plan-card--featured .plan-card__amount,
.plan-card--featured .plan-card__features li {
  color: var(--text-dark) !important;
  background: var(--white) !important;
}
.plan-card--featured .plan-card__for,
.plan-card--featured .plan-card__period {
  color: var(--muted) !important;
}

.payment-info h1,
.payment-info p,
.payment-info__features li {
  color: var(--text-dark);
}
.payment-info p { color: var(--muted); }

.problems__btn { color: var(--text-dark); }

/* ═══ Protection Status Page ═══ */

.status-page { background: var(--bg); }

.status-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%);
  text-align: center;
}
.status-hero h1 {
  font-family: var(--heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 12px 0 14px;
}
.status-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.status-check { padding: 0 0 80px; }

.status-check__card {
  max-width: 720px;
  margin: -32px auto 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.status-search label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.status-search__row {
  display: flex;
  gap: 12px;
}

.status-search input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: var(--white);
}

.status-search input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 170, 106, 0.15);
}

.status-search__error {
  margin-top: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b91c1c;
}

.status-search__row .btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.status-preview {
  position: relative;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  min-height: 200px;
}

.status-preview iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  background: var(--white);
}

.status-preview__overlay,
.redirect-preview__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  font-family: var(--heading);
  font-size: 0.9375rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.status-preview__overlay.is-visible,
.redirect-preview__overlay.is-visible {
  opacity: 1;
}

.status-preview__overlay--secure,
.redirect-preview__overlay--secure {
  background: rgba(232, 247, 238, 0.92);
  color: var(--green-dark);
}

.status-preview__overlay--secure svg,
.redirect-preview__overlay--secure svg {
  width: 28px;
  height: 28px;
}

.status-preview__overlay--insecure,
.redirect-preview__overlay--insecure {
  background: rgba(254, 242, 242, 0.92);
  color: #b91c1c;
}

.status-preview__overlay--insecure span:first-child,
.redirect-preview__overlay--insecure span:first-child {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.status-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.status-loading__spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--green-200);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: radarSweep 0.8s linear infinite;
}

.status-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.status-result__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.status-result__badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-result__badge-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-result__badge-circle svg { width: 18px; height: 18px; }

.status-result--inactive .status-result__badge {
  background: #fef2f2;
  border-color: #fecaca;
}
.status-result--inactive .status-result__badge-circle {
  background: linear-gradient(135deg, #f87171, #dc2626);
}

.status-result__header h2 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  word-break: break-all;
}

.status-result__tagline {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}

.status-result--active .status-result__tagline { color: var(--green-dark); font-weight: 500; }
.status-result--inactive .status-result__tagline { color: #b91c1c; font-weight: 500; }

.status-result__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.status-result__item {
  padding: 14px 16px;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.status-result--inactive .status-result__item {
  background: var(--bg);
}

.status-result__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.status-result__value {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}

.status-result--inactive .status-result__value { color: var(--text-dark); }

.status-result__note {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.status-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.status-info__card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.status-info__card h3 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.status-info__card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.status-info__card code {
  font-size: 0.75rem;
  padding: 2px 5px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 4px;
}

/* ═══ Protection Demo Page ═══ */

.demo-page { background: var(--bg); }

.demo-content { padding: 0 0 60px; }

.demo-alert {
  max-width: 800px;
  margin: -24px auto 32px;
  padding: 20px 24px;
  background: var(--green-light);
  border: 1px solid var(--green-200);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.demo-alert ol {
  margin: 10px 0 0 20px;
  padding: 0;
}

.demo-alert li { margin-bottom: 6px; color: var(--muted); }

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

.demo-card {
  padding: 28px;
  background: var(--white);
  border: 2px solid var(--green-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.demo-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 12px;
}

.demo-card h2 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.demo-card p,
.demo-card blockquote {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.demo-card blockquote {
  padding: 14px 16px;
  background: var(--green-50);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
}

.demo-images {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.demo-images figure {
  text-align: center;
  padding: 12px;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.demo-images img {
  margin: 0 auto 8px;
  border-radius: 8px;
}

.demo-images figcaption {
  font-size: 0.75rem;
  color: var(--muted);
}

.demo-code {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.demo-code h3 {
  font-family: var(--heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.demo-code p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}

.demo-code code {
  font-size: 0.8125rem;
  padding: 2px 6px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 4px;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.demo-spacer {
  padding: 120px 0 200px;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Redirect page */
.redirect-page {
  padding: 80px 0;
  min-height: 50vh;
}

.redirect-page__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.redirect-page__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.redirect-page__icon .logo__rect {
  min-width: 220px;
  height: 72px;
  border-radius: 0;
}

.redirect-page__icon .logo__circle {
  width: 44px;
  height: 44px;
}

.redirect-page__icon .logo__lock {
  width: 24px;
  height: 24px;
}

.redirect-page__icon .logo__text-part {
  font-size: 1.5rem;
  padding: 0 20px;
}

.redirect-page h1 {
  font-family: var(--heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.redirect-page p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.redirect-page__note { font-size: 0.875rem; }

.redirect-page__alert {
  padding: 12px 16px;
  margin-bottom: 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #b91c1c;
  font-size: 0.9375rem;
  font-weight: 500;
}

.redirect-preview {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 24px;
}

.redirect-preview__domain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.redirect-preview__domain svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.redirect-preview__frame {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  min-height: 180px;
}

.redirect-preview__frame iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  background: var(--white);
}

.redirect-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 20px;
}

.redirect-meta__item {
  padding: 14px 16px;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: left;
}

.redirect-meta__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.redirect-meta__value {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.redirect-meta__value--on { color: var(--green-dark); }
.redirect-meta__value--off { color: #b91c1c; }

.redirect-blocked {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
}

.redirect-blocked__inner {
  max-width: 480px;
}

.redirect-blocked h1 {
  font-family: var(--heading);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.redirect-blocked p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.redirect-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .demo-grid { grid-template-columns: 1fr; }
  .demo-actions { flex-direction: column; align-items: stretch; }
  .demo-actions .btn { width: 100%; }
}

@media (max-width: 768px) {
  .status-search__row { flex-direction: column; }
  .status-search__row .btn { width: 100%; }
  .redirect-meta { grid-template-columns: 1fr; }
  .status-preview iframe { height: 180px; }
  .redirect-preview__frame iframe { height: 160px; }
  .status-check__card { padding: 24px 20px; margin-top: -24px; }
  .status-info { grid-template-columns: 1fr; }
  .status-result__grid { grid-template-columns: 1fr; }
  .status-result__actions { flex-direction: column; }
  .status-result__actions .btn { width: 100%; }
}