
/* ===== DESIGN TOKENS ===== */
:root {
  --bg-void:    #faf9f6;
  --bg-deep:    #f5f4f1;
  --bg-base:    #f0eeeb;
  --bg-card:    #faf9f6;
  --bg-card2:   #f7f6f3;
  --glass:      rgba(255,255,255,0.9);
  --glass-hi:   rgba(255,255,255,0.95);
  --green:      #2aaa5f;
  --green-light:#6edf98;
  --green-dark: #1b8341;
  --green-dim:  rgba(74,222,128,0.1);
  --green-glow: rgba(74,222,128,0.3);
  --grey-dark:  #1a1d29;
  --grey-mid:   #4a5568;
  --grey-light: #a0aec0;
  --text-hi:    #000000;
  --text-mid:   #4a5568;
  --text-lo:    #a0aec0;
  --border:     rgba(0,0,0,0.08);
  --border-hi:  rgba(0,0,0,0.15);
  --ff-head:    'Barlow Condensed', sans-serif;
  --ff-body:    'Figtree', sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;
  --radius:     8px;
  --radius-lg:  16px;
  --nav-h:      68px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg-void);
  color: var(--text-hi);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* Removed gradient text utilities */

/* Glassmorphism */
.glass {
  background: rgba(250,249,246,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.glass-hi {
  background: rgba(250,249,246,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-hi);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag::before { content: '//'; opacity: 0.5; }
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text-hi);
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== HOMEPAGE SECTION OVERRIDES ===== */
.services-section .tag,
.services-section .section-title,
.services-section .section-sub,
.bento-section .tag,
.bento-section .section-title,
.bento-section .section-sub {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before {
  opacity: 1;
}
.btn-primary {
  background: var(--green);
  color: var(--bg-void);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
  background: var(--green-dark);
}
.btn-outline {
  border: 1px solid var(--border-hi);
  color: var(--text-hi);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
  box-shadow: 0 0 20px var(--green-glow);
}
.btn-green {
  background: var(--green);
  color: var(--bg-void);
  border: none;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
  background: var(--green-dark);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ===== CARD BASE ===== */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,222,128,0.05), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { 
  border-color: var(--border-hi); 
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,222,128,0.12);
}
.card:hover::before { opacity: 1; }

/* ===== BACKGROUNDS ===== */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  opacity: 0.3;
}
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.01) 2px, rgba(0,0,0,0.01) 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}
.noise {
  position: fixed;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}
.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--green);
  top: -250px;
  right: -250px;
}
.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--green);
  bottom: -200px;
  left: -200px;
  animation-delay: -10s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}


