/* ============================================================
   HostRaze Theme — Main Stylesheet
   style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:         #060b17;
  --bg2:        #0a1120;
  --bg3:        #0d1629;
  --surface:    #111e38;
  --card:       #0f1a30;
  --card2:      #142040;
  --border:     rgba(255,255,255,0.06);
  --border2:    rgba(255,255,255,0.11);
  --g1:         #00d4ff;
  --g2:         #00e5a0;
  --g3:         #7b5fff;
  --text:       #e4eeff;
  --muted:      #5a6a88;
  --muted2:     #8898bb;
  --font-body:  'Plus Jakarta Sans', sans-serif;
  --font-head:  'Syne', sans-serif;
  --radius:     14px;
  --radius-lg:  20px;
  --trans:      all 0.25s cubic-bezier(0.4,0,0.2,1);
  --glow-c:     0 0 40px rgba(0,212,255,0.2);
  --glow-g:     0 0 40px rgba(0,229,160,0.2);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2e50; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2a4070; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); letter-spacing: -0.03em; line-height: 1.1; color: var(--text); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-grad {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-center { text-align: center; }

/* ── SECTION HEADER ── */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  color: var(--g1); font-size: 0.72rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.section-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--g1); box-shadow: 0 0 8px var(--g1);
  animation: pulse 2s infinite;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.section-head p  { color: var(--muted2); font-size: 1.05rem; font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  padding: 0.85rem 1.6rem; border-radius: 12px; border: none;
  text-decoration: none; transition: var(--trans); letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: #000; box-shadow: 0 4px 24px rgba(0,212,255,0.22);
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(0,212,255,0.45); transform: translateY(-2px); color: #000; }
.btn-outline {
  background: transparent; border: 1px solid var(--border2);
  color: var(--muted2);
}
.btn-outline:hover { border-color: rgba(0,212,255,0.35); color: var(--g1); background: rgba(0,212,255,0.06); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--border2); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; border-radius: 9px; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 14px; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 700; padding: 0.28rem 0.7rem;
  border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-cyan   { background: rgba(0,212,255,0.1);  border: 1px solid rgba(0,212,255,0.25); color: var(--g1); }
.badge-green  { background: rgba(0,229,160,0.1);  border: 1px solid rgba(0,229,160,0.25); color: var(--g2); }
.badge-purple { background: rgba(123,95,255,0.1); border: 1px solid rgba(123,95,255,0.25); color: var(--g3); }
.badge-red    { background: rgba(255,80,80,0.1);  border: 1px solid rgba(255,80,80,0.22); color: #ff6060; }

/* ── CARD BASE ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  position: relative; overflow: hidden;
  transition: var(--trans);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.18); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.card:hover::before { opacity: 1; }
.card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
}
.card.featured {
  background: linear-gradient(145deg, #0f2040, #0b1830);
  border-color: rgba(0,212,255,0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.08);
}
.card.featured .card-glow { background: radial-gradient(circle, rgba(0,212,255,0.14) 0%, transparent 70%); }

/* ── DIVIDER ── */
.divider { width: 100%; height: 1px; background: var(--border); margin: 0; }

/* ── ANIMATIONS ── */
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.7)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0}to{opacity:1} }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-28px) scale(1.04)} }
@keyframes floatBob { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes barGrow  { from{width:0!important} }
@keyframes shimmer  { 0%{background-position:-200% 0}100%{background-position:200% 0} }
@keyframes spin     { to{transform:rotate(360deg)} }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(6,11,23,0.85);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.navbar.scrolled { background: rgba(6,11,23,0.97); border-bottom-color: var(--border2); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 2rem;
}
.navbar-logo { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--text); }
.navbar-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex; align-items: center; justify-content: center;
}
.navbar-logo-icon svg { width: 18px; height: 18px; stroke: #000; stroke-width: 2.5; fill: none; }
.navbar-logo span { background: linear-gradient(135deg, var(--g1), var(--g2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.navbar-nav { display: flex; align-items: center; gap: 0.25rem; }
.navbar-nav a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted2);
  padding: 0.45rem 0.85rem; border-radius: 8px;
  transition: var(--trans); position: relative;
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--text); background: rgba(255,255,255,0.05); }

/* ── DROPDOWN BASE ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  /* invisible bridge so mouse can travel from trigger to menu */
  padding-top: 10px;
  min-width: 220px; opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1000;
}
.nav-dropdown-menu-inner {
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open  .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 0.85rem; border-radius: 8px;
  font-size: 0.84rem; color: var(--muted2); transition: var(--trans);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(0,212,255,0.08); color: var(--g1); }
