/* === ROOT VARIABLES === */
:root {
  --bg: #0b0e18;
  --surface: rgba(255, 255, 255, 0.04);
  --text: #ffffff;
  --muted: #8892a4;
  --primary: #00d4a8;
  --primary-dark: #00b891;
  --gold: #e8b84b;
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

p { color: var(--muted); }

/* === NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #0b0e18;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav a:not(.nav-cta) {
  padding: 0.5rem 0.9rem;
  font-size: 0.93rem;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s;
  position: relative;
}

.site-nav a:not(.nav-cta):hover { color: var(--text); }

.site-nav a.active:not(.nav-cta) { color: var(--primary); }

.site-nav a.active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.93rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--primary); color: #0b0e18; }
.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn-ghost:hover { color: var(--primary); }

.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 0;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
  background: linear-gradient(135deg, rgba(0,212,168,0.055) 0%, var(--bg) 45%, #0d1128 100%);
}

.orb {
  position: absolute;
  top: 3rem;
  right: 7%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,212,168,0.1) 0%, rgba(0,212,168,0.03) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.accent-teal { color: var(--primary); }
.accent-gold { color: var(--gold); }

.hero h1 { max-width: 14ch; }

.hero-desc {
  max-width: 52ch;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* === HERO STATS === */
.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.stat span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

/* === HERO SPHERE CANVAS + DECORATIVE SHAPES === */
#heroSphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-glow--teal {
  width: 380px;
  height: 380px;
  background: rgba(0, 212, 168, 0.07);
  top: 10%;
  left: 18%;
}

.hero-glow--navy {
  width: 440px;
  height: 440px;
  background: rgba(14, 20, 60, 0.25);
  bottom: 0;
  right: 0;
}

.hero-shape {
  position: absolute;
}

.hero-shape--ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 168, 0.12);
  top: 17%;
  right: 13%;
}

.hero-shape--square {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 168, 0.045);
  transform: rotate(45deg);
  bottom: 22%;
  left: 8%;
}

/* === PAGE TRANSITION === */
#pageTransition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9998;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

body.page-loaded #pageTransition {
  opacity: 0;
}

/* === CUSTOM CURSOR === */
#customCursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(135deg, rgba(0,212,168,0.04) 0%, var(--bg) 50%, #0d1128 100%);
}

.page-hero .orb {
  top: 1rem;
  right: 5%;
  width: 260px;
  height: 260px;
}

.page-hero h1 { max-width: 18ch; }

.page-hero .hero-desc {
  max-width: 56ch;
  margin-top: 1.2rem;
}

/* === ABOUT STATS BAR === */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.about-stat-key {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.about-stat-val {
  color: var(--text);
  font-size: 0.96rem;
}

/* === SECTIONS === */
.section { padding: 5rem 0; }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* === SERVICES LIST === */
.services-list { margin-top: 2.5rem; }

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}

.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 0.5rem; }

.service-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 2.2rem;
  padding-top: 0.1rem;
}

.service-item h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.35rem; }
.service-item p { margin: 0; font-size: 0.95rem; line-height: 1.6; }

/* === TWO COLUMN === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* === CARDS === */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.2s;
}

.card:hover { background: rgba(255,255,255,0.06); }
.card h3 { margin-bottom: 0.45rem; }

/* === PROCESS STEPS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-step {
  padding: 1.5rem 0;
  border-top: 2px solid var(--border);
}

.process-step.active-step { border-color: var(--primary); }

.process-step strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-step span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* === TIMELINE === */
.timeline {
  margin-top: 2.5rem;
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  padding-top: 0.2rem;
}

.timeline-item h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 0.4rem; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.5rem; }

.contact-details { display: grid; gap: 1.25rem; margin-top: 2rem; }

.contact-detail-key {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-detail-val { color: var(--text); font-size: 0.96rem; }
.contact-detail-val a { color: var(--primary); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.2); }

.contact-form select option { background: #131728; color: var(--text); }

.form-status {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(0,212,168,0.1);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* === CTA BAND === */
.cta-band {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.cta-inner h2 { margin-bottom: 0.5rem; }

/* === MARQUEE TICKER === */
.ticker {
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.75rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  flex-shrink: 0;
}

.ticker-item::after {
  content: '\2022';
  margin-left: 1.75rem;
  color: var(--muted);
  font-size: 0.55rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === ARROW LINK === */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s;
}

.arrow-link:hover { gap: 0.65rem; }

/* === CONTACT ICON LABELS === */
.contact-icon-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon-item:last-child { border-bottom: none; }

.contact-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
  margin-top: 0.1rem;
}

.contact-icon-val {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-icon-val a { color: var(--primary); }

/* === FOOTER === */
.site-footer {
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-col--brand .brand {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 34ch;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.social-link:hover { color: var(--primary); border-color: var(--primary); }

.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.55;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-links li {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.82rem; color: var(--muted); }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 3.5rem; }
  .orb { width: 200px; height: 200px; right: 0; top: 2rem; }

  .stats-row, .about-stats, .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #0f1422;
    border-bottom: 1px solid var(--border);
    z-index: 50;
  }

  .site-nav.open { display: flex; }
  .site-nav a:not(.nav-cta) { padding: 0.75rem 0.9rem; }
  .nav-cta { border-radius: 12px; text-align: center; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .stats-row, .about-stats, .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 3.5rem 0; }
}
