:root {
  --blue: #0066ff;
  --green: #00d26a;
  --red: #c41e3a;
  --ink: #0f172a;
  --muted: #64748b;
  --paper: #f5f8fc;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  --radius: 1rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% -10%, rgba(0,102,255,.12), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(0,210,106,.1), transparent 50%),
    var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.boot-msg { text-align: center; padding: 4rem; color: var(--blue); font-weight: 700; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 800;
  color: var(--blue); margin: 0 0 0.7rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15; margin: 0 0 1rem; color: var(--ink);
}
.section-title .text-accent, .text-accent { color: var(--blue); }
.section-text { color: var(--muted); font-size: 1.05rem; max-width: 58ch; }
.section-head { margin-bottom: 2.2rem; }

.brand-logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-logo__img { width: 46px; height: 46px; object-fit: contain; border-radius: 10px; background: #fff; }
.brand-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-logo__line1 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--blue); }
.brand-logo__line2 { font-size: 0.78rem; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 999px; padding: 0.9rem 1.35rem; font-weight: 800; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,102,255,.22); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: #0052cc; }
.btn--outline { border-color: rgba(0,102,255,.35); color: var(--blue); background: #fff; }
.btn--outline:hover { background: rgba(0,102,255,.06); }
.btn--light { background: #041018; color: #fff; border-color: #041018; }
.btn--light:hover { background: #fff; color: #041018; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(245,248,252,.88);
  border-bottom: 1px solid var(--line); transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow); background: rgba(255,255,255,.96); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1rem; }
.nav__links { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; align-items: center; flex-wrap: wrap; }
.nav__links a { color: var(--muted); font-weight: 700; font-size: 0.92rem; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__cta { background: var(--blue) !important; color: #fff !important; padding: 0.5rem 1rem !important; border-radius: 999px; }
.nav__toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.nav__toggle span { display: block; height: 2px; background: var(--ink); margin: 7px 8px; border-radius: 2px; }

.hero {
  position: relative; padding: 7.2rem 0 3.5rem; overflow: hidden;
}
.hero__glow {
  position: absolute; inset: -10% 40% auto -15%; height: 60%;
  background: radial-gradient(circle, rgba(0,102,255,.18), transparent 65%); pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.12; margin: 0 0 1rem;
}
.hero__title .text-accent { display: block; color: var(--green); margin-top: .2rem; }
.hero__lead { color: var(--muted); font-size: 1.08rem; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.6rem; }
.hero__media {
  background: #fff; border-radius: 1.4rem; padding: 1.5rem; box-shadow: var(--shadow);
  border: 1px solid var(--line); text-align: center;
}
.hero__logo { width: min(100%, 320px); margin: 0 auto; }

.stats { padding: 0; margin-top: -1rem; position: relative; z-index: 2; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.35rem 1.1rem; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .25s ease;
}
.stat-card:hover { transform: translateY(-6px); }
.stat-card__value { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--blue); line-height: 1; }
.stat-card__suffix { font-weight: 800; color: var(--blue); margin-left: .1rem; }
.stat-card__label { margin: .45rem 0 0; color: var(--muted); font-size: .9rem; font-weight: 700; }

.features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(0,102,255,.35); box-shadow: var(--shadow); }
.feature-card__icon { font-size: 1.5rem; }
.feature-card h3 { margin: .45rem 0 .3rem; font-size: 1.02rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.why { background: linear-gradient(180deg, #fff, #eef5ff); }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 1.8rem; }
.use-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.use-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.use-card__icon { font-size: 1.6rem; margin-bottom: .35rem; }
.use-card h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.use-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.sectors__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .85rem; margin-top: 1.4rem; }
.sector-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem .7rem; text-align: center; transition: transform .25s ease, border-color .25s;
}
.sector-card:hover { transform: translateY(-4px); border-color: var(--green); }
.sector-card__icon { font-size: 1.45rem; }
.sector-card h4 { margin: .4rem 0 0; font-size: .86rem; }

.experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.experience__bars { display: grid; gap: 1rem; }
.progress-item__head { display: flex; justify-content: space-between; margin-bottom: .4rem; font-weight: 800; font-size: .92rem; }
.progress-item__track { height: 11px; background: #e2e8f0; border-radius: 999px; overflow: hidden; }
.progress-item__bar {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 1.4s cubic-bezier(.22,1,.36,1);
}

.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: center; }
.about__media {
  position: relative; border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow); padding: 1.5rem;
}
.about__media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.about__badge {
  position: absolute; top: 1rem; left: 1rem; background: var(--green); color: #042f1c;
  font-weight: 800; padding: .45rem .85rem; border-radius: 999px;
}

.gallery { background: #0f172a; color: #fff; }
.gallery .eyebrow { color: var(--green); }
.gallery .section-title { color: #fff; }
.gallery .text-accent { color: #7dd3fc; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.6rem; }
.gallery-card { border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,.08); }
.gallery-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,.92));
  color: #fff; font-size: .88rem; font-weight: 700;
}

