@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:     #0F172A;
  --accent:      #F97316;
  --accent-dark: #EA6B0A;
  --bg:          #FFFFFF;
  --bg-subtle:   #F8FAFC;
  --text:        #1E293B;
  --text-muted:  #64748B;
  --border:      #E2E8F0;
  --shadow-sm:   0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.06);
  --shadow-md:   0 4px 16px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.06);
  --radius:      12px;
  --radius-sm:   8px;
  --max-width:   1120px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, transform .15s ease, box-shadow .18s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .875rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--accent); }

.nav-cta {
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--primary);
  background-image:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(249,115,22,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(249,115,22,.08) 0%, transparent 50%);
  padding: 7rem 0 6rem;
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #fdba74;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.65;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  position: relative;
}

.hg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,.2);
}
.hg-ring-1 { inset: 0; }
.hg-ring-2 { inset: 12%; border-color: rgba(249,115,22,.15); }
.hg-ring-3 { inset: 24%; border-color: rgba(249,115,22,.25); }

.hg-center {
  position: absolute;
  inset: 35%;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(249,115,22,.5);
}

.hg-icon {
  width: 40%;
  height: 40%;
  fill: #fff;
}

.hg-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(249,115,22,.8);
}

/* ── Services ──────────────────────────────────────────────── */
.services {
  padding: 6rem 0;
  background: var(--bg);
}

.services-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-head .section-sub { margin-inline: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(249,115,22,.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon svg { width: 26px; height: 26px; }

.card-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .625rem;
}

.card-body {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── About ─────────────────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content .section-sub { margin-top: 1rem; margin-bottom: 2rem; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--text);
}

.about-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-check svg { width: 11px; height: 11px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .375rem;
}

.stat-label {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: var(--primary);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 120%, rgba(249,115,22,.15) 0%, transparent 60%);
  color: #fff;
  text-align: center;
}

.contact .section-title { color: #fff; margin-bottom: 1rem; }
.contact .section-sub { color: rgba(255,255,255,.65); margin-inline: auto; margin-bottom: 2.5rem; }

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-top: 1.25rem;
  transition: opacity .15s;
}
.contact-email:hover { opacity: .8; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #080E1A;
  color: rgba(255,255,255,.45);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: .9375rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.footer-logo span { color: var(--accent); }

.footer-copy { font-size: .875rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

/* ── Inner Pages (Privacy / Terms) ────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 4rem 0 3.5rem;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: .5rem;
}
.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: .9375rem;
}

.page-content {
  padding: 4rem 0 6rem;
}

.prose {
  max-width: 740px;
}

.prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.prose p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ul li {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .25rem;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong { color: var(--text); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-stats {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 4.5rem 0 4rem; }

  .hero-title { letter-spacing: -.015em; }

  .services { padding: 4rem 0; }
  .about    { padding: 4rem 0; }
  .contact  { padding: 4rem 0; }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
  }

  .btn { padding: .8125rem 1.75rem; }
}
