@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --navy:    #050c1a;
  --navy2:   #0a1628;
  --navy3:   #0f2040;
  --cyan:    #00d4ff;
  --cyan2:   #00a8cc;
  --cyan3:   #007fa0;
  --white:   #f0f4ff;
  --gray:    #8a9bb5;
  --gray2:   #c8d3e8;
  --accent:  #ff6b35;
  --green:   #00e5a0;
  --card-bg: rgba(10,22,40,0.85);
  --border:  rgba(0,212,255,0.15);
  --border2: rgba(0,212,255,0.08);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-cyan: 0 0 40px rgba(0,212,255,0.12);
  --shadow-sm:   0 2px 20px rgba(0,0,0,0.4);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Grid bg ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--gray2); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.badge::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none; cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 0 24px rgba(0,212,255,0.25);
}
.btn-primary:hover {
  background: #00eeff;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,212,255,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.4);
}
.btn-outline:hover {
  background: rgba(0,212,255,0.08);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ── Cards ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-cyan);
}

/* ── Cyan text / highlight ── */
.text-cyan   { color: var(--cyan); }
.text-accent { color: var(--accent); }
.text-green  { color: var(--green); }
.text-gray   { color: var(--gray); }
.highlight   { color: var(--cyan); }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { max-width: 600px; margin: 1rem auto 0; font-size: 1.1rem; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
  margin: 0;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(5,12,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--white);
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.logo span { color: var(--cyan); }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
  color: var(--gray2);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--cyan);
  transform: scaleX(0); transition: transform 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-family: var(--font-head); font-size: 0.85rem; color: var(--gray);
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-phone svg { width: 14px; height: 14px; color: var(--cyan); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-mobile {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy2);
    z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-mobile.open { transform: translateX(0); }
  .nav-mobile a {
    font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white);
  }
  .nav-mobile a:hover { color: var(--cyan); }
  .nav-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; color: var(--white);
    font-size: 2rem; cursor: pointer;
  }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy2);
  border-top: 1px solid var(--border2);
  padding: 4rem 0 2rem;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; max-width: 300px; }
.footer-brand .social-links {
  display: flex; gap: 0.8rem; margin-top: 1.5rem;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}
.social-link:hover { background: rgba(0,212,255,0.15); color: var(--cyan); transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col li a { font-size: 0.9rem; color: var(--gray); }
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--gray);
}
.footer-bottom .badges { display: flex; gap: 1rem; }
.footer-badge {
  background: rgba(0,212,255,0.06);
  border: 1px solid var(--border2);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.75rem; color: var(--gray);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 { width: 600px; height: 600px; background: rgba(0,212,255,0.07); top: -100px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: rgba(0,80,120,0.15); bottom: 0; left: -100px; }
.orb3 { width: 300px; height: 300px; background: rgba(0,212,255,0.05); top: 30%; left: 50%; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero-desc { font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 520px; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-proof { display: flex; align-items: center; gap: 1.5rem; }
.hero-proof-item { text-align: center; }
.hero-proof-item .num {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
  color: var(--white); display: block;
}
.hero-proof-item .label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-proof-sep { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; }
.dashboard-preview {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-cyan), var(--shadow-sm);
  position: relative;
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border2);
}
.dash-title { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--gray2); }
.dash-status { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--green); font-family: var(--font-head); font-weight: 600; }
.dash-status::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 1rem; }
.dash-stat {
  background: rgba(0,212,255,0.05);
  border: 1px solid var(--border2);
  border-radius: 10px; padding: 0.8rem;
}
.dash-stat .val { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--cyan); }
.dash-stat .lbl { font-size: 0.7rem; color: var(--gray); margin-top: 2px; }
.dash-bar-row { display: flex; flex-direction: column; gap: 0.7rem; }
.dash-bar-item { display: flex; flex-direction: column; gap: 0.3rem; }
.dash-bar-label { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--gray2); }
.dash-bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--cyan2), var(--cyan)); }
.dash-alerts { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.dash-alert {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(0,229,160,0.06);
  border: 1px solid rgba(0,229,160,0.15);
  border-radius: 8px; padding: 0.6rem 0.8rem;
  font-size: 0.75rem; color: var(--gray2);
}
.dash-alert.warn {
  background: rgba(255,107,53,0.06);
  border-color: rgba(255,107,53,0.15);
}
.dash-alert-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dash-alert-dot.green { background: var(--green); }
.dash-alert-dot.orange { background: var(--accent); }
/* Floating ping badge */
.ping-badge {
  position: absolute; top: -12px; right: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--navy);
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { text-align: center; padding: 7rem 0 4rem; }
  .hero-desc, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
}

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: var(--navy2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 2rem 0;
  position: relative; z-index: 1;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 1rem; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border2);
}
.stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
  color: var(--cyan); display: block;
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--gray); margin-top: 0.4rem; }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-cyan);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--cyan);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
  color: var(--cyan);
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   IT HEALTH CHECK
═══════════════════════════════════════ */
.health-check {
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  position: relative; overflow: hidden;
}
.health-check::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 60%);
  pointer-events: none;
}
.hc-progress { display: flex; gap: 0.4rem; margin-bottom: 2rem; }
.hc-step {
  flex: 1; height: 4px; border-radius: 100px;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.hc-step.done { background: var(--cyan); }
.hc-step.active { background: rgba(0,212,255,0.5); }
.hc-question {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 1.5rem; line-height: 1.4;
}
.hc-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.hc-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1rem 1.2rem;
  cursor: pointer; font-size: 0.95rem; color: var(--gray2);
  transition: var(--transition); text-align: left;
  font-family: var(--font-body);
}
.hc-option:hover, .hc-option.selected {
  border-color: var(--cyan);
  background: rgba(0,212,255,0.08);
  color: var(--white);
}
.hc-nav { display: flex; justify-content: space-between; align-items: center; }
.hc-count { font-size: 0.85rem; color: var(--gray); }

