/* ===================================================
   olcayofc — 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 — Globe Animation --- */
.hero__visual {
  width: 480px;
  height: 480px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-globe {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rings */
.hero-globe__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(196,248,42,0.12);
}
.hero-globe__ring--outer {
  width: 420px;
  height: 420px;
  animation: ringRotate 60s linear infinite;
}
.hero-globe__ring--mid {
  width: 320px;
  height: 320px;
  border-style: solid;
  border-color: rgba(196,248,42,0.08);
  animation: ringRotate 45s linear infinite reverse;
}
.hero-globe__ring--inner {
  width: 240px;
  height: 240px;
  border-color: rgba(196,248,42,0.06);
  animation: ringRotate 35s linear infinite;
}

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

/* Sphere */
.hero-globe__sphere {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(196,248,42,0.4), 0 0 120px rgba(196,248,42,0.1);
  border: 1px solid rgba(196,248,42,0.2);
}

.hero-globe__sphere canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-globe__sphere-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: -20px -20px 40px rgba(0,0,0,0.85) inset, 10px 10px 25px rgba(196,248,42,0.25) inset;
  pointer-events: none;
}

/* Orbiting Icons */
.hero-globe__orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-globe__orbit--1 { animation: orbitFloat1 12s ease-in-out infinite; }
.hero-globe__orbit--2 { animation: orbitFloat2 14s ease-in-out infinite; }
.hero-globe__orbit--3 { animation: orbitFloat3 16s ease-in-out infinite; }
.hero-globe__orbit--4 { animation: orbitFloat4 13s ease-in-out infinite; }

.hero-globe__icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(196,248,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(196,248,42,0.2);
  backdrop-filter: blur(4px);
}

/* Position each icon */
.hero-globe__orbit--1 .hero-globe__icon { top: 15%; left: 10%; }
.hero-globe__orbit--2 .hero-globe__icon { top: 18%; right: 8%; }
.hero-globe__orbit--3 .hero-globe__icon { bottom: 20%; left: 12%; }
.hero-globe__orbit--4 .hero-globe__icon { bottom: 15%; right: 10%; }

@keyframes orbitFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(8px, -12px); }
  50% { transform: translate(-5px, -8px); }
  75% { transform: translate(10px, 5px); }
}
@keyframes orbitFloat2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-10px, 8px); }
  50% { transform: translate(6px, 12px); }
  75% { transform: translate(-8px, -5px); }
}
@keyframes orbitFloat3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(12px, 6px); }
  50% { transform: translate(-8px, -10px); }
  75% { transform: translate(5px, 8px); }
}
@keyframes orbitFloat4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-6px, -8px); }
  50% { transform: translate(10px, 5px); }
  75% { transform: translate(-12px, 10px); }
}

/* Floating Particles */
.hero-globe__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-globe__particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C4F82A;
  box-shadow: 0 0 6px rgba(196,248,42,0.6);
  animation: particleFloat var(--dur) ease-in-out var(--delay) infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.8; transform: translateY(-10px) scale(1); }
  80% { opacity: 0.6; transform: translateY(-25px) scale(0.8); }
}

/* ===================================================
   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) {
  .reveal { opacity: 1; transform: none; }
}

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

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

  .hero__visual { width: 420px; height: 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%; height: 350px; }
  .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; }
}

/* ===================================================
   HEADER LOGO IMAGE
   =================================================== */

.header__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ===================================================
   WHATSAPP FLOATING BUTTON
   =================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* ===================================================
   REFERENCES / REFERANSLAR SECTION
   =================================================== */

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