.cta-band {
  background: linear-gradient(135deg, var(--blue), #0047b3 55%, #00a85a);
  color: #fff; padding: 3.2rem 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 .4rem; font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { margin: 0; max-width: 48ch; opacity: .95; }
.cta-band .btn--light { background: #fff; color: #0f172a; border-color: #fff; font-weight: 800; }
.cta-band .btn--light:hover { background: #0f172a; color: #fff; border-color: #0f172a; }

.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: start; }
.contact__info { list-style: none; padding: 0; margin: 1.3rem 0; }
.contact__info li { margin: .5rem 0; color: var(--muted); }
.contact__info a { color: var(--blue); font-weight: 800; }
.contact__social { display: flex; flex-wrap: wrap; gap: .55rem; }
.social-pill {
  display: inline-flex; padding: .5rem .95rem; border-radius: 999px; background: var(--ink);
  color: #fff; font-weight: 800; font-size: .86rem; transition: transform .2s ease;
}
.social-pill:hover { transform: translateY(-2px); }
.social-pill--green { background: #25d366; }
.social-pill--pink { background: var(--red); }

.map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-card__pin { padding: .85rem 1rem; font-weight: 700; font-size: .92rem; }

.footer { background: #0b1220; color: rgba(255,255,255,.78); padding: 2.3rem 0; }
.footer__inner { display: grid; gap: 1rem; }
.footer .brand-logo__line1 { color: #fff; }
.footer .brand-logo__line2 { color: rgba(255,255,255,.65); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer__links a:hover { color: #fff; }
.footer__credit { margin: 0; font-size: .88rem; }

.wa-fab {
  position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 36px rgba(37,211,102,.4);
  animation: waOsc 2.4s ease-in-out infinite;
}
.wa-fab:hover { animation: none; transform: scale(1.08); }
@keyframes waOsc {
  0%,100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-7px) rotate(-6deg); }
  75% { transform: translateY(-4px) rotate(5deg); }
}

.reveal { opacity: 0; transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0s); }
.reveal-up { transform: translateY(34px); }
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal-scale { transform: scale(.95); }
.reveal.visible { opacity: 1; transform: none; }
.scroll-parallax { transform: translateY(var(--scroll-shift, 0px)); will-change: transform; }
.title-draw::after {
  content: ""; display: block; width: 0; height: 4px; margin-top: .55rem;
  background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 999px;
  transition: width 1s cubic-bezier(.22,1,.36,1) .2s;
}
.title-draw.visible::after { width: min(120px, 30%); }

@media (max-width: 980px) {
  .hero__grid, .why__grid, .experience__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 74px 1rem auto; background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 1rem; flex-direction: column; align-items: stretch;
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .25s ease;
    border: 1px solid var(--line);
  }
  .nav__links.open { opacity: 1; pointer-events: auto; transform: none; }
  .why__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
