:root{
  --bg:#07110b;
  --bg2:#09160e;
  --text:#f3f6f5;
  --muted:rgba(243,246,245,.72);
  --faint:rgba(243,246,245,.12);
  --line:rgba(243,246,245,.10);
  --accent:#66d9a8;
  --accent2:rgba(102,217,168,.16);
  --max:1120px;
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
  line-height:1.45;
  letter-spacing: .1px;
  position: relative;
  overflow-x: hidden;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(1100px 720px at 18% 18%, rgba(255,255,255,.12), transparent 55%),
    radial-gradient(980px 680px at 82% 14%, rgba(93,198,151,.22), transparent 56%),
    radial-gradient(980px 760px at 58% 88%, rgba(122,167,255,.12), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-size: 120% 120%, 120% 120%, 130% 130%, 100% 100%;
  background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
  filter: saturate(1.05) contrast(1.04);
  animation: heroDrift 22s ease-in-out infinite;
  will-change: background-position;
}

body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.05) 0, rgba(0,0,0,.05) 1px, transparent 1px, transparent 4px);
  opacity: .10;
  mix-blend-mode: overlay;
}

@keyframes heroDrift{
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%; }
  50%  { background-position: 10% 8%, 88% 14%, 55% 92%, 0% 0%; }
  100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%; }
}

@media (prefers-reduced-motion: reduce){
  body::before{ animation: none; }
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--max); margin:0 auto; padding: 0 24px; }

/* Header */
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,17,11,.70);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 220px;
}
.brand-mark{
  width: 56px; height: 56px;
  display:flex; align-items:center; justify-content:center;
  flex: 0 0 auto;
  overflow: visible;
  padding: 0;
}
.brand-mark img{ width: 100%; height: 100%; display:block; object-fit: contain; }
.brand-name{ display:flex; flex-direction:column; gap:2px; }
.brand-name strong{ font-size: 14px; letter-spacing:.2px; }
.brand-name span{ font-size: 12px; color: var(--muted); }

nav{ display:flex; align-items:center; gap:18px; }
nav a{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 8px;
  border-radius: 10px;
}
nav a:hover{ color: var(--text); background: rgba(243,246,245,.03); }

.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(102,217,168,.38);
  background: rgba(102,217,168,.10);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.cta:hover{ background: rgba(102,217,168,.14); }
.cta.secondary{
  border:1px solid var(--line);
  background: rgba(243,246,245,.04);
}
.cta.secondary:hover{ background: rgba(243,246,245,.06); }

/* Typography */
section{ padding: 42px 0; }
.kicker{
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  margin:0 0 10px;
}
h1{
  margin:0;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height:1.05;
  letter-spacing: -0.6px;
  font-weight: 650;
  max-width: 20ch;
}
h2{
  margin:0;
  font-size: 26px;
  letter-spacing: -0.3px;
  font-weight: 650;
}
.lead{
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 78ch;
  font-size: 15px;
}
p{ margin: 0; }
.stack{ display:flex; flex-direction:column; gap: 14px; }

/* Hero */
.hero{
  position: relative;
  padding: 140px 0 72px;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero p{
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 68ch;
}
.hero .qual{
  margin-top: 10px;
  color: rgba(243,246,245,.82);
  font-size: 14px;
  max-width: 68ch;
}
.hero-actions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top: 26px;
}

/* Bullets */
.bullets{
  margin-top: 18px;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
  max-width: 76ch;
}
.bullets li{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(243,246,245,.02);
}
.dot{
  width: 8px; height: 8px; margin-top: 7px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(102,217,168,.09);
  flex: 0 0 auto;
}
.bullets span{ color: var(--text); font-size: 14px; }
.bullets small{ display:block; color: var(--muted); font-size: 12.5px; margin-top: 2px; }

/* Service list */
.service-list{ margin-top: 22px; border-top: 1px solid var(--line); }
.service{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service strong{ font-size: 14px; letter-spacing: .2px; }
.service p{ margin:0; color: var(--muted); font-size: 14px; max-width: 85ch; }

/* Cards */
.cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card{
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243,246,245,.02);
}
.card h3{ margin:0; font-size: 14px; letter-spacing:.2px; }
.card p{ margin-top: 8px; color: var(--muted); font-size: 13.5px; }
.card ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.card li{ margin: 6px 0; }

/* Steps */
.steps{ margin-top: 18px; display:grid; gap: 12px; max-width: 86ch; }
.step{
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243,246,245,.02);
}
.step b{ font-size: 14px; }
.step div{ color: var(--muted); font-size: 13.5px; margin-top: 6px; }

/* Tags */
.tag-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.tag{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(243,246,245,.02);
  color: var(--muted);
  font-size: 12.5px;
}

/* Panels / Contact */
.panel{
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243,246,245,.02);
  padding: 18px 16px;
}
.panel h3{ margin:0; font-size: 14px; letter-spacing:.2px; }
.panel p{ margin-top: 10px; color: var(--muted); font-size: 13.5px; }
.panel p:first-of-type{ margin-top: 0; }

.panel-contact{ background: rgba(243,246,245,.018); }
.contact-label{
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(243,246,245,.65);
}
.contact-email{
  margin: 10px 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.contact-email a{
  text-decoration: none;
  border-bottom: 1px solid rgba(243,246,245,.28);
  padding-bottom: 2px;
}
.contact-email a:hover{ border-bottom-color: rgba(243,246,245,.55); }
.contact-meta{ margin: 0; color: var(--muted); font-size: 13.5px; }
.fine{ margin-top: 12px; color: rgba(243,246,245,.58); font-size: 12px; max-width: 90ch; }

/* Footer */
footer{
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.foot{
  display:flex; justify-content:space-between; gap: 14px; flex-wrap:wrap;
  color: rgba(243,246,245,.58);
  font-size: 12px;
}
.foot a{ text-decoration: underline; text-underline-offset: 3px; }

.breadcrumb{
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(243,246,245,.68);
}
.breadcrumb a{ text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px){
  nav{ display:none; }
  .service{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .hero{ padding: 110px 0 56px; min-height: 62vh; }
  .brand{ min-width: unset; }
}


/* Certification logos (subtle) */
.cert-wrap{
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243,246,245,.02);
  padding: 14px 14px;
}
.cert-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 12px;
  align-items:center;
}
.cert{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid rgba(243,246,245,.08);
  border-radius: 999px;
  background: rgba(243,246,245,.015);
  color: rgba(243,246,245,.78);
  font-size: 12.5px;
  line-height: 1;
}
.cert img{
  height: 16px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  border-radius: 4px;
  opacity: .82;
  filter: brightness(1.15) contrast(1.05);
}
.cert:hover img{ opacity: .95; filter: none; }
.cert b{
  font-weight: 650;
  color: rgba(243,246,245,.88);
}
@media (max-width: 980px){
  .cert{ width: fit-content; }
}