/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1001;
  transition: var(--transition);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar.scrolled {
  background: rgba(250,249,246,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-void);
  font-size: 16px;
  font-weight: 900;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #000000;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,15,24,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--green); background: var(--green-dim); }

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-void);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 8%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--green);
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-stretch: condensed;
}
.hero-title .accent { color: var(--green); }
.hero-title .accent2 { color: var(--green); }
.hero-title .accent {
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
}
.hero-title .accent2 {
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
}
.hero-title .systems-with {
  color: white;
  -webkit-text-stroke: 1px #2aaa5f;
  text-stroke: 1px #2aaa5f;
}
.hero-desc {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: 0.08em;
  animation: textPulse 2s infinite;
}
@keyframes textPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
/* Hero right: terminal widget */
.hero-visual {
  position: relative;
}
.terminal {
  background: #060e17;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(74,222,128,0.1), 0 40px 80px rgba(0,0,0,0.5);
}
.terminal-bar {
  background: #0a1928;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.terminal-bar .title {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--text-lo);
  margin-left: auto;
}
.terminal-body { padding: 20px; font-family: var(--ff-mono); font-size: 13px; line-height: 1.8; }
.t-comment { color: var(--text-lo); }
.t-key { color: var(--green); }
.t-val { color: var(--green); }
.t-num { color: var(--green); }
.t-str { color: var(--green); }
.t-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 16px;
}
.metric-card {
  background: #0a1a28;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.metric-val {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}
.metric-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--text-lo);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ===== TICKER STRIP ===== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--text-mid);
  border-right: 1px solid var(--border);
}
.ticker-item .up { color: var(--green); }
.ticker-item .down { color: #ff4444; }

/* ===== EXCHANGES SECTION ===== */
.exchanges-section {
  padding: 40px 0;
  background: var(--bg-void);
}
.exchanges-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
  text-align: center;
}
.exchanges-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.exchanges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.exchanges-grid-second {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 600px;
  margin: 24px auto 0;
}
.exchange-item {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.exchange-item:last-child {
  border-right: none;
}
.exchange-item:hover {
  color: var(--green);
}

/* ===== STATS SECTION ===== */
.stats-section { padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item {
  background: var(--bg-card);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover { background: var(--bg-card2); }
.stat-number {
  font-family: var(--ff-head);
  font-size: 54px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number sup { font-size: 0.4em; vertical-align: super; }
.stat-desc { font-size: 13px; color: var(--text-mid); margin-top: 8px; font-weight: 500; letter-spacing: 0.02em; }

/* ===== SERVICES SECTION ===== */
.services-section { 
  padding: 60px 0; 
  position: relative; 
  background: var(--bg-void);
}
.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.service-feature.in-view {
  opacity: 1;
  transform: translateX(0);
}
.service-feature:nth-child(even) {
  transform: translateX(80px);
}
.service-feature:nth-child(even).in-view {
  transform: translateX(0);
}
.service-feature:last-child {
  border-bottom: none;
}
.service-feature:nth-child(even) {
  direction: rtl;
}
.service-feature:nth-child(even) > * {
  direction: ltr;
}
.service-content h3 {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.service-content h3 .highlight {
  color: var(--green);
  display: block;
}
.service-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}
.service-content .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: transparent;
  transition: var(--transition);
}
.service-content .service-btn:hover {
  background: var(--green);
  color: var(--bg-void);
}
.service-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: #2a2d39;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.3),
    0 20px 40px rgba(0,0,0,0.2),
    inset 0 2px 0 rgba(255,255,255,0.1);
  z-index: 2;
}
.service-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  z-index: 10;
}
.service-phone-screen {
  width: 100%;
  height: 100%;
  background: #faf9f6;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.service-laptop {
  position: relative;
  width: 520px;
  height: 340px;
  background: #2a2d39;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.3),
    0 20px 40px rgba(0,0,0,0.2),
    inset 0 2px 0 rgba(255,255,255,0.1);
  z-index: 2;
}
.service-laptop::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: #1a1d29;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.service-laptop-screen {
  width: 100%;
  height: 100%;
  background: #faf9f6;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}
.service-tablet {
  position: relative;
  width: 420px;
  height: 320px;
  background: #2a2d39;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.3),
    0 20px 40px rgba(0,0,0,0.2),
    inset 0 2px 0 rgba(255,255,255,0.1);
  z-index: 2;
}
.service-tablet-screen {
  width: 100%;
  height: 100%;
  background: #faf9f6;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}
.notification-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite;
}
.notification-badge.badge-1 {
  top: 40px;
  right: -100px;
  animation-delay: 0s;
}
.notification-badge.badge-2 {
  top: 100px;
  left: -140px;
  animation-delay: 1s;
}
.notification-badge.badge-3 {
  bottom: 120px;
  right: -110px;
  animation-delay: 2s;
}
.notification-badge.badge-4 {
  bottom: 20px;
  left: -110px;
  animation-delay: 1.5s;
}
.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.badge-icon.success {
  background: rgba(74,222,128,0.15);
  color: var(--green);
}
.badge-icon.warning {
  background: rgba(255,193,7,0.15);
  color: #ffc107;
}
.badge-icon.error {
  background: rgba(244,67,54,0.15);
  color: #f44336;
}
.badge-icon.info {
  background: rgba(33,150,243,0.15);
  color: #2196f3;
}
.badge-text {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1.3;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===== BENTO GRID — WHY US ===== */
.bento-section { padding: 60px 0; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  margin-top: 40px;
  background: var(--border);
}
.bento-a { grid-column: span 7; grid-row: span 2; }
.bento-b { grid-column: span 5; }
.bento-c { grid-column: span 5; }
.bento-d { grid-column: span 4; }
.bento-e { grid-column: span 4; }
.bento-f { grid-column: span 4; }
.bento-card {
  border-radius: 0;
  padding: 36px;
  background: var(--bg-card);
  border: none;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.bento-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.bento-card h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.bento-card h3 span { color: var(--green); }
.bento-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
/* Bento A — large card with animated rings */
.bento-a-visual {
  margin-top: 36px;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 4s ease-in-out infinite;
}
.ring-1 { width: 120px; height: 120px; border-color: rgba(74,222,128,0.4); animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; border-color: rgba(74,222,128,0.2); animation-delay: 0.5s; }
.ring-3 { width: 240px; height: 240px; border-color: rgba(74,222,128,0.1); animation-delay: 1s; }
.ring-4 { width: 300px; height: 300px; border-color: rgba(74,222,128,0.05); animation-delay: 1.5s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 0.4; }
}
.ring-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 40px rgba(74,222,128,0.6);
}
/* Security dots */
.sec-dots { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.sec-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.sec-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
}
/* Uptime ring */
.uptime-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 359.9deg, rgba(0,0,0,0.05) 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 24px auto 0;
}
.uptime-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg-card);
}
.uptime-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}
/* Mini chart bento */
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-top: 16px;
}
.mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(74,222,128,0.2));
  transition: height 0.3s;
}

