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

:root {
  --bg: #07090E;
  --surface: #0D1018;
  --surface2: #131820;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --accent: #1B6BFF;
  --accent-dim: rgba(27,107,255,0.12);
  --text: #EEF2FF;
  --text-muted: #9BA7B8;
  --text-dim: #3D4A5C;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* -- NAV -- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(7,9,14,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.logo svg { display: block; }
.logo-nav svg { height: 50px; width: auto; }
.logo-footer svg { height: 38px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text) !important;
  background: var(--accent);
  padding: 9px 22px;
  border-radius: 6px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; color: var(--text) !important; }

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

/* -- HERO -- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,107,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,107,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
  letter-spacing: 0.02em;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }

/* -- PILLARS -- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar {
  background: var(--bg);
  padding: 2.5rem 2.5rem;
  transition: background 0.2s;
}
.pillar:hover { background: var(--surface); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* -- STATS -- */
.stats-section {
  padding: 4rem 5vw;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: 2rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* -- COMPLIANCE BANNER -- */
.compliance-banner {
  padding: 3rem 5vw;
}
.compliance-inner {
  border: 1px solid rgba(27,107,255,0.2);
  border-radius: 12px;
  background: var(--accent-dim);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.compliance-inner h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.compliance-inner p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 50ch;
  line-height: 1.7;
}
.compliance-frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.compliance-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(27,107,255,0.15);
  border: 1px solid rgba(27,107,255,0.25);
  padding: 5px 12px;
  border-radius: 4px;
}

/* -- US SUPPORT BANNER -- */
.support-banner {
  padding: 0 5vw 3rem;
}
.support-inner {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.support-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(27,107,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.support-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.support-text h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.support-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* -- SECTION HEADER -- */
.section-header {
  max-width: 56ch;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 50ch; }

/* -- SECTION WRAPPER -- */
.section {
  padding: 5rem 5vw;
}
.section-alt { background: var(--surface); }

/* -- ABOUT -- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-body p strong { color: var(--text); font-weight: 600; }

.values-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.value-item {
  background: var(--surface2);
  padding: 1.5rem 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: background 0.2s;
}
.value-item:hover { background: var(--surface); }
.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; }
.value-text h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.value-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* -- LOCATIONS -- */
.locations-section {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.locations-section h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.locations-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.location-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-tag svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* -- LEADERSHIP -- */
.leadership {
  margin-top: 4rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}
.team-card:hover { border-color: var(--border-hover); background: var(--surface2); }
.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(27,107,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.team-card h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; margin-bottom: 0.3rem; }
.team-card .role { font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* -- SERVICES -- */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 4rem;
}
.service-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color 0.25s;
}
.service-block:hover { border-color: rgba(27,107,255,0.3); }

.service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.service-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(27,107,255,0.2);
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.service-header h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.service-body {
  padding: 2.5rem;
  background: var(--surface2);
}
.service-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.feature-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* -- CONTACT -- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.contact-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.contact-detail svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.contact-detail span { font-size: 14px; color: var(--text-muted); }
.contact-detail strong { display: block; font-size: 14px; color: var(--text); font-weight: 500; }
.contact-detail strong a { color: var(--accent); text-decoration: none; }
.contact-detail strong a:hover { text-decoration: underline; }
.contact-detail-actions { display: inline-flex; gap: 0.5rem; margin-top: 0.5rem; }
.contact-detail-actions .btn-ghost { padding: 8px 10px; font-size: 12px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-submit {
  width: 100%;
  margin-top: 1.5rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.85; }

/* -- TIER CARDS -- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.tier-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}
.tier-card:hover { border-color: var(--border-hover); }
.tier-card-featured {
  border: 2px solid var(--accent);
  background: var(--surface);
}
.tier-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-header { margin-bottom: 1.5rem; }
.tier-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.tier-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  margin-bottom: 2rem;
}
.tier-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.tier-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.tier-cta {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-hover);
  border-radius: 6px;
  padding: 11px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.tier-cta:hover { color: var(--text); border-color: rgba(255,255,255,0.3); background: var(--surface2); }
.tier-card-featured .tier-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.tier-card-featured .tier-cta:hover { opacity: 0.85; }
.tier-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--surface2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.tier-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.tier-meta-label { color: var(--text-muted); }
.tier-meta-val { color: var(--text); font-weight: 600; }

/* -- FOOTER -- */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p { font-size: 13px; color: var(--text-dim); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

/* -- DIVIDER LINE -- */
.line-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* -- THANK YOU -- */
.thank-you {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.thank-you.show { display: block; }
.thank-you h3 { font-family: var(--font-display); font-size: 16px; margin-bottom: 0.75rem; color: var(--accent); }
.thank-you p { font-size: 14px; color: var(--text-muted); }

/* -- MOBILE MENU -- */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(7,9,14,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw 2rem;
  z-index: 99;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); }
.mobile-menu .nav-cta-mobile {
  background: var(--accent);
  color: #fff !important;
  padding: 14px !important;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 14px !important;
  border-bottom: none !important;
  margin-top: 0.5rem;
}

/* -- PAGE WRAPPER -- */
.page-wrapper {
  min-height: 100vh;
  padding-top: 72px;
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .tier-grid { grid-template-columns: 1fr; }
  .addons-projects-grid { grid-template-columns: 1fr !important; }
  .schedule-grid { grid-template-columns: 1fr !important; }
  .compliance-inner { flex-direction: column; text-align: center; }
  .support-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3.5vw 5vw 2.5vw; }
  .section { padding: 3.5rem 5vw; }
  .stats-section { padding: 3.5rem 5vw; }
  .about-body .btn-primary { display: block; width: 100%; text-align: center; padding: 14px 16px; }
}
