@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/plus-jakarta-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/plus-jakarta-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg-dark: #0C1929;
  --bg-dark-raised: #142236;
  --bg-white: #FFFFFF;
  --bg-light: #F5F8FC;
  --text-on-dark: #EDF2F7;
  --text-muted-on-dark: #8EA4BD;
  --text-dark: #111827;
  --text-muted: #5B6B7D;
  --sky: #1A8FE3;
  --sky-hover: #1578C4;
  --sky-dim: rgba(26, 143, 227, 0.08);
  --sky-glow: rgba(26, 143, 227, 0.14);
  --orange: #E8742A;
  --orange-hover: #D1631F;
  --orange-dim: rgba(232, 116, 42, 0.08);
  --orange-glow: rgba(232, 116, 42, 0.12);
  --border: #DDE4ED;
  --border-dark: rgba(255, 255, 255, 0.06);
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1600px;
  --side-padding: 5vw;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 19px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem var(--side-padding);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.85rem var(--side-padding);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-on-dark); transition: color 0.4s var(--ease);
}
.nav-logo span {
  color: var(--orange); margin-left: 0.2em; font-weight: 600;
}
.scrolled .nav-logo { color: var(--text-dark); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 1rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--text-muted-on-dark); transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text-on-dark); }
.scrolled .nav-links a { color: var(--text-muted); }
.scrolled .nav-links a:hover { color: var(--text-dark); }
.nav-cta {
  padding: 0.6rem 1.4rem !important;
  border: 1px solid rgba(232, 116, 42, 0.5);
  border-radius: 5px;
  color: var(--orange) !important;
  font-weight: 600 !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--orange); color: #fff !important;
  border-color: var(--orange);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1.1rem 2.6rem; font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: 5px; border: none; cursor: pointer;
  transition: all 0.3s var(--ease); text-decoration: none;
}
.btn-accent {
  background: var(--orange); color: #fff;
}
.btn-accent:hover {
  background: var(--orange-hover); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232, 116, 42, 0.3);
}
.btn-ghost {
  background: transparent; color: var(--text-muted-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35); color: var(--text-on-dark); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.08rem; }

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--bg-dark);
  min-height: 88vh;
  display: grid;
  align-content: center;
  text-align: center;
  padding: 7rem var(--side-padding) 5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-glow::before {
  content: '';
  position: absolute;
  width: 750px; height: 750px;
  background: radial-gradient(circle, var(--sky-glow) 0%, transparent 60%);
  top: 35%; left: 60%;
  transform: translate(-50%, -50%);
  filter: blur(90px);
  animation: glow-drift 16s ease-in-out infinite alternate;
}
.hero-glow::after {
  content: '';
  position: absolute;
  width: 550px; height: 550px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  top: 65%; left: 35%;
  transform: translate(-50%, -50%);
  filter: blur(90px);
  animation: glow-drift 16s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  to   { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}
.badge {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  border: 1px solid rgba(26, 143, 227, 0.3);
  padding: 0.5rem 1.3rem; border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.2s;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.18; color: var(--text-on-dark);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.35s;
}
.hero h1 em { font-style: normal; color: var(--orange); font-weight: 800; }
.hero h1 .sky { color: var(--sky); font-weight: 800; }
.hero-sub {
  font-size: 1.25rem; color: var(--text-muted-on-dark);
  max-width: 80%; margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.5s;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.65s;
}

/* ── Sections ── */
.section { padding: 5.5rem var(--side-padding); text-align: center; }
.section-alt { background: var(--bg-light); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
}
.section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.2; color: var(--text-dark);
  margin-bottom: 3rem;
}

/* ── Services Grid ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; text-align: left;
}
.service-card {
  padding: 2.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--orange));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.service-card:hover {
  border-color: rgba(26, 143, 227, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11, 25, 41, 0.06);
}
.service-card:hover::before { opacity: 1; }
.service-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sky-dim);
  border: 1px solid rgba(26, 143, 227, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky); flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 700; margin: 0; color: var(--text-dark);
}
.service-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* ── Steps ── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; position: relative;
  text-align: center; margin-top: 1rem;
}
.steps::before {
  content: '';
  position: absolute;
  top: 3.2rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky) 20%, var(--orange) 80%, transparent);
  opacity: 0.3;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: var(--orange); line-height: 1;
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.step h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 700; margin-bottom: 0.6rem; color: var(--text-dark);
}
.step p { font-size: 0.95rem; color: var(--text-muted); margin: 0 auto; line-height: 1.65; }

/* ── About ── */
.about-body {
  max-width: var(--max-width); margin: 0 auto; text-align: left;
}
.about-lead {
  font-size: 1.15rem; color: var(--text-dark); margin-bottom: 1.25rem;
  font-weight: 600;
}
.about-body p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.7; }
.about-body p:last-child { margin-bottom: 0; }

/* ── CTA Band ── */
.cta-band {
  position: relative;
  background: var(--bg-dark);
  padding: 5.5rem var(--side-padding);
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.cta-glow::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  top: 50%; left: 45%;
  transform: translate(-50%, -50%);
  filter: blur(90px);
}
.cta-glow::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sky-glow) 0%, transparent 60%);
  top: 40%; left: 60%;
  transform: translate(-50%, -50%);
  filter: blur(90px);
}
.cta-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.25; color: var(--text-on-dark);
  margin-bottom: 1rem;
}
.cta-band p {
  font-size: 1.25rem; color: var(--text-muted-on-dark);
  margin-bottom: 2rem; line-height: 1.65;
}

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 2rem var(--side-padding);
  text-align: center;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  font-size: 0.9rem; color: var(--text-muted-on-dark); letter-spacing: 0.02em;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
  color: var(--text-on-dark); transition: color 0.4s var(--ease);
}
.scrolled .nav-toggle { color: var(--text-dark); }
.nav-toggle svg { display: block; }

/* ── Responsive ── */
@media (max-width: 768px) {
  html { font-size: 17px; }

  .nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: min(280px, 80vw); height: 100dvh;
    flex-direction: column; gap: 0;
    background: var(--bg-dark);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 200;
    box-shadow: -8px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    color: var(--text-muted-on-dark) !important;
    font-size: 1.1rem; padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links a:hover { color: var(--text-on-dark) !important; }
  .nav-cta {
    display: inline-flex !important;
    margin-top: 1rem; text-align: center; justify-content: center;
    border-color: rgba(232, 116, 42, 0.5) !important;
  }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 150;
    background: rgba(0,0,0,0.5);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }

  .hero { min-height: auto; padding: 6rem 1.5rem 3.5rem; }
  .hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .hero-sub { max-width: 100%; font-size: 1.05rem; }
  .section { padding: 3.5rem 1.5rem; }
  .section h2 { margin-bottom: 2rem; }
  .cta-band { padding: 3.5rem 1.5rem; }
  .cta-band p { font-size: 1.05rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .about-body p { font-size: 1rem; }
}

@media (max-width: 480px) {
  html { font-size: 16px; }
  .hero { padding: 5.5rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 3rem 1.25rem; }
  .cta-band { padding: 3rem 1.25rem; }
  .service-card { padding: 1.75rem; }
  .btn { padding: 1rem 2rem; font-size: 1rem; }
  .btn-lg { padding: 1rem 2rem; font-size: 1rem; }
}
