/* ============================================================
   WellChecked.com — Stylesheet v3.0.0
   Design: Minimalist glassmorphic with floating elements
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === CSS VARIABLES (Light) === */
:root {
  --primary: #1a2e5a;
  --primary-light: #3366a8;
  --primary-xlight: rgba(51, 102, 168, 0.08);
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --accent-soft: rgba(34, 197, 94, 0.1);

  --bg-primary: #f0f4f8;
  --bg-secondary: #e8eef5;
  --bg-dark: #0a1628;
  --bg-dark-surface: #101d33;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px rgba(15, 25, 50, 0.08);
  --glass-shadow-hover: 0 16px 48px rgba(15, 25, 50, 0.14);
  --glass-blur: blur(16px);
  --glass-blur-strong: blur(24px);

  --dark-glass-bg: rgba(255, 255, 255, 0.04);
  --dark-glass-border: rgba(255, 255, 255, 0.1);

  --text-primary: #0f1923;
  --text-secondary: #4a5568;
  --text-muted: #7a8a9a;
  --text-on-dark: #e8edf4;
  --text-on-dark-muted: #8fa3b8;

  --border: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.03);

  --nav-bg: rgba(255, 255, 255, 0.6);
  --nav-border: rgba(255, 255, 255, 0.7);

  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--easing);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-w: 1200px;

  --float-1: floating1 6s ease-in-out infinite;
  --float-2: floating2 8s ease-in-out infinite;
  --float-3: floating3 7s ease-in-out infinite;
}

/* === DARK MODE === */
body.dark-mode {
  --bg-primary: #0a1628;
  --bg-secondary: #0f1e34;
  --glass-bg: rgba(16, 29, 51, 0.6);
  --glass-bg-strong: rgba(16, 29, 51, 0.8);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.45);
  --text-primary: #e8edf4;
  --text-secondary: #8fa3b8;
  --text-muted: #5a7090;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.03);
  --nav-bg: rgba(10, 22, 40, 0.7);
  --nav-border: rgba(255, 255, 255, 0.06);
  --primary-xlight: rgba(51, 102, 168, 0.15);
  --accent-soft: rgba(34, 197, 94, 0.12);
}

/* === FLOATING ANIMATIONS === */
@keyframes floating1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}
@keyframes floating2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(-0.5deg); }
  66% { transform: translateY(-8px) rotate(0.5deg); }
}
@keyframes floating3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(51, 102, 168, 0.25); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(51, 102, 168, 0.4); }

::selection { background: rgba(34, 197, 94, 0.15); color: var(--text-primary); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); line-height: 1.7; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 100px;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; position: relative; }

.section-header {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-header p {
  font-size: 1.1rem;
  margin-top: 16px;
  color: var(--text-secondary);
}

/* === GLASS CARD MIXIN (via class) === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border-bottom: 1px solid var(--nav-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.site-nav:not(.scrolled) .nav-logo,
.site-nav:not(.scrolled) .nav-links a,
.site-nav:not(.scrolled) .nav-login {
  color: rgba(255, 255, 255, 0.9);
}

.site-nav:not(.scrolled) .nav-links a:hover { color: white; }

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

.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 4px;
  transition: color var(--transition);
}

.nav-login:hover { color: var(--text-primary); }

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.theme-toggle:hover {
  background: var(--glass-bg);
  color: var(--text-primary);
}

.site-nav:not(.scrolled) .theme-toggle { color: rgba(255, 255, 255, 0.7); }

.theme-toggle .icon-moon { display: none; }
.dark-mode .theme-toggle .icon-sun { display: none; }
.dark-mode .theme-toggle .icon-moon { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  transition: background var(--transition);
}

.hamburger:hover { background: var(--glass-bg); }

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav:not(.scrolled) .hamburger span { background: white; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  z-index: 999;
  padding: 96px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s var(--easing);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 20px;
  color: var(--text-primary);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.mobile-menu a:hover { background: var(--glass-bg); }

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 14px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  font-size: 0.9375rem;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 0.9375rem;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-bg-strong);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; border-radius: 16px; }

.btn-white {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--glass-blur);
  color: var(--primary);
  padding: 14px 32px;
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: white;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass-blur);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 32px;
  font-size: 0.9375rem;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #070e1c 0%, #0f1e3a 40%, #152848 70%, #0c1a30 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Ambient floating orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
  top: -15%;
  right: -5%;
  animation: var(--float-1);
}

.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 102, 168, 0.4) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  animation: var(--float-2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 {
  color: white;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat-num span { color: var(--accent); }

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  font-weight: 500;
}

/* === HERO PIPELINE VISUAL === */
.hero-visual { position: relative; }

.pipeline-viz {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  animation: var(--float-3);
}

.pipeline-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
}

