/* ===================================================
   W&D AGENCY — style.css
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --accent-lime: #C4F82A;
  --accent-purple: #7C3AED;
  --accent-purple-light: #A78BFA;
  --accent-orange: #FA541C;
  --accent-blue: #3B82F6;
  --bg-page: #0A0A0A;
  --bg-card: #18181B;
  --bg-elevated: #27272A;
  --border-subtle: #27272A;
  --border-muted: #3F3F46;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-tertiary: #71717A;
  --text-muted: #52525B;
  --text-inverted: #0A0A0A;
  --green: #22C55E;
  --red: #EF4444;
  --yellow: #F59E0B;

  --font-grotesk: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Manrope', sans-serif;

  --px: 96px;
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; zoom: 1.1; }
body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
button { cursor: pointer; border: none; }
input, textarea, select { outline: none; font-family: var(--font-body); }
[data-lucide] { display: inline-flex; flex-shrink: 0; vertical-align: middle; }

/* ===================================================
   SHARED COMPONENTS
   =================================================== */

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-lime);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-grotesk);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.section-header .section-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 600px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-lime);
  color: var(--text-inverted);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent-lime);
  font-family: var(--font-body);
  font-weight: 600;
  border: 2px solid var(--accent-lime);
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(196, 248, 42, 0.08); }

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--px);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.header__logo-text {
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

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

.header__nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.header__nav-link:hover { color: var(--text-primary); }

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

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 49;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__link {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.mobile-nav__link:hover { color: var(--text-primary); }
.mobile-nav__cta {
  font-size: 18px;
  padding: 16px 40px;
  margin-top: 8px;
}

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

.hero {
  position: relative;
  width: 100%;
  padding: 80px var(--px) 60px;
  overflow: hidden;
  min-height: 640px;
}

.hero__glow-lime {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 248, 42, 0.1) 0%, transparent 70%);
  left: -80px;
  top: -60px;
  pointer-events: none;
  opacity: 0.8;
}

.hero__glow-purple {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  right: 80px;
  top: 160px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Hero Text --- */
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  max-width: 580px;
  padding-top: 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 248, 42, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-lime);
  flex-shrink: 0;
}

.hero__badge-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-lime);
}

.hero__headline {
  font-family: var(--font-grotesk);
  font-size: 54px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

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

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__cta-primary { font-size: 16px; padding: 16px 32px; }
.hero__cta-secondary { font-size: 16px; padding: 14px 32px; }

/* --- Hero Visual --- */
.hero__visual {
  width: 480px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F0F12 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(196, 248, 42, 0.07), 0 0 120px rgba(124, 58, 237, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 32px;
}

.hero__visual-title {
  font-family: var(--font-grotesk);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
}

.hero__visual-sub {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
}

.hero__platforms {
  display: flex;
  gap: 16px;
}

.hero__platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 248, 42, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.hero__status-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-lime);
  letter-spacing: 1.5px;
}

.hero__encrypted {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  width: 100%;
}

.hero__encrypted-line {
  font-family: var(--font-mono);
  font-size: 10px;
}

.hero__encrypted-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__encrypted-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--accent-lime);
}

/* ===================================================
   STATS BAR
   =================================================== */

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px var(--px);
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stats-bar__number {
  font-family: var(--font-grotesk);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-lime);
}

.stats-bar__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===================================================
   CONFIDENTIALITY BANNER
   =================================================== */

.conf-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 20px var(--px);
  background: linear-gradient(90deg,
    rgba(196, 248, 42, 0.03) 0%,
    rgba(124, 58, 237, 0.03) 50%,
    rgba(196, 248, 42, 0.03) 100%);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.conf-banner__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.conf-banner__text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===================================================
   SERVICES SECTION
   =================================================== */

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px var(--px);
  background: var(--bg-page);
}

.services__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  width: 340px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: rgba(196, 248, 42, 0.3);
  transform: translateY(-2px);
}

.service-card__title {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.services__premium-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-lime);
  letter-spacing: 2px;
}

.service-card--premium {
  width: 290px;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */

.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px var(--px);
  background: var(--bg-card);
}

.steps-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  width: 300px;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover {
  border-color: rgba(196, 248, 42, 0.25);
  transform: translateY(-2px);
}

.step-card__number {
  font-family: var(--font-grotesk);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-lime);
  line-height: 1;
}

.step-card__title {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.step-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===================================================
   REPRADAR SECTION
   =================================================== */

.repradar {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--bg-page);
}