/* ===== PROCESS ===== */
.process-section { padding: 60px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  transition: var(--transition);
}
.step:hover .step-num {
  background: var(--green);
  color: var(--bg-void);
  box-shadow: 0 0 20px var(--green-glow);
}
.step-title { font-family: var(--ff-head); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--text-mid); line-height: 1.5; }

/* ===== PARTNER SECTION ===== */
.partner-section {
  padding: 60px 0;
  background: var(--bg-void);
}

/* ===== OUR PARTNERS LOGOS SECTION ===== */
.partners-logos-section {
  padding: 50px 0;
  background: #f5f5f5;
}
.partners-logos-header {
  text-align: center;
  margin-bottom: 40px;
}
.partners-logos-title {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.partners-logos-title .highlight {
  color: var(--green);
}
.partners-logos-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
}
.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.partner-logo-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transition: var(--transition);
  position: relative;
  background: transparent;
}
.partner-logo-item:nth-child(4n) {
  border-right: none;
}
.partner-logo-item:nth-last-child(-n+4) {
  border-bottom: none;
}
.partner-logo-item:hover {
  background: transparent;
}
.partner-logo-item img {
  max-width: 100%;
  max-height: 50px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
}
.partner-logo-item:hover img {
  opacity: 0.8;
  filter: grayscale(0%);
}
.partner-logo-placeholder {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 600;
  color: #d1d5db;
  text-align: center;
  letter-spacing: -0.01em;
}

/* ===== DISCOVER SECTION ===== */
.discover-section {
  padding: 60px 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.discover-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 60px;
  align-items: center;
}
.discover-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discover-person {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}
.discover-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}
.discover-badge.badge-top {
  top: 60px;
  left: 40px;
  animation-delay: 0s;
}
.discover-badge.badge-mid {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  animation-delay: 1s;
}
.discover-badge.badge-bottom {
  bottom: 80px;
  left: 60px;
  animation-delay: 2s;
}
.discover-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.discover-badge-icon.green {
  background: rgba(74,222,128,0.15);
  color: var(--green);
}
.discover-badge-icon.blue {
  background: rgba(33,150,243,0.15);
  color: #2196f3;
}
.discover-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.discover-badge-title {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-hi);
}
.discover-badge-subtitle {
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--text-mid);
}
.discover-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.discover-content h2 .highlight {
  color: var(--green);
  display: block;
}
.discover-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.discover-cta {
  margin-bottom: 40px;
}
.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  background: transparent;
  transition: var(--transition);
}
.discover-btn:hover {
  background: var(--green);
  color: var(--bg-void);
  box-shadow: 0 4px 20px rgba(74,222,128,0.3);
}
.discover-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.discover-card {
  background: white;
  border: none;
  border-radius: 0;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.discover-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, var(--green-light) 70%, var(--green) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.discover-card h4 {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.discover-card p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
}
.partner-header {
  text-align: center;
  margin-bottom: 40px;
}
.partner-title {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.partner-title .highlight {
  color: var(--green);
}
.partner-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.partner-card {
  background: transparent;
  border: none;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partner-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 32px;
  position: relative;
}
.partner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(74,222,128,0.2));
}
.partner-card h3 {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.partner-card h3 .highlight {
  color: var(--green);
}
.partner-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: transparent;
  transition: var(--transition);
}
.partner-btn:hover {
  background: var(--green);
  color: var(--bg-void);
  box-shadow: 0 4px 20px rgba(74,222,128,0.3);
}

