@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

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

:root {
  --ink:      #07101f;
  --ink2:     #3a4a5c;
  --faint:    #8896a7;
  --blue:     #0057ff;
  --blue-dk:  #003ecc;
  --blue-lt:  #e6eeff;
  --teal:     #00c6b6;
  --white:    #ffffff;
  --off:      #f5f7fa;
  --border:   rgba(7,16,31,0.09);
  --max:      1100px;
  --r-sm:     8px;
  --r-md:     14px;
  --r-lg:     22px;
  --head:     'Bebas Neue', sans-serif;
  --body:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
section { padding: 5rem 0; }
section + section { border-top: 1px solid var(--border); }

/* ── Type ── */
.eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.9rem;
}
h1 { font-family: var(--head); font-size: clamp(3.2rem,9vw,5rem); line-height: 0.95; letter-spacing: 0.01em; color: var(--ink); }
h2 { font-family: var(--head); font-size: clamp(2.2rem,6vw,3.2rem); line-height: 1; letter-spacing: 0.01em; color: var(--ink); }
h3 { font-family: var(--body); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.45rem; }
p.lead { font-size: 1.05rem; line-height: 1.75; color: var(--ink2); margin-top: 1rem; }
p.body { font-size: 0.93rem; line-height: 1.75; color: var(--ink2); }

/* ── Buttons ── */
.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 100px; font-family: var(--body); font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all 0.18s; border: none; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,87,255,0.3); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); margin-left: 0.6rem; }
.btn-ghost:hover { background: var(--off); }
.btn-teal { background: var(--teal); color: var(--ink); }
.btn-teal:hover { filter: brightness(0.92); transform: translateY(-2px); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); padding: 1rem 0;
}
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo svg { width: 40px; height: 40px; }
.nav__logo-text { font-family: var(--head); font-size: 1.35rem; letter-spacing: 0.04em; color: var(--ink); line-height: 1; }
.nav__logo-text span { color: var(--blue); }
.nav__links { display: flex; align-items: center; gap: 1.4rem; list-style: none; }
.nav__links a { font-size: 0.85rem; font-weight: 500; color: var(--ink2); transition: color 0.15s; }
.nav__links a:hover, .nav__links a.active { color: var(--blue); }
.nav__cta { background: var(--blue); color: var(--white) !important; padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.82rem !important; transition: background 0.18s !important; }
.nav__cta:hover { background: var(--blue-dk) !important; color: var(--white) !important; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); }

/* ── Hero ── */
.hero {
  padding: 5.5rem 0 5rem;
  background: var(--ink);
  position: relative; overflow: hidden;
  border-top: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 110% 50%, rgba(0,87,255,0.35) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at -10% 80%, rgba(0,198,182,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(0,198,182,0.25); }
.hero h1 { color: var(--white); }
.hero h1 span { color: var(--teal); }
.hero .lead { color: rgba(255,255,255,0.6); max-width: 500px; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero__meta { margin-top: 3rem; display: flex; gap: 2rem; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-num { font-family: var(--head); font-size: 2.2rem; color: var(--white); line-height: 1; }
.hero__meta-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }

/* ── Dark sections ── */
.dark-section { background: var(--ink); }
.dark-section .eyebrow { color: var(--teal); }
.dark-section h2 { color: var(--white); }
.dark-section p.lead, .dark-section p.body { color: rgba(255,255,255,0.55); }
.dark-section + section { border-top: none; }

/* ── Service cards ── */
/* ── Service grid ── */
.svc-grid { display: grid; gap: 1px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 2rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--white); padding: 2rem; transition: background 0.2s; }
.svc-card:hover { background: var(--off); }
.svc-icon { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.svc-icon svg { width: 22px; height: 22px; }
.svc-icon.teal { background: var(--teal); }
.svc-icon.dark { background: var(--ink); }

/* ── Stat bar ── */
.stat-bar { background: var(--blue); padding: 0; border-top: none; }
.stat-bar + section { border-top: none; }
.stat-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
@media (max-width: 600px) { .stat-bar__grid { grid-template-columns: repeat(2,1fr); } }
.sbar { padding: 2.2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.sbar:last-child { border-right: none; }
.sbar__num { font-family: var(--head); font-size: 2.4rem; color: var(--white); line-height: 1; }
.sbar__label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

/* ── Steps ── */
.steps { margin-top: 2rem; display: grid; gap: 0; }
.step { display: flex; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step__n { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--blue-lt); color: var(--blue); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; margin-top: 0.1rem; }

/* ── Testimonial / quote ── */
.quote { border-left: 3px solid var(--teal); padding-left: 1.5rem; margin-top: 2rem; }
.quote__text { font-size: 1.15rem; line-height: 1.75; color: rgba(255,255,255,0.82); font-style: italic; }
.quote__author { margin-top: 0.8rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── Assessment page ── */
.assess-card { background: var(--off); border-radius: var(--r-md); padding: 2rem; border: 1px solid var(--border); margin-bottom: 1rem; }
.assess-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ── Contact form ── */
.form { display: grid; gap: 1rem; margin-top: 2rem; }
.fg { display: grid; gap: 0.4rem; }
.fg label { font-size: 0.8rem; font-weight: 500; color: var(--ink2); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--body); font-size: 0.93rem; color: var(--ink);
  background: var(--white); outline: none; transition: border-color 0.15s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue); }
.fg textarea { resize: vertical; min-height: 130px; }

/* ── Contact info cards ── */
.contact-info { display: grid; gap: 0.9rem; margin-top: 2rem; }
.cinfo { display: flex; align-items: center; gap: 1rem; background: var(--off); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.25rem; }
.cinfo__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--blue); display: flex; align-items: center; justify-content: center; }
.cinfo__icon svg { width: 20px; height: 20px; }
.cinfo__label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 0.2rem; }
.cinfo__val { font-size: 0.92rem; font-weight: 500; color: var(--blue); }

/* ── Page header ── */
.page-hero { background: var(--ink); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0,87,255,0.3) 0%, transparent 60%); pointer-events: none; }
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--teal); }
.page-hero .lead { color: rgba(255,255,255,0.55); }

/* ── CTA ── */
.cta-sec { text-align: center; background: var(--blue-lt); }
.cta-sec .eyebrow { color: var(--blue); }
.cta-sec .lead { margin: 0.8rem auto 2rem; text-align: center; max-width: 440px; }

/* ── Footer ── */
footer { background: var(--ink); padding: 3rem 0 1.8rem; }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
.footer__top { display: flex; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__brand p { font-size: 0.82rem; color: rgba(255,255,255,0.32); max-width: 200px; line-height: 1.6; margin-top: 0.5rem; }
.footer__logo-text { font-family: var(--head); font-size: 1.2rem; letter-spacing: 0.04em; color: var(--white); }
.footer__logo-text span { color: var(--teal); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { font-size: 0.83rem; color: rgba(255,255,255,0.38); transition: color 0.15s; }
.footer__links a:hover { color: var(--white); }
.footer__col-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.2); margin-bottom: 0.8rem; }
.footer__bottom { margin-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fu { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.22s; } .d3 { animation-delay: 0.34s; } .d4 { animation-delay: 0.46s; }

/* ── Mobile ── */
@media (max-width: 620px) {
  .nav__links { display: none; flex-direction: column; gap: 1rem; }
  .nav__links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav__toggle { display: block; }
  .stat-bar__grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; }
  .hero__meta { gap: 1.5rem; }
}