/* Results */
.hc-result { display: none; }
.hc-result.visible { display: block; }
.hc-result-score {
  text-align: center; padding: 2rem 0;
}
.score-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 30px rgba(0,212,255,0.2);
}
.score-circle .score-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--cyan);
  line-height: 1;
}
.score-circle .score-max { font-size: 0.8rem; color: var(--gray); }
.hc-recommendation { margin-top: 1.5rem; padding: 1.5rem; background: rgba(0,212,255,0.06); border-radius: 12px; border: 1px solid var(--border); }
.hc-recommendation p { color: var(--gray2); margin-bottom: 1rem; }

/* ═══════════════════════════════════════
   SERVICE AREA MAP
═══════════════════════════════════════ */
.service-area {
  position: relative;
}
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.area-map {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  min-height: 360px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.area-counties { display: flex; flex-direction: column; gap: 0.8rem; }
.county-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,212,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 10px; padding: 0.9rem 1.2rem;
  transition: var(--transition);
}
.county-item:hover { border-color: var(--border); background: rgba(0,212,255,0.08); }
.county-name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.county-state { font-size: 0.8rem; color: var(--gray); margin-top: 0.15rem; }
.county-dot { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 8px var(--cyan); }
@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-map { display: none; }
}

/* ═══════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════ */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border2);
  border-radius: 14px; padding: 1.5rem;
  text-align: center; transition: var(--transition);
  cursor: default;
}
.industry-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.industry-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.industry-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.industry-card p { font-size: 0.82rem; color: var(--gray); }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .industries-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border2);
  border-radius: 16px; padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.testi-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.95rem; color: var(--gray2); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan3), var(--navy3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--cyan);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--gray); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.08), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border2);
  border-radius: 20px; padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(0,212,255,0.12);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--navy);
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 1rem; border-radius: 100px;
  white-space: nowrap;
}
.pricing-name { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 0.5rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.3rem; margin: 1rem 0; }
.price-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--white); }
.price-per { font-size: 0.9rem; color: var(--gray); }
.pricing-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border2); }
.pricing-features { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.feat-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: var(--gray2); }
.feat-icon { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.feat-icon.no { color: var(--gray3); opacity: 0.3; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: scale(1); } }

/* ═══════════════════════════════════════
   CONTACT / SUPPORT FORM
═══════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-label { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--gray2); text-transform: uppercase; letter-spacing: 0.06em; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); width: 100%;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0,212,255,0.5);
  background: rgba(0,212,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
.form-select { cursor: pointer; -webkit-appearance: none; }
.form-select option { background: var(--navy2); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--border);
  border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-head); font-weight: 600; }
.contact-value { font-weight: 500; color: var(--white); }
@media (max-width: 900px) { .form-grid, .form-row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero p { font-size: 1.15rem; max-width: 600px; margin: 1.2rem auto 0; }

/* ═══════════════════════════════════════
   PARTNERS / LOGOS
═══════════════════════════════════════ */
.partners-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2.5rem;
  padding: 2.5rem 0;
}
.partner-badge {
  padding: 0.6rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.partner-badge:hover { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }

/* ═══════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 15%; right: 15%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: var(--cyan); margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; }
@media (max-width: 700px) {
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
}

/* ═══════════════════════════════════════
   UTILITIES / ANIMATIONS
═══════════════════════════════════════ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.2); }
  50%       { box-shadow: 0 0 40px rgba(0,212,255,0.5); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-in { animation: fadeIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Ticket status tags */
.tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.65rem; border-radius: 100px;
}
.tag-open    { background: rgba(0,212,255,0.1);  color: var(--cyan);   border: 1px solid rgba(0,212,255,0.2);  }
.tag-urgent  { background: rgba(255,107,53,0.1); color: var(--accent); border: 1px solid rgba(255,107,53,0.2); }
.tag-done    { background: rgba(0,229,160,0.1);  color: var(--green);  border: 1px solid rgba(0,229,160,0.2);  }

/* Responsive base */
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { font-size: 0.88rem; padding: 0.75rem 1.5rem; }
  .cta-band { padding: 2.5rem 1.5rem; }
}