/* ===== SIMULATOR SECTION ===== */
.simulator-section {
  padding: 60px 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.simulator-header {
  text-align: center;
  margin-bottom: 32px;
}
.simulator-title {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.simulator-title .highlight {
  color: var(--green);
}
.simulator-subtitle {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.simulator-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  background: transparent;
  transition: var(--transition);
}
.simulator-btn:hover {
  background: var(--green);
  color: var(--bg-void);
  box-shadow: 0 4px 20px rgba(74,222,128,0.3);
}
.simulator-visual {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.device-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  perspective: 1000px;
}
.device {
  position: relative;
  border-radius: 24px;
  background: #2a2d39;
  padding: 12px;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.3),
    0 10px 20px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: visible;
  transition: transform 0.3s ease;
}
.device::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.device-tablet {
  width: 340px;
  height: 240px;
  transform: rotate(-8deg) translateY(10px);
  z-index: 1;
}
.device-laptop {
  width: 520px;
  height: 340px;
  z-index: 3;
  border-radius: 16px;
  padding: 8px;
}
.device-laptop::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: #1a1d29;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.device-mobile {
  width: 160px;
  height: 300px;
  transform: rotate(8deg) translateY(10px);
  z-index: 1;
  border-radius: 28px;
  padding: 10px;
}
.device-mobile::before {
  border-radius: 28px;
}
.device-screen {
  width: 100%;
  height: 100%;
  background: #faf9f6;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}
.device-laptop .device-screen {
  border-radius: 8px;
}
.device-mobile .device-screen {
  border-radius: 20px;
}
.screen-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.screen-header {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.screen-chart-area {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, rgba(74,222,128,0.08), rgba(74,222,128,0.02));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(74,222,128,0.15);
}
.laptop-screen-content {
  width: 100%;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.laptop-title {
  text-align: center;
  padding: 16px 0;
}
.laptop-title h3 {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--text-hi);
  margin-bottom: 6px;
}
.laptop-title h3 .highlight {
  color: var(--green);
}
.laptop-title p {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  text-transform: uppercase;
}
.laptop-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.stat-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stat-value {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
}
.laptop-cta {
  text-align: center;
  margin-top: 8px;
}
.laptop-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: #faf9f6;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(74,222,128,0.3);
}
.mobile-screen-content {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-header {
  text-align: center;
  padding: 8px 0;
}
.mobile-header h4 {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-hi);
  margin-bottom: 2px;
}
.mobile-header p {
  font-family: var(--ff-mono);
  font-size: 8px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-chart {
  flex: 1;
  background: rgba(74,222,128,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(74,222,128,0.15);
}

/* ===== CTA BAND ===== */
.cta-band {
  margin: 0;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background: rgba(74,222,128,0.04);
  border-top: 1px solid var(--border-hi);
  border-bottom: 1px solid var(--border-hi);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-band-title {
  font-family: var(--ff-head);
  font-size: clamp(36px,5vw,64px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.cta-band-title span {
  color: var(--green);
}
.cta-band-sub { font-size: 17px; color: var(--text-mid); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--grey-dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social:hover { border-color: var(--green); color: var(--green); background: var(--green-dim); }
.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== COMPANY INFO ===== */
.company-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0 24px;
  text-align: center;
}

.company-links {
  margin-bottom: 20px;
}

.company-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.company-link:hover {
  color: var(--green-light);
}

.company-text {
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
}

.separator {
  color: rgba(255,255,255,0.3);
  margin: 0 12px;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.company-details strong {
  color: var(--green);
}

.company-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .company-details {
    font-size: 12px;
  }
  
  .company-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .separator {
    display: none;
  }
}

/* ===== MAPS SECTION ===== */
.maps-section {
  position: relative;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  transition: var(--transition);
}

.map-container:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.location-info {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
  
  .location-info {
    padding: 0 16px;
  }
  
  .location-info > div {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== LEGAL SECTIONS ===== */
.legal-sections {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0 20px;
  margin-top: 32px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.legal-section h3 {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.legal-content {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-highlight {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== BILLING TOGGLE ===== */
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}

.toggle-label.active {
  color: var(--green);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--green);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-slider.active {
  transform: translateX(24px);
}

.savings-badge {
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

.price-annual {
  display: none;
}

/* ===== SERVICES PAGE ===== */
.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .container {
  text-align: center;
}
.page-hero h1,
.page-hero h2,
.page-hero p,
.page-hero .tag {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-void);
  background-image: url('bin/images/background.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0px; margin-top: 60px; }
.service-detail-card {
  background: white;
  border: none;
  border-radius: 12px;
  padding: 36px;
  transition: var(--transition);
  position: relative;
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.08),
    inset 0 0 0 8px var(--bg),
    inset 0 0 0 9px rgba(74,222,128,0.3);
  margin: 5px;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 30%, rgba(74,222,128,0.7) 70%, rgba(34,197,94,1) 100%);
  border-radius: 14px;
  z-index: -2;
}

.service-detail-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: var(--bg);
  border-radius: 13px;
  z-index: -1;
}

.service-detail-card:hover::before {
  animation: sweepRightToLeft 0.6s ease-out;
}

@keyframes sweepRightToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.service-detail-card:hover { 
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.service-detail-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.service-detail-card h3 {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-detail-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.feature-check {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

/* ===== PRODUCTS PAGE ===== */
.products-grid { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 24px; 
  margin-top: 60px; 
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover { 
  border-color: var(--border-hi); 
  transform: translateY(-4px); 
}

.product-card:hover .product-specs {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
}

.product-card:hover .product-stats {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.product-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}
.product-badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.badge-cyan { background: var(--green-dim); color: var(--green); border: 1px solid rgba(74,222,128,0.25); }
.badge-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(74,222,128,0.25); }
.badge-gold { background: var(--green-dim); color: var(--green); border: 1px solid rgba(74,222,128,0.25); }
.product-card h3 { font-family: var(--ff-head); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.product-card .tagline { font-size: 13px; color: var(--text-mid); }
.product-body { 
  padding: 24px; 
  position: relative;
  overflow: hidden;
}
.product-specs { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  margin-bottom: 20px; 
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  min-height: 140px;
}


.spec-row { display: flex; justify-content: space-between; font-size: 13px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.spec-row:last-child { border-bottom: none; }

.product-stats {
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
}

.bot-image {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.bot-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  transform: scale(0.8);
}

.pnl-chart {
  width: 100%;
  height: 70px;
  position: relative;
  margin-bottom: 20px;
  background: rgba(74,222,128,0.08);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(74,222,128,0.2);
}

.pnl-chart::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
    rgba(74,222,128,0.1) 0%,
    rgba(74,222,128,0.15) 25%,
    rgba(74,222,128,0.2) 50%,
    rgba(74,222,128,0.25) 75%,
    rgba(74,222,128,0.3) 100%
  );
  clip-path: polygon(
    0% 85%, 
    8% 80%, 
    16% 75%, 
    24% 70%, 
    32% 65%, 
    40% 55%, 
    48% 45%, 
    56% 35%, 
    64% 30%, 
    72% 25%, 
    80% 20%, 
    88% 15%, 
    96% 10%, 
    100% 8%, 
    100% 100%, 
    0% 100%
  );
}

.pnl-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  clip-path: polygon(
    0% 85%, 
    8% 80%, 
    16% 75%, 
    24% 70%, 
    32% 65%, 
    40% 55%, 
    48% 45%, 
    56% 35%, 
    64% 30%, 
    72% 25%, 
    80% 20%, 
    88% 15%, 
    96% 10%, 
    100% 8%
  );
  transform: translateY(-50px) scaleY(25);
  transform-origin: bottom;
}

.pnl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 10px;
}

.pnl-stat {
  text-align: center;
}

.pnl-value {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 3px;
}

.pnl-label {
  color: var(--text-mid);
  font-size: 9px;
  font-weight: 500;
}

.stat-value {
  font-weight: 600;
  color: var(--green);
}
.spec-row .label { color: var(--text-mid); }
.spec-row .value { color: var(--text-hi); font-weight: 600; }

/* ===== PORTFOLIO PAGE ===== */
.portfolio-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 60px; }
.case-study {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  transition: var(--transition);
}
.case-study:hover { border-color: var(--border-hi); }
.case-num {
  font-family: var(--ff-head);
  font-size: 80px;
  font-weight: 900;
  color: var(--border-hi);
  line-height: 1;
  margin-bottom: 12px;
}
.case-study h3 { font-family: var(--ff-head); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.case-study p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.case-results { display: flex; flex-direction: column; gap: 12px; }
.result-item {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result-label { font-size: 13px; color: var(--text-mid); }
.result-value { font-family: var(--ff-head); font-size: 20px; font-weight: 800; color: var(--green); }

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--bg-void);
  margin: 0 auto 16px;
  box-shadow: 0 0 30px rgba(74,222,128,0.2);
}
.team-card h3 { font-family: var(--ff-head); font-size: 22px; font-weight: 800; }
.team-role { font-family: var(--ff-mono); font-size: 11px; color: var(--green); letter-spacing: 0.1em; margin: 4px 0 12px; }
.team-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.team-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.2);
}
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, var(--green-light) 70%, var(--green) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.value-card h4 { font-family: var(--ff-head); font-size: 20px; font-weight: 800; margin: 10px 0 8px; }
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ===== PRICING PAGE ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(74,222,128,0.06), var(--bg-card));
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-mono);
  font-size: 11px;
  padding: 4px 16px;
  border-radius: 20px;
  background: var(--green);
  color: var(--bg-void);
  font-weight: 600;
  white-space: nowrap;
}
.pricing-card h3 { font-family: var(--ff-head); font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.pricing-card .price-desc { font-size: 13px; color: var(--text-mid); margin-bottom: 28px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.price-from { font-family: var(--ff-mono); font-size: 13px; color: var(--text-mid); }
.price-num {
  font-family: var(--ff-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.price-period { font-size: 14px; color: var(--text-mid); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-feature { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.price-feature .check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.price-feature .x { color: var(--text-lo); flex-shrink: 0; margin-top: 2px; }
.price-models { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 60px; }
.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.model-card:hover { border-color: var(--border-hi); }
.model-card .icon { font-size: 32px; margin-bottom: 12px; }
.model-card h4 { font-family: var(--ff-head); font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.model-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ===== BLOG PAGE ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-base), var(--bg-card2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dim), transparent);
}
.blog-body { padding: 24px; }
.blog-cat {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}
.blog-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; font-family: var(--ff-mono); font-size: 11px; color: var(--text-lo); }

/* ===== FAQ PAGE ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-hi); }
.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-mid);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--green);
  color: var(--bg-void);
  border-color: var(--green);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  background: var(--bg-card);
  border: 0;
  border-radius: 0;
  padding: 16px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.3) 0%, rgba(34, 197, 94, 0.5) 50%, rgba(21, 128, 61, 0.7) 100%);
  border-radius: 0;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.contact-icon { font-size: 24px; }
.contact-item h4 { font-family: var(--ff-head); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-mid); }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { font-family: var(--ff-head); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.contact-form .subtitle { font-size: 14px; color: var(--text-mid); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-hi);
  font-family: var(--ff-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lo); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .icon { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { font-family: var(--ff-head); font-size: 28px; font-weight: 800; margin-bottom: 8px; color: var(--green); }
.form-success p { color: var(--text-mid); }

/* Animated Checkmark */
.success-checkmark {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.checkmark {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: var(--green);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--green);
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: var(--green);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: var(--green);
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 60px rgba(42, 170, 95, 0.1);
  }
}

/* ===== SECURITY PAGE ===== */
.security-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 60px; }
.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.security-card:hover { border-color: var(--border-hi); }
.security-icon { font-size: 36px; margin-bottom: 16px; }
.security-card h3 { font-family: var(--ff-head); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.security-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.security-banner {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.security-banner .icon { font-size: 48px; }
.security-banner h3 { font-family: var(--ff-head); font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.security-banner p { font-size: 15px; color: var(--text-mid); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 60px 0; background: var(--bg-deep); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hi); }
.t-stars { color: #FFD700; font-size: 14px; margin-bottom: 14px; }
.t-quote { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--bg-void);
}
.t-name { font-weight: 600; font-size: 14px; }
.t-title { font-size: 12px; color: var(--text-mid); }

/* ===== SECTION PADDING ===== */
.section { padding: 60px 0; }
.section + .section { padding-top: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3, .services-grid, .products-grid, .team-grid, .pricing-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .services-detail-grid, .contact-grid, .security-grid, .case-study { grid-template-columns: 1fr; }
  .grid-3, .services-grid, .products-grid, .team-grid, .pricing-grid, .blog-grid, .testimonials-grid, .metrics-row, .values-grid { grid-template-columns: 1fr; }
  .grid-4, .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-models { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ===== AI CHATBOT ===== */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}
.chatbot-button {
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  position: relative;
}
.chatbot-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.chatbot-button:hover {
  transform: scale(1.1);
}
.chatbot-notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff4444;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 3px solid white;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 380px;
  height: 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 900;
}
.chatbot-window.open {
  display: flex;
}
.chatbot-header {
  background: var(--green-light);
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-operator-icon {
  width: 48px;
  height: 48px;
  background: #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}
.chatbot-header-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2px 0;
}
.chatbot-header-info p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.chatbot-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition);
  line-height: 1;
}
.chatbot-close:hover {
  background: #f3f4f6;
  color: #111827;
}
.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #ffffff;
}
.chatbot-message {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chatbot-message.bot {
  align-items: flex-start;
}
.chatbot-message.user {
  align-items: flex-end;
}
.chatbot-message-content {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.chatbot-message.bot .chatbot-message-content {
  background: #f3f4f6;
  color: #111827;
}
.chatbot-message.user .chatbot-message-content {
  background: var(--green);
  color: white;
}
.chatbot-input-area {
  padding: 16px 20px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-input-wrapper {
  display: none;
}
.chatbot-status {
  display: none;
}
.chatbot-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--green);
  border-radius: 24px;
  font-size: 14px;
  font-family: var(--ff-body);
  outline: none;
  background: #ffffff;
  transition: var(--transition);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}
.chatbot-input::placeholder {
  color: #9ca3af;
}
.chatbot-input:focus {
  border-color: var(--green-dark);
}
.chatbot-send {
  width: 40px;
  height: 40px;
  background: #e5e7eb;
  border: none;
  border-radius: 50%;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-send:hover {
  background: #d1d5db;
}
.chatbot-status {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}
.chatbot-typing {
  display: none;
  padding: 14px 18px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 16px;
  width: fit-content;
}
.chatbot-typing.active {
  display: block;
}
.chatbot-typing span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 2px;
  animation: typing 1.4s infinite;
}
.chatbot-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.chatbot-typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
}

/* Chatbot Tabs */
.chatbot-tabs {
  display: flex;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 8px;
  gap: 4px;
}
.chatbot-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.chatbot-tab svg {
  width: 20px;
  height: 20px;
}
.chatbot-tab.active {
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
}
.chatbot-tab:hover {
  background: rgba(0, 0, 0, 0.05);
}
.chatbot-tab.active:hover {
  background: rgba(34, 197, 94, 0.15);
}
.chatbot-tab-badge {
  position: absolute;
  top: 4px;
  right: 20px;
  background: #ff4444;
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* Tab Content */
.chatbot-tab-content {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.chatbot-tab-content.active {
  display: flex;
}

/* Home Tab Styles */
.chatbot-home-tab {
  padding: 20px;
  gap: 16px;
}
.chatbot-recent-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
}
.chatbot-recent-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
}
.chatbot-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.chatbot-recent-info {
  flex: 1;
  min-width: 0;
}
.chatbot-recent-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}
.chatbot-recent-text {
  font-size: 13px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chatbot-recent-time {
  font-size: 12px;
  color: #9ca3af;
  flex-shrink: 0;
}
.chatbot-unread-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
}
.chatbot-quick-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: var(--transition);
}
.chatbot-quick-action:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.chatbot-action-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}
.chatbot-action-subtitle {
  font-size: 12px;
  color: #6b7280;
}
.chatbot-action-arrow {
  font-size: 20px;
  color: var(--green);
}

/* Messages Tab Styles */
.chatbot-messages-tab {
  padding: 0;
}
.chatbot-messages-tab .chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: transparent;
}
.chatbot-messages-tab .chatbot-input-area {
  padding: 16px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== SERVICE CARDS HOVER EFFECT ===== */
.service-detail-card.flip-card {
  background: var(--green-light);
  border: none;
  border-radius: 0;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-detail-card.flip-card h3 {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  color: white;
  transition: all 0.3s ease;
}

.service-detail-card.flip-card .flip-card-inner {
  display: none;
}

.service-detail-card.flip-card .service-content {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: white;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.service-detail-card.flip-card:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-detail-card.flip-card:hover h3 {
  opacity: 0;
  visibility: hidden;
}

.service-detail-card.flip-card:hover .service-content {
  opacity: 1;
  visibility: visible;
}

.service-detail-card.flip-card .service-content h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: left;
  color: var(--text-hi);
}

.service-detail-card.flip-card .service-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-detail-card.flip-card .service-content .service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-detail-card.flip-card .service-content .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}

.service-detail-card.flip-card .service-content .feature-check {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.service-detail-card.flip-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 16px;
  width: 300px;
  height: 300px;
  background-image: url('bin/images/mini-angry.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail-card.flip-card:hover::after {
  opacity: 1;
}
/* ===== PRICING CARD BUTTON CENTERING ===== */
.pricing-card {
  text-align: center;
}

.pricing-card .btn {
  display: inline-block;
  margin: 0 auto;
}
/* ===== ENHANCED TEAM CARDS ===== */
.team-card.enhanced {
  background: white;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.team-card.enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, var(--green-light) 70%, var(--green) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.team-card.enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-card-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-avatar.premium {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 900;
  color: white;
  box-shadow: 0 8px 25px rgba(42,170,95,0.3);
  flex-shrink: 0;
}

.team-info h3 {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: var(--text-hi);
}

.team-info .team-role {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 8px 0;
}

.team-location {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.team-description {
  padding: 0 32px 24px;
}

.team-description p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.team-expertise {
  padding: 0 32px 24px;
}

.team-expertise h5 {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-hi);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.expertise-grid span {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.team-card.enhanced .team-tags {
  padding: 24px 32px 32px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.team-tag.premium {
  background: var(--green);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(42,170,95,0.2);
}

.team-card.enhanced .team-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 20px;
  background: #e2e8f0;
  color: #64748b;
  border: 1px solid #cbd5e1;
  font-weight: 600;
  letter-spacing: 0.02em;
}
/* ===== COMPACT TEAM CARDS ===== */
.team-card.compact {
  max-height: 480px;
}

.team-avatar-image {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.team-avatar-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(42,170,95,0.3);
}

.team-avatar.backup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.team-description.compact {
  padding: 0 32px 20px;
}

.team-description.compact p {
  font-size: 14px;
  line-height: 1.6;
}

.team-expertise.compact {
  padding: 0 32px 20px;
}

.team-expertise.compact h5 {
  font-size: 13px;
  margin-bottom: 10px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.expertise-list span {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}

.team-card.compact .team-tags {
  padding: 20px 32px 28px;
}

.team-card.compact .team-tag {
  font-size: 9px;
  padding: 5px 10px;
}
/* ===== MINIMAL TEAM CARDS ===== */
.team-card.minimal {
  max-height: 180px;
}

.team-card.minimal .team-card-header {
  padding: 32px;
}

.team-card.minimal .team-description.compact {
  padding-bottom: 32px;
}