:root {
  --navy: #0d1b2a;
  --navy-mid: #152233;
  --navy-light: #1e3a52;
  --teal: #00d4aa;
  --teal-dim: rgba(0, 212, 170, 0.12);
  --amber: #f59e0b;
  --bg: #f8f7f4;
  --surface: #ffffff;
  --text: #0d1b2a;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: rgba(13, 27, 42, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  line-height: 1.15;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,27,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content { position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal);
}
.hero-headline {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: transparent;
  color: var(--navy);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(13,27,42,0.03); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: transparent;
  color: var(--navy);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-large { padding: 16px 36px; font-size: 16px; }

/* ── HERO CARDS ── */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(13,27,42,0.06), 0 1px 4px rgba(13,27,42,0.04);
}
.hero-card-main { grid-column: 1 / -1; }
.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.card-dot { width: 8px; height: 8px; border-radius: 50%; }
.card-dot.green { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.card-dot.teal { background: var(--teal); box-shadow: 0 0 6px var(--teal); }
.card-dot.amber { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.metric-value {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.metric-unit { font-size: 24px; font-weight: 700; color: var(--teal); }
.metric-label { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.card-bars { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-mid); }
.bar-row span { width: 90px; flex-shrink: 0; }
.bar { flex: 1; height: 6px; background: rgba(13,27,42,0.08); border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--teal); border-radius: 100px; }
.rt-value {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.rt-unit { font-size: 16px; font-weight: 600; color: var(--teal); }
.rt-label { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.tickets-grid { display: flex; flex-direction: column; gap: 6px; }
.ticket-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
}
.ticket-chip.open { background: #fef2f2; color: #dc2626; }
.ticket-chip.wip { background: #fffbeb; color: #d97706; }
.ticket-chip.done { background: #f0fdf4; color: #16a34a; }

/* ── STATS ── */
.stats {
  background: var(--navy);
  padding: 0 24px;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.stat-unit { font-size: 20px; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── SECTIONS ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; }

/* ── SERVICES ── */
.services {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.08);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--teal-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── SECTORS ── */
.sectors { background: var(--navy); padding: 96px 24px; }
.sectors-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.sectors-header { position: sticky; top: 80px; }
.sectors-header .section-tag { color: var(--teal); }
.sectors-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sectors-list { display: flex; flex-direction: column; gap: 0; }
.sector-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}
.sector-item:last-child { border-bottom: none; }
.sector-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 4px;
}
.sector-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sector-content p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── PACKAGES ── */
.packages {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pkg-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.08); transform: translateY(-2px); }
.pkg-card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pkg-card-featured .pkg-name { color: #fff; }
.pkg-desc { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.pkg-price {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.pkg-card-featured .pkg-price { color: #fff; }
.pkg-unit { font-size: 16px; font-weight: 500; color: var(--text-light); }
.pkg-card-featured .pkg-unit { color: rgba(255,255,255,0.5); }
.pkg-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pkg-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.pkg-card-featured .pkg-features li { color: rgba(255,255,255,0.7); }
.pkg-card-featured .pkg-features li::before { background: var(--teal); }
.pkg-cta {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.pkg-cta:hover { background: var(--navy-light); }
.pkg-cta-featured { background: var(--teal); color: var(--navy) !important; }
.pkg-cta-featured:hover { background: #00c49d; }

.packages-custom {
  border: 1.5px dashed rgba(13,27,42,0.15);
  border-radius: 16px;
  padding: 28px 32px;
}
.custom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.custom-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.custom-content p { font-size: 14px; color: var(--text-mid); }

/* ── CLOSING ── */
.closing {
  background: var(--navy);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.closing-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.closing-sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 36px; line-height: 1.7; }
.closing .btn-primary { background: var(--teal); color: var(--navy); }
.closing .btn-primary:hover { background: #00c49d; }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 14px; color: var(--text-mid); text-decoration: none; }
.footer-contact a:hover { color: var(--navy); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 28px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 72px; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sectors-inner { grid-template-columns: 1fr; gap: 40px; }
  .sectors-header { position: static; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .custom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero-visual { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .stat-number { font-size: 32px; }
}