.nav-dropdown-menu a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* ── MEGA MENU (Hosting) ── */
.nav-mega { position: static; }
.nav-mega-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  padding-top: 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 998;
}
/* Invisible hover bridge — fills gap between navbar bottom and menu top */
.nav-mega-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
  background: transparent;
}
.nav-mega:hover .nav-mega-menu,
.nav-mega.open  .nav-mega-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-mega-inner {
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  padding: 1.5rem 0;
}
.nav-mega-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.nav-mega-col h5 {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.6rem;
  padding: 0 0.85rem; font-family: var(--font-body);
}
.nav-mega-col a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem; border-radius: 9px;
  color: var(--muted2); font-size: 0.855rem; font-weight: 400;
  transition: var(--trans);
}
.nav-mega-col a:hover { background: rgba(0,212,255,0.07); color: var(--text); }
.nav-mega-col a:hover .mega-icon { border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.1); }
.mega-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.mega-icon svg { width: 16px; height: 16px; stroke: var(--g1); fill: none; stroke-width: 1.8; }
.mega-icon.green svg { stroke: var(--g2); }
.mega-icon.purple svg { stroke: var(--g3); }
.mega-icon.cyan svg { stroke: var(--g1); }
.mega-link-text { display: flex; flex-direction: column; gap: 0.1rem; }
.mega-link-title { font-size: 0.855rem; font-weight: 600; color: var(--text); }
.mega-link-desc  { font-size: 0.72rem; color: var(--muted); font-weight: 300; }

.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted2); border-radius: 2px; transition: var(--trans); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--bg2); padding: 5rem 1.5rem 2rem;
  flex-direction: column; gap: 0.5rem;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 1.1rem; font-weight: 600; color: var(--muted2); padding: 0.8rem 1rem; border-radius: 10px; display: block; transition: var(--trans); }
.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 8rem 1.5rem 6rem;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 80%);
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(90px); }
.hero-orb-1 { width: 700px; height: 700px; top: -250px; left: -150px; background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%); animation: orbFloat 12s ease-in-out infinite; }
.hero-orb-2 { width: 600px; height: 600px; bottom: -200px; right: -100px; background: radial-gradient(circle, rgba(123,95,255,0.08) 0%, transparent 70%); animation: orbFloat 15s ease-in-out infinite reverse; }
.hero-orb-3 { width: 400px; height: 400px; top: 30%; left: 35%; background: radial-gradient(circle, rgba(0,229,160,0.06) 0%, transparent 70%); animation: orbFloat 9s ease-in-out infinite 3s; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.18); color: #7ed8f0; font-size: 0.75rem; font-weight: 600; padding: 0.45rem 1rem; border-radius: 100px; letter-spacing: 0.04em; width: fit-content; margin-bottom: 1.5rem; animation: fadeUp 0.7s ease both; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g1); box-shadow: 0 0 8px var(--g1); animation: pulse 2s infinite; }
.hero-title { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.04em; color: var(--text); margin-bottom: 1.5rem; animation: fadeUp 0.7s 0.1s ease both; }
.hero-desc { font-size: 1.08rem; color: var(--muted2); font-weight: 300; line-height: 1.75; max-width: 480px; margin-bottom: 2rem; animation: fadeUp 0.7s 0.2s ease both; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stat-val { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(135deg, var(--text), #8aa0d0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { font-size: 0.7rem; color: var(--muted); font-weight: 400; white-space: nowrap; }
.hero-stat-divider { width: 1px; height: 32px; background: var(--border2); flex-shrink: 0; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.4s ease both; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; animation: fadeUp 0.8s 0.35s ease both; }
.hero-dashboard {
  background: linear-gradient(145deg, #0d1e3a, #091628);
  border: 1px solid rgba(0,212,255,0.14);
  border-radius: 22px; padding: 1.6rem;
  width: 100%; max-width: 400px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,212,255,0.05), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative; z-index: 1;
}
.dash-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; }
.dash-dots span:nth-child(1){background:#ff5f57} .dash-dots span:nth-child(2){background:#febc2e} .dash-dots span:nth-child(3){background:#28c840}
.dash-title { font-size: 0.8rem; font-weight: 600; color: var(--muted2); flex: 1; text-align: center; font-family: var(--font-body); }
.dash-status { display: flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 600; color: var(--g2); }
.dash-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g2); box-shadow: 0 0 6px var(--g2); animation: pulse 2s infinite; }
.dash-metrics { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.3rem; }
.dash-metric-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.dash-metric-label { font-size: 0.75rem; color: var(--muted); }
.dash-metric-val { font-size: 0.78rem; font-weight: 700; color: var(--muted2); }
.dash-metric-val.hi { color: var(--g1); }
.dash-bar { width: 100%; height: 5px; background: rgba(255,255,255,0.05); border-radius: 100px; overflow: hidden; }
.dash-bar-fill { height: 100%; background: linear-gradient(90deg, var(--g1), var(--g2)); border-radius: 100px; animation: barGrow 1.4s cubic-bezier(0.4,0,0.2,1) both; }
.dash-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); }
.dash-os { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--muted); }
.dash-os svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.dash-uptime { display: flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 600; color: var(--g2); }
.dash-uptime-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g2); }