.repradar__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px var(--px);
  background: linear-gradient(90deg,
    rgba(124, 58, 237, 0.08) 0%,
    rgba(196, 248, 42, 0.03) 50%,
    rgba(124, 58, 237, 0.08) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.repradar__banner-text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-purple-light);
  letter-spacing: 1.5px;
}

/* --- Main Two-Column --- */
.repradar__main {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px var(--px);
  max-width: calc(1280px + 2 * var(--px));
  margin: 0 auto;
  width: 100%;
}

/* --- Product Info Column --- */
.repradar__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 480px;
}

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

.repradar__logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7C3AED, #2563EB);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.repradar__logo-name {
  font-family: var(--font-grotesk);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.repradar__logo-badge {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.15);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-purple-light);
}

.repradar__headline {
  font-family: var(--font-grotesk);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

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

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

.repradar__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.repradar__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.repradar__cta-btn {
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(180deg, #7C3AED, #5B21B6);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  transition: opacity 0.2s;
}
.repradar__cta-btn:hover { opacity: 0.85; }

.repradar__cta-secondary {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-purple-light);
}

/* --- Dashboard Mockup --- */
.repradar__dashboard {
  flex: 1;
  min-width: 0;
  max-width: 680px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #1A1A2E 0%, #0F0F18 100%);
  box-shadow: 0 20px 80px rgba(124, 58, 237, 0.08), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dash__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.dash__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash__url {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.5);
}

.dash__url-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
}

.dash__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #2563EB);
}

.dash__body {
  display: flex;
  height: 400px;
}

/* Sidebar */
.dash__sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px;
  width: 180px;
  background: #0D0D15;
  border-right: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.dash__sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
}

.dash__sidebar-logo-text {
  font-family: var(--font-grotesk);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.dash__sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.dash__sidebar-item--active {
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent-purple-light);
  font-weight: 600;
}

/* Main Content */
.dash__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  flex: 1;
  overflow: hidden;
}

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

.dash__title {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.dash__period {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.dash__stats-row {
  display: flex;
  gap: 10px;
}

.dash__stat-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  flex: 1;
}

.dash__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.dash__stat-value {
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 800;
}

.dash__stat-badge {
  display: inline-flex;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}

.dash__stat-bar-track {
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: var(--bg-elevated);
}

.dash__stat-bar-fill {
  height: 4px;
  border-radius: 100px;
  background: var(--green);
  width: 68%;
}

.dash__results-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.dash__results-table {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-page);
  flex: 1;
}

.dash__row {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  font-size: 12px;
}

.dash__row--header {
  border-bottom: 1px solid var(--border-subtle);
}

.dash__row--body { border-bottom: 1px solid #1A1A2E; }
.dash__row--body:last-child { border-bottom: none; }

.dash__col-source { width: 110px; display: flex; align-items: center; gap: 5px; }
.dash__col-result { width: 170px; color: var(--text-secondary); }
.dash__col-sentiment { width: 80px; }
.dash__col-country { color: var(--text-tertiary); }

.dash__source-text { font-weight: 500; color: var(--text-secondary); }
.dash__col-header { font-family: var(--font-mono); font-size: 10px; font-weight: 500; color: var(--text-muted); }

.sentiment-badge {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}
.sentiment-badge--positive { color: var(--green); background: rgba(34, 197, 94, 0.12); }
.sentiment-badge--negative { color: var(--red); background: rgba(239, 68, 68, 0.12); }
.sentiment-badge--neutral { color: var(--yellow); background: rgba(245, 158, 11, 0.12); }

/* Features Grid */
.repradar__features {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 var(--px) 80px;
  flex-wrap: wrap;
  max-width: calc(1280px + 2 * var(--px));
  margin: 0 auto;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  flex: 1;
  min-width: 200px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(196, 248, 42, 0.2);
  transform: translateY(-2px);
}

.feature-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-card__desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

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

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px var(--px);
  background: var(--bg-card);
}

.faq__list {
  display: flex;
  flex-direction: column;
  width: 800px;
  max-width: 100%;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__question-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item.is-open .faq__icon { transform: rotate(180deg); }

.faq__answer {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__item.is-open .faq__answer { max-height: 200px; }

/* ===================================================
   CONTACT SECTION
   =================================================== */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px var(--px);
  background: var(--bg-page);
}

.contact__body {
  display: flex;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
}

.contact__form-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  flex: 1;
}

.form__row {
  display: flex;
  gap: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form__input {
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-muted);
  background: var(--bg-page);
  color: var(--text-primary);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s;
}
.form__input:focus { border-color: var(--accent-lime); }