.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  opacity: 0.4;
}

.pipeline-step.active {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
  opacity: 1;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.08);
}

.pipeline-step.complete {
  border-color: rgba(255, 255, 255, 0.08);
  opacity: 0.65;
}

.pipeline-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
}

.pipeline-step.active .pipeline-step-icon {
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent);
}

.pipeline-step.complete .pipeline-step-icon {
  color: rgba(255, 255, 255, 0.5);
}

.pipeline-step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.pipeline-step.active .pipeline-step-label { color: white; }

.pipeline-step-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

.pipeline-step.active .pipeline-step-sub { color: rgba(255, 255, 255, 0.5); }

.pipeline-connector { height: 12px; display: flex; align-items: center; padding-left: 36px; }
.pipeline-connector-line { width: 2px; height: 100%; background: rgba(255, 255, 255, 0.05); margin-left: 19px; }

/* === NUMBERS STRIP === */
.numbers-strip {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 56px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.number-item {
  text-align: center;
  padding: 0 32px;
}

.number-item + .number-item {
  border-left: 1px solid var(--border);
}

.number-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.dark-mode .number-value { color: white; }

.number-value span { color: var(--accent); }

.number-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* === PROBLEMS SECTION === */
.section-dark {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Floating orbs for dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  top: 10%;
  right: -5%;
  filter: blur(60px);
  animation: var(--float-2);
}

.problems-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.problems-intro { padding-top: 8px; }
.problems-intro h2 { color: white; margin-bottom: 20px; }
.problems-intro p { color: rgba(255, 255, 255, 0.5); font-size: 1.05rem; margin-bottom: 32px; }

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

.problem-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: all 0.4s ease;
}

.problem-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.problem-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}

.problem-content h4 {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.problem-content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* === SOLUTION SECTION === */
.solution-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 102, 168, 0.08) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  filter: blur(60px);
  animation: var(--float-1);
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.solution-content .eyebrow { margin-bottom: 16px; }
.solution-content h2 { margin-bottom: 24px; }

.solution-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  margin-top: 32px;
}

.solution-visual { position: relative; }

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

.sensor-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s ease;
}

.sensor-block:hover {
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-3px);
}

.sensor-block:nth-child(odd) { animation: var(--float-3); }
.sensor-block:nth-child(even) { animation: var(--float-2); }

.sensor-block-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.sensor-block-icon.green { background: var(--accent-soft); color: var(--accent); }

.sensor-block h4 { font-size: 0.925rem; margin-bottom: 4px; }
.sensor-block p { font-size: 0.825rem; line-height: 1.55; color: var(--text-muted); }

/* === PRODUCTS OVERVIEW === */
.products-overview {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.products-overview::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  top: 20%;
  right: -5%;
  filter: blur(60px);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-6px);
}

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

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.product-card .product-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.product-card .product-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: -16px;
}

.product-features { display: flex; flex-direction: column; gap: 10px; }

.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.product-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-card .product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: auto;
  transition: gap var(--transition);
}

.product-card .product-link:hover { gap: 12px; }

/* === HOW IT WORKS === */
.how-section {
  background: var(--bg-primary) !important;
  position: relative;
  overflow: hidden;
}

.steps-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.step-row.reverse .step-content { order: 2; }
.step-row.reverse .step-visual { order: 1; }

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.step-content h3 { font-size: 1.7rem; margin-bottom: 16px; }
.step-content p { font-size: 1.02rem; line-height: 1.7; }

.step-detail {
  margin-top: 24px;
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-visual {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  animation: var(--float-3);
}

.step-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  color: var(--text-muted);
}

.step-visual-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
}

.step-visual-icon.green { background: var(--accent-soft); color: var(--accent); }

.step-visual-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* === DIFFERENTIATORS BENTO GRID === */
.diff-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s ease;
}

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

.bento-card.span-col { grid-column: span 2; }

.bento-card.dark {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.bento-card.accent {
  background: rgba(34, 197, 94, 0.12);
  backdrop-filter: blur(20px);
  border-color: rgba(34, 197, 94, 0.2);
  color: var(--text-primary);
}

.dark-mode .bento-card.accent { color: white; }

.bento-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-card.dark .bento-num { color: rgba(255, 255, 255, 0.2); }
.bento-card.accent .bento-num { color: var(--accent); opacity: 0.4; }

.bento-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.bento-card.dark h3 { color: white; }
.bento-card.accent h3 { color: inherit; }

.bento-card p { font-size: 0.875rem; line-height: 1.6; }
.bento-card.dark p { color: rgba(255, 255, 255, 0.55); }
.bento-card.accent p { color: var(--text-secondary); }
.dark-mode .bento-card.accent p { color: rgba(255, 255, 255, 0.6); }

.bento-big-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: white;
  margin-bottom: 12px;
}