.text-gradient {
  background: linear-gradient(135deg, #C4F82A, #22C55E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reference Stats */
.ref-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.ref-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: rgba(24,24,27,0.5);
}
.ref-stats__number {
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.ref-stats__label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Marquee Rows */
.marquee-row {
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-row__track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.marquee-row--left .marquee-row__track {
  animation: marqueeLeft 120s linear infinite;
}
.marquee-row--right .marquee-row__track {
  animation: marqueeRight 120s linear infinite;
}
.marquee-row--slow .marquee-row__track {
  animation-duration: 150s;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
@keyframes marqueeRight {
  0% { transform: translateX(-33.333%); }
  100% { transform: translateX(0); }
}

.marquee-item {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.marquee-item:hover {
  border-color: rgba(196, 248, 42, 0.5);
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(196, 248, 42, 0.15);
}

.marquee-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reference Modal */
.ref-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.ref-modal.is-open { opacity: 1; visibility: visible; }
.ref-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(8px); }
.ref-modal__content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 24px; animation: modalIn 0.3s ease; }
@keyframes modalIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ref-modal__close { position: absolute; top: -40px; right: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(39,39,42,0.9); border: 1px solid rgba(63,63,70,0.6); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.ref-modal__close:hover { background: rgba(239,68,68,0.2); }
.ref-modal__title { font-family: var(--font-grotesk); font-size: 22px; font-weight: 700; color: #fff; text-align: center; }
.ref-modal__desc { font-size: 14px; color: #A1A1AA; text-align: center; max-width: 500px; }
.ref-modal__gallery { display: flex; align-items: center; justify-content: center; }
.ref-modal__gallery img { max-width: 85vw; max-height: 65vh; object-fit: contain; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.ref-modal__nav { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.ref-modal__nav-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(39,39,42,0.9); border: 1px solid rgba(63,63,70,0.6); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.ref-modal__nav-btn:hover { background: rgba(196,248,42,0.15); border-color: #C4F82A; }
.ref-modal__counter { font-size: 14px; font-weight: 600; color: #A1A1AA; min-width: 50px; text-align: center; }

/* ===== GLOBAL REACH — Flag Network ===== */
.global-reach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px var(--px);
  background: var(--bg-page);
  overflow: hidden;
}

.section-label__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C4F82A;
  margin-right: 6px;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.flag-network {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 700px;
  width: 100%;
}

.flag-network__flags {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.flag-network__flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.flag-network__flag-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(196,248,42,0.25);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(196,248,42,0.4);
  animation: flagNodePulse 3s ease-in-out infinite;
}
.flag-network__flag-box:hover {
  border-color: rgba(196,248,42,0.7);
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(196,248,42,0.2);
}

@keyframes flagNodePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,248,42,0.3); }
  50% { box-shadow: 0 0 0 4px rgba(196,248,42,0.08); }
}

.flag-network__flag:nth-child(1) .flag-network__flag-box { animation-delay: 0s; }
.flag-network__flag:nth-child(2) .flag-network__flag-box { animation-delay: 0.5s; }
.flag-network__flag:nth-child(3) .flag-network__flag-box { animation-delay: 1s; }
.flag-network__flag:nth-child(4) .flag-network__flag-box { animation-delay: 1.5s; }
.flag-network__flag:nth-child(5) .flag-network__flag-box { animation-delay: 2s; }
.flag-network__flag:nth-child(6) .flag-network__flag-box { animation-delay: 2.5s; }

.flag-network__flag-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}
.flag-network__flag:hover .flag-network__flag-label {
  color: #C4F82A;
}

.flag-network__svg-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  margin-top: -8px;
}

.flag-network__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flag-network__hub {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,248,42,0.25), rgba(196,248,42,0.05));
  border: 1.5px solid rgba(196,248,42,0.6);
  box-shadow: 0 0 30px rgba(196,248,42,0.4), 0 0 60px rgba(196,248,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hubGlow 3s ease-in-out infinite;
}

@keyframes hubGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(196,248,42,0.4), 0 0 60px rgba(196,248,42,0.15); }
  50% { box-shadow: 0 0 40px rgba(196,248,42,0.6), 0 0 80px rgba(196,248,42,0.25); }
}

.global-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  width: 100%;
}

.global-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  overflow: hidden;
}
.global-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,248,42,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.global-feature:hover {
  border-color: rgba(196,248,42,0.3);
  transform: translateY(-4px);
}
.global-feature:hover::before {
  opacity: 1;
}
.global-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196,248,42,0.08);
  border: 1px solid rgba(196,248,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.global-feature:hover .global-feature__icon {
  transform: scale(1.1);
}
.global-feature__title { font-family: var(--font-grotesk); font-size: 14px; font-weight: 600; color: var(--text-primary); transition: color 0.3s; }
.global-feature:hover .global-feature__title { color: #C4F82A; }
.global-feature__desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

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

.cert-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cert-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.cert-stats__number { font-family: var(--font-grotesk); font-size: 18px; font-weight: 700; color: var(--text-primary); }
.cert-stats__label { font-size: 12px; color: var(--text-muted); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 900px;
  width: 100%;
}

.cert-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.cert-card:hover {
  border-color: rgba(196,248,42,0.3);
  transform: translateY(-3px);
}

.cert-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cert-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-card__icon-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
}
.cert-card__title { font-family: var(--font-grotesk); font-size: 16px; font-weight: 600; color: var(--text-primary); }
.cert-card__subtitle { font-size: 12px; color: var(--text-muted); }

.cert-card__badge-area {
  background: var(--bg-elevated);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.cert-card__badge-img {
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
}
.cert-card__badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ===== RESPONSIVE — References, Globe, Certificates ===== */
@media (max-width: 768px) {
  .references { padding: 60px 0; gap: 32px; }
  .ref-stats { gap: 16px; flex-wrap: wrap; padding: 0 var(--px); }
  .ref-stats__item { padding: 12px 16px; }
  .ref-stats__number { font-size: 18px; }
  .marquee-item { width: 72px; height: 72px; border-radius: 10px; }
  .marquee-row__track { gap: 8px; }

  .global-reach { padding: 60px var(--px); gap: 32px; }
  .flag-network__flags { gap: 8px; flex-wrap: wrap; }
  .flag-network__flag-box { width: 40px; height: 40px; border-radius: 10px; }
  .flag-network__flag-label { display: none; }
  .flag-network__svg-wrap { height: 140px; }
  .global-features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .global-feature { padding: 16px; }

  .certificates { padding: 60px var(--px); gap: 32px; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert-stats { gap: 12px; }

  .ref-modal__content { padding: 16px; max-width: 100vw; }
  .ref-modal__gallery img { max-width: 92vw; max-height: 55vh; border-radius: 10px; }
  .ref-modal__close { top: 12px; right: 12px; position: fixed; z-index: 10001; }
  .ref-modal__title { font-size: 18px; margin-top: 40px; }
}

/* ===================================================
   GOOGLE TRANSLATE WIDGET STYLING
   =================================================== */

#google_translate_element {
  background: rgba(24, 24, 27, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 6px 10px;
  backdrop-filter: blur(12px);
}

.goog-te-gadget {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: var(--text-secondary) !important;
}

.goog-te-gadget .goog-te-combo {
  background: var(--bg-page);
  color: var(--text-primary);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  font-family: var(--font-body);
}