.form__textarea {
  height: 120px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-muted);
  background: var(--bg-page);
  color: var(--text-primary);
  font-size: 15px;
  width: 100%;
  resize: none;
  transition: border-color 0.2s;
  line-height: 1.5;
}
.form__textarea:focus { border-color: var(--accent-lime); }

.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-muted); font-size: 15px; }

.form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.form__submit { font-size: 16px; padding: 16px 32px; }

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

.form__secure-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* Trust Panel */
.contact__trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 400px;
  flex-shrink: 0;
}

.vault-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F0F12 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 80px rgba(124, 58, 237, 0.06);
  text-align: center;
}

.vault-visual__icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196, 248, 42, 0.06);
  border: 2px solid rgba(196, 248, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-visual__title {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.vault-visual__sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 300px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-item__desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--px);
  background: var(--bg-page);
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 60px 80px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--accent-lime);
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 60px rgba(196, 248, 42, 0.12);
  text-align: center;
}

.cta-card__title {
  font-family: var(--font-grotesk);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
}

.cta-card__sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.cta-card__btn { font-size: 18px; padding: 20px 44px; }

.cta-card__trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-card__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
}

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

.footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px var(--px);
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}

.footer__main {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 240px;
  max-width: 420px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-name {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer__brand-tagline {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

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

.footer__col-title {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer__col-link {
  font-size: 14px;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: color 0.2s;
}
.footer__col-link:hover { color: var(--text-secondary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.footer__legal-link:hover { color: var(--text-secondary); }

.footer__powered {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__powered-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__powered-link:hover { color: var(--accent-lime); }

/* ===================================================
   LEGAL PAGES
   =================================================== */

.legal-hero {
  padding: 80px var(--px) 56px;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-hero__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 16px;
}

.legal-hero__title {
  font-family: var(--font-grotesk);
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.15;
}

.legal-hero__meta {
  font-size: 14px;
  color: var(--text-tertiary);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px var(--px) 80px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section h3 {
  font-family: var(--font-grotesk);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 20px 0 8px;
}

.legal-section p {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-section li {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--accent-lime);
  text-decoration: none;
}
.legal-section a:hover { text-decoration: underline; }

.legal-note {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-lime);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-note p { margin-bottom: 0; font-size: 14px; }

.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.legal-toc__title {
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: block;
}

.legal-toc ol {
  padding-left: 18px;
  margin: 0;
  column-count: 2;
  column-gap: 32px;
}

.legal-toc li {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-toc a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-toc a:hover { color: var(--accent-lime); }

@media (max-width: 768px) {
  .legal-hero__title { font-size: 30px; }
  .legal-hero { padding: 48px var(--px) 40px; }
  .legal-content { padding: 40px var(--px) 60px; }
  .legal-toc ol { column-count: 1; }
}

/* ===================================================
   ANIMATIONS
   =================================================== */

/* ---- Keyframes ---- */

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

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

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

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

@keyframes glowPulse {
  0%,  100% { opacity: 0.7; }
  50%        { opacity: 1; }
}

@keyframes borderGlow {
  0%,  100% { box-shadow: 0 0 40px rgba(196, 248, 42, 0.10); }
  50%        { box-shadow: 0 0 70px rgba(196, 248, 42, 0.28); }
}

@keyframes scanLine {
  0%,  100% { opacity: 0.25; }
  50%        { opacity: 0.9; }
}

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

/* ---- Page-load: Header ---- */
.header {
  animation: slideDown 0.5s ease both;
}

/* ---- Page-load: Hero ---- */
.hero__badge  { animation: fadeInUp   0.6s ease 0.15s both; }
.hero__headline { animation: fadeInUp 0.6s ease 0.25s both; }
.hero__subtitle { animation: fadeInUp 0.6s ease 0.35s both; }
.hero__ctas     { animation: fadeInUp 0.6s ease 0.45s both; }

.hero__visual {
  animation:
    fadeInRight 0.8s ease 0.3s both,
    floatY      7s   ease-in-out 1.2s infinite;
}

/* ---- Ambient: glows ---- */
.hero__glow-lime   { animation: glowPulse 5s ease-in-out infinite; }
.hero__glow-purple { animation: glowPulse 5s ease-in-out 2.5s infinite; }

/* ---- Ambient: pulsing dots ---- */
.hero__badge-dot,
.hero__status-dot {
  animation: pulseDot 2.2s ease-in-out infinite;
}

/* ---- Ambient: encrypted scan lines ---- */
.hero__encrypted-line:first-child  { animation: scanLine 2.8s ease-in-out infinite; }
.hero__encrypted-line:nth-child(2) { animation: scanLine 2.8s ease-in-out 1.4s infinite; }

/* ---- CTA card glow pulse ---- */
.cta-card {
  animation: borderGlow 3.5s ease-in-out infinite;
}

/* ---- Enhanced button hover ---- */
.btn-primary {
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 24px rgba(196, 248, 42, 0.4);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  background: rgba(196, 248, 42, 0.08);
  box-shadow: 0 0 16px rgba(196, 248, 42, 0.15);
  transform: translateY(-1px);
}

/* ---- Enhanced card hover ---- */
.service-card,
.step-card,
.feature-card {
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover,
.step-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ---- Scroll reveal system ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for sibling cards */
.reveal-group > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.35s; }

/* ---- Disable heavy animations for reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================
   RESPONSIVE — TABLET (≤ 1100px)
   =================================================== */

@media (max-width: 1100px) {
  :root { --px: 48px; }

  .hero__visual { width: 420px; }
  .repradar__info { flex: 0 0 380px; }
  .repradar__headline { font-size: 30px; }
  .dash__sidebar { width: 150px; }
  .contact__trust { width: 340px; }
  .cta-card { padding: 48px 48px; }
  .cta-card__title { font-size: 34px; }
  .section-title { font-size: 36px; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================== */

@media (max-width: 768px) {
  :root { --px: 20px; }

  /* Header */
  .header { padding: 16px var(--px); }
  .header__nav { display: none; }
  .header__hamburger { display: flex; }

  /* Hero */
  .hero {
    padding: 48px var(--px) 40px;
    min-height: auto;
  }
  .hero__inner {
    flex-direction: column;
    gap: 40px;
  }
  .hero__text { max-width: 100%; }
  .hero__headline { font-size: 38px; }
  .hero__subtitle { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__cta-primary,
  .hero__cta-secondary { width: 100%; justify-content: center; text-align: center; }
  .hero__visual { width: 100%; }
  .hero__visual-title { font-size: 32px; }
  .hero__glow-lime,
  .hero__glow-purple { display: none; }

  /* Stats Bar */
  .stats-bar {
    padding: 32px var(--px);
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }
  .stats-bar__item { min-width: 140px; }
  .stats-bar__number { font-size: 28px; }

  /* Conf Banner */
  .conf-banner {
    padding: 16px var(--px);
    gap: 20px;
    justify-content: flex-start;
  }

  /* Section headers */
  .section-title { font-size: 28px; }
  .section-header .section-sub { font-size: 16px; }

  /* Services */
  .services { padding: 60px var(--px); gap: 32px; }
  .services__grid { flex-direction: column; align-items: center; }
  .service-card { width: 100%; max-width: 480px; }
  .service-card--premium { width: 100%; max-width: 480px; }

  /* How it Works */
  .how-it-works { padding: 60px var(--px); gap: 32px; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-card { width: 100%; max-width: 480px; }

  /* RepRadar */
  .repradar__main {
    flex-direction: column;
    padding: 48px var(--px);
    gap: 40px;
  }
  .repradar__info { flex: none; width: 100%; }
  .repradar__headline { font-size: 28px; }
  .repradar__subtitle { font-size: 15px; }
  .repradar__dashboard { min-width: 0; width: 100%; overflow-x: auto; }
  .dash__body { height: auto; min-height: 380px; }
  .dash__sidebar { display: none; }
  .repradar__features {
    flex-direction: column;
    padding: 0 var(--px) 60px;
    align-items: center;
  }
  .feature-card { min-width: 0; width: 100%; max-width: 480px; }

  /* FAQ */
  .faq { padding: 60px var(--px); gap: 32px; }
  .faq__list { width: 100%; }

  /* Contact */
  .contact { padding: 60px var(--px); gap: 32px; }
  .contact__body {
    flex-direction: column;
    max-width: 100%;
  }
  .contact__trust { width: 100%; }
  .form__row { flex-direction: column; }
  .form__bottom { flex-direction: column; align-items: flex-start; }
  .form__submit { width: 100%; justify-content: center; text-align: center; }

  /* Final CTA */
  .final-cta { padding: 60px var(--px); }
  .cta-card {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }
  .cta-card__title { font-size: 28px; }
  .cta-card__sub { font-size: 16px; }
  .cta-card__btn { font-size: 16px; padding: 16px 32px; width: 100%; }
  .cta-card__trust-row { gap: 16px; }

  /* Footer */
  .footer { padding: 48px var(--px); gap: 36px; }
  .footer__main { flex-direction: column; gap: 32px; }
  .footer__brand { max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