.hero-float {
  position: absolute; display: flex; align-items: center; gap: 0.5rem;
  background: rgba(10,17,32,0.95); border: 1px solid var(--border2);
  backdrop-filter: blur(12px); border-radius: 100px;
  padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 600;
  color: var(--text); white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 2;
}
.hero-float svg { width: 14px; height: 14px; fill: none; stroke-width: 2; }
.hero-float-1 { top: -18px; left: -24px; animation: floatBob 4s ease-in-out infinite; }
.hero-float-2 { bottom: -18px; right: -24px; animation: floatBob 4s ease-in-out infinite 2s; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 1; animation: fadeUp 1s 0.9s ease both; }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--g1)); animation: floatBob 2.5s ease-in-out infinite; }
.hero-scroll span { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── FEATURES SECTION ── */
.features-section { padding: 7rem 1.5rem; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--trans); position: relative; overflow: hidden; }
.feature-card::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, transparent 60%); opacity:0; transition: opacity 0.3s; border-radius: var(--radius-lg); }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.feature-card:hover::before { opacity:1; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feature-icon-cyan   { background: rgba(0,212,255,0.1);  border: 1px solid rgba(0,212,255,0.2); }
.feature-icon-green  { background: rgba(0,229,160,0.1);  border: 1px solid rgba(0,229,160,0.2); }
.feature-icon-purple { background: rgba(123,95,255,0.1); border: 1px solid rgba(123,95,255,0.2); }
.feature-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; }
.feature-icon-cyan svg { stroke: var(--g1); } .feature-icon-green svg { stroke: var(--g2); } .feature-icon-purple svg { stroke: var(--g3); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.65rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted2); font-weight: 300; line-height: 1.65; }

/* ── PRICING SECTION ── */
.pricing-section { padding: 7rem 1.5rem; background: var(--bg2); position: relative; overflow: hidden; }
.pricing-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,0.05) 0%, transparent 60%); pointer-events:none; }
.pricing-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3.5rem; }
.pricing-tab { background: var(--card); border: 1px solid var(--border2); color: var(--muted2); padding: 0.55rem 1.4rem; border-radius: 100px; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: var(--trans); font-family: var(--font-body); }
.pricing-tab.active, .pricing-tab:hover { background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,229,160,0.15)); border-color: rgba(0,212,255,0.3); color: var(--g1); }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }

.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; position: relative; overflow: hidden; transition: var(--trans); }
.pricing-card::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, rgba(0,212,255,0.4), transparent); opacity:0; transition: opacity 0.3s; }
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.pricing-card:hover::before { opacity:1; }
.pricing-card.featured { background: linear-gradient(145deg, #0f2040, #0b1830); border-color: rgba(0,212,255,0.25); box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1); }
.pricing-card.featured::after { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(0,229,160,0.04)); pointer-events:none; border-radius: var(--radius-lg); }
.plan-badge { margin-bottom: 1rem; }
.plan-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; font-family: var(--font-body); }
.plan-desc { font-size: 0.78rem; color: var(--muted); font-weight: 300; line-height: 1.5; margin-bottom: 1.5rem; }
.plan-price-wrap { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.plan-price-old { font-size: 0.78rem; color: var(--muted); text-decoration: line-through; margin-bottom: 0.15rem; }
.plan-price-main { display: flex; align-items: baseline; gap: 0.2rem; }
.plan-price-cur { font-size: 0.95rem; font-weight: 700; color: var(--muted2); }
.plan-price-amt { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(135deg, var(--text), #8aa0d0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-card.featured .plan-price-amt { background: linear-gradient(135deg, var(--g1), var(--g2)); -webkit-background-clip: text; background-clip: text; }
.plan-price-per { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.25rem; }
.plan-save { display: inline-block; font-size: 0.68rem; font-weight: 700; color: var(--g2); background: rgba(0,229,160,0.1); border: 1px solid rgba(0,229,160,0.2); padding: 0.18rem 0.55rem; border-radius: 100px; margin-top: 0.35rem; }

.plan-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-bottom: 1.4rem; }
.plan-spec { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 9px; padding: 0.55rem 0.7rem; transition: border-color 0.2s; }
.pricing-card:hover .plan-spec { border-color: rgba(0,212,255,0.1); }
.plan-spec-label { font-size: 0.65rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.plan-spec-value { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.plan-spec-value.hi { color: var(--g1); }

.plan-features { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.55rem; }
.plan-features li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.82rem; color: var(--muted2); }
.plan-features li .chk { width: 17px; height: 17px; border-radius: 50%; background: rgba(0,229,160,0.1); border: 1px solid rgba(0,229,160,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-features li .chk svg { width: 9px; height: 9px; stroke: var(--g2); stroke-width: 2.5; }
.plan-features li.dim { color: var(--muted); }
.plan-features li.dim .chk { background: rgba(255,255,255,0.03); border-color: var(--border); }
.plan-features li.dim .chk svg { stroke: var(--muted); }

/* ── TRUST / LOGOS ── */
.trust-section { padding: 4rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label { text-align: center; font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-logo { font-size: 1.1rem; font-weight: 800; color: var(--muted); font-family: var(--font-head); letter-spacing: -0.02em; opacity: 0.5; transition: opacity 0.2s; }
.trust-logo:hover { opacity: 0.9; }

/* ── CTA BAND ── */
.cta-section {
  padding: 7rem 1.5rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #081428, #060e20);
}
.cta-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,212,255,0.07) 0%, transparent 60%); pointer-events:none; }
.cta-inner { position:relative; z-index:1; text-align:center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-inner p  { color: var(--muted2); font-size: 1rem; font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-actions  { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 5rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 4rem; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 260px; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social { width: 36px; height: 36px; border-radius: 9px; background: var(--card); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.footer-social:hover { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.3); }
.footer-social svg { width: 15px; height: 15px; stroke: var(--muted2); fill: none; stroke-width: 1.8; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1.25rem; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 1.5rem 6rem; text-align: center; position: relative; overflow: hidden;
  background: var(--bg);
}
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 60%); pointer-events:none; }
.page-hero-inner { position:relative; z-index:1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.25rem; }
.page-hero p  { font-size: 1.05rem; color: var(--muted2); font-weight: 300; line-height: 1.7; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img-card {
  background: linear-gradient(145deg, #0d1e3a, #091628);
  border: 1px solid rgba(0,212,255,0.14);
  border-radius: 22px; overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.about-img-card-inner { padding: 2rem; text-align: center; }
.about-stats-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.about-stats-float-val { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, var(--g1), var(--g2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stats-float-label { font-size: 0.75rem; color: var(--muted); font-weight: 300; }
.about-content .section-badge { margin-bottom: 1rem; }
.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.about-content p { font-size: 0.9rem; color: var(--muted2); font-weight: 300; line-height: 1.75; margin-bottom: 1rem; }
.about-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.about-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted2); }
.about-list li svg { width: 18px; height: 18px; stroke: var(--g2); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; transition: var(--trans); }
.team-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.15); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--g1), var(--g2)); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: #000; }
.team-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; font-family: var(--font-body); }
.team-role { font-size: 0.78rem; color: var(--muted); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--trans); }
.contact-item:hover { border-color: rgba(0,212,255,0.2); }
.contact-item-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--g1); fill: none; stroke-width: 1.8; }
.contact-item h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; font-family: var(--font-body); }
.contact-item p  { font-size: 0.82rem; color: var(--muted2); font-weight: 300; }

.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.contact-form > p { font-size: 0.875rem; color: var(--muted2); margin-bottom: 1.75rem; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--muted2); }
.form-input, .form-select, .form-textarea {
  background: var(--bg); border: 1px solid var(--border2);
  color: var(--text); border-radius: 10px; padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.875rem; width: 100%;
  transition: var(--trans); outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 0 3px rgba(0,212,255,0.07); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-visual  { display: none; }
  .hero-badge, .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats   { justify-content: center; }
  .hero-actions { justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .navbar-nav, .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

@media (max-width: 640px) {
  .features-grid  { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .hero { padding: 6rem 1rem 4rem; }
  .features-section, .pricing-section, .cta-section { padding: 5rem 1rem; }
}