.bento-big-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.bento-big-sub {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

/* === COMPLIANCE SECTION === */
.compliance-section {
  background: var(--bg-primary);
  position: relative;
}

.compliance-intro { max-width: 640px; margin-bottom: 56px; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.compliance-item {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s ease;
}

.compliance-item:hover {
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-4px);
}

.compliance-item h4 { font-size: 1.1rem; margin-bottom: 10px; }
.compliance-item p { font-size: 0.875rem; line-height: 1.65; }

.compliance-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* === TESTIMONIAL === */
.testimonial-section {
  background: linear-gradient(160deg, var(--primary) 0%, #1a3a6e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  top: -20%;
  left: 10%;
  filter: blur(60px);
  animation: var(--float-1);
}

.testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
}

.testimonial-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  position: absolute;
  top: -10px;
  left: -12px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(160deg, #070e1c 0%, #0f1e3a 50%, #152848 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
  bottom: -20%;
  right: -5%;
  filter: blur(80px);
  animation: var(--float-2);
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 102, 168, 0.15) 0%, transparent 60%);
  top: -15%;
  left: 10%;
  filter: blur(60px);
  animation: var(--float-1);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
}

.cta-inner h2 { color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255, 255, 255, 0.5); font-size: 1.05rem; margin-bottom: 40px; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.site-footer {
  background: #060d1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 32px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { color: white; margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  line-height: 1.5;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
}

.footer-ip {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.15);
  max-width: 500px;
  line-height: 1.6;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glass-shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--glass-bg-strong);
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-hover);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* === PRODUCTS PAGE === */
.page-hero {
  background: linear-gradient(160deg, #070e1c 0%, #0f1e3a 50%, #152848 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 102, 168, 0.3) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  filter: blur(80px);
  animation: var(--float-1);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero h1 { color: white; margin-bottom: 20px; }
.page-hero p { color: rgba(255, 255, 255, 0.55); font-size: 1.1rem; line-height: 1.7; }

/* Product detail */
.product-detail { padding: 96px 0; }
.product-detail:nth-child(even) { background: var(--bg-secondary); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-detail-grid.reverse .product-detail-visual { order: -1; }

.product-trademark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.product-headline { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 8px; }

.product-tagline-lg {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.product-desc { font-size: 1.02rem; line-height: 1.75; margin-bottom: 32px; }

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

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.product-detail-visual {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.product-visual-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.product-visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.product-visual-icon.green {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.product-visual-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.product-visual-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 220px;
}

/* === ABOUT PAGE === */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.leader-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s ease;
}

.leader-card:hover {
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-5px);
}

.leader-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.leader-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.leader-title { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

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

.value-block {
  padding: 36px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.value-block h3 { margin-bottom: 12px; }
.value-block p { font-size: 0.9375rem; line-height: 1.7; }

/* === SUCCESS STORIES === */
.case-study { padding: 88px 0; }
.case-study:nth-child(even) { background: var(--bg-secondary); }

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

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

.case-client {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 16px;
  border-radius: 100px;
}

.case-type { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.case-content h2 { margin-bottom: 20px; }
.case-content p { font-size: 1.02rem; line-height: 1.7; margin-bottom: 20px; }

.results-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.result-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.result-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.03em;
  line-height: 1;
}

.result-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }

.case-visual {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glass-shadow);
}

/* === CONTACT PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info p { font-size: 1.02rem; line-height: 1.7; margin-bottom: 40px; }

.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-detail-text span { font-size: 0.875rem; color: var(--text-secondary); }

.contact-form-wrap {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--glass-shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* === STAT COUNTER === */
.stat-counter { font-variant-numeric: tabular-nums; }

/* === PRINT === */
@media print {
  .site-nav, .back-to-top, .hamburger, .mobile-menu { display: none; }
  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation: none !important;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid,
  .problems-layout,
  .solution-layout,
  .step-row,
  .products-grid,
  .product-detail-grid,
  .case-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step-row.reverse .step-content,
  .step-row.reverse .step-visual,
  .product-detail-grid.reverse .product-detail-visual { order: unset; }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span-col { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-login { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.5rem; }

  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .number-item + .number-item { border-left: none; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-col { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .results-row { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero-actions .btn { width: auto; }

  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .testimonial-inner { padding: 40px 28px; }
  .cta-inner { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; gap: 16px; border-top: none; padding-top: 0; }
  .numbers-grid { grid-template-columns: 1fr; gap: 24px; }
  .number-item + .number-item { border: none; }
  .leadership-grid { grid-template-columns: 1fr; }
  .results-row { grid-template-columns: 1fr; }
}
