:root{
  --bg:#ffffff;
  --bg-muted:#F4F7FC;
  --text:#0B1220;
  --muted:#4A5D78;
  --border:#DCE6F3;
  --primary:#0B1F3A;
  --accent:#2963C2;
  --accent-rgb:41,99,194;
  --accent-2:#1FA6A8;
  --accent-3:#7C3AED;
  --shadow: 0 14px 40px rgba(12, 25, 45, .12);
  --shadow-soft: 0 10px 28px rgba(12, 25, 45, .08);
  --ring: 0 0 0 4px rgba(var(--accent-rgb),.18);
  --radius:16px;
  --radius-sm:12px;
  --container: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
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:
    radial-gradient(900px 520px at 20% -10%, rgba(var(--accent-rgb),.12), transparent 55%),
    radial-gradient(780px 520px at 85% 0%, rgba(31,166,168,.10), transparent 55%),
    radial-gradient(980px 620px at 70% 110%, rgba(124,58,237,.10), transparent 60%),
    var(--bg);
  line-height:1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg{max-width:100%;height:auto}
a{color:inherit;text-decoration:none}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline:none;
  box-shadow: var(--ring);
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--primary);
  color:#fff;
  border-radius:10px;
  z-index:1000;
}

.container{
  width: min(100% - 32px, var(--container));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(12,25,45,.06);
  transition: transform .22s ease;
}
.site-header.is-hidden{
  transform: translateY(-110%);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:650;
  letter-spacing:.2px;
}
.brand-logo{
  height:36px;
  width:auto;
  display:block;
  border-radius: 10px;
}
.brand-mark{
  width:12px;
  height:12px;
  border-radius:4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), .20);
}
.brand-name{font-size:15px}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  color: var(--muted);
  font-size:14px;
}
.nav a{padding:8px 10px;border-radius:10px; display:inline-flex; align-items:center; gap:8px}
.nav a:hover{background: rgba(var(--accent-rgb),.08); color:var(--text)}
.nav-cta{
  color: var(--primary);
  border:1px solid var(--border);
  background: #fff;
}
.nav-cta:hover{background: rgba(var(--accent-rgb),.10)}

.hero{
  padding: 56px 0 32px;
  position: relative;
  overflow: clip;
}
.section{
  position: relative;
  overflow: clip;
}
.section-muted{
  position: relative;
}

.decor{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}
.hero-inner,
.container.contact{
  position: relative;
  z-index: 1;
}

.blob{
  position:absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .22;
  transform: translate3d(0,0,0);
  animation: floaty 12s ease-in-out infinite;
}
.blob-a{
  left: -140px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb),.55), rgba(var(--accent-rgb),0));
}
.blob-b{
  right: -160px;
  top: 40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(31,166,168,.45), rgba(31,166,168,0));
  animation-duration: 14s;
}
.blob-c{
  right: -160px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(139,92,246,.40), rgba(139,92,246,0));
  animation-duration: 16s;
}

.dots{
  position:absolute;
  width: 520px;
  height: 260px;
  opacity: .25;
  background-image:
    radial-gradient(rgba(11,31,58,.35) 1px, transparent 1px),
    radial-gradient(rgba(var(--accent-rgb),.35) 1px, transparent 1px);
  background-size: 18px 18px, 22px 22px;
  background-position: 0 0, 8px 10px;
  mask-image: radial-gradient(circle at 40% 50%, #000 35%, transparent 70%);
  animation: drift 18s linear infinite;
}
.dots-a{
  left: 46%;
  top: 18px;
}
.dots-b{
  left: -140px;
  bottom: -40px;
}

@keyframes floaty{
  0%, 100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-18px,0) scale(1.03); }
}
@keyframes drift{
  0%{ transform: translate3d(0,0,0); }
  100%{ transform: translate3d(60px,-18px,0); }
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.eyebrow{
  color: rgba(var(--accent-rgb), .90);
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  margin: 0 0 10px;
}
.hero h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.12;
  margin: 0 0 14px;
  letter-spacing:-.02em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px}
.hero-points{
  display:flex;
  gap:10px;
  padding:0;
  margin:0;
  list-style:none;
  color: var(--muted);
  font-size: 13px;
}
.hero-points li{
  padding:6px 10px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.88);
  border-radius:999px;
}

.hero-visual{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  box-shadow: var(--shadow);
  aspect-ratio: 520 / 420;
}

.hero-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.section{padding: 52px 0}
.section-muted{
  background:
    radial-gradient(900px 360px at 20% 0%, rgba(var(--accent-rgb),.10), transparent 60%),
    radial-gradient(760px 320px at 85% 20%, rgba(31,166,168,.08), transparent 55%),
    linear-gradient(180deg, rgba(var(--accent-rgb),.06), rgba(255,255,255,.72));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

#services.section-muted{
  background:
    radial-gradient(1100px 460px at 15% 0%, rgba(var(--accent-rgb),.55), transparent 60%),
    radial-gradient(980px 420px at 85% 10%, rgba(31,166,168,.28), transparent 55%),
    linear-gradient(180deg, rgba(11,31,58,.98), rgba(41,99,194,.78));
  border-top: 0;
  border-bottom: 0;
}
#services.section-muted .section-head,
#services.section-muted .section-head h2,
#services.section-muted .section-head .muted{
  color: rgba(255,255,255,.92);
}
#services.section-muted .section-head .muted{
  color: rgba(255,255,255,.78);
}
#services.section-muted .card{
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.20);
}
#services.section-muted .card h3{color: var(--text)}
#services.section-muted .card p{color: var(--muted)}

#contact.section-muted{
  background:
    radial-gradient(1100px 460px at 15% 0%, rgba(var(--accent-rgb),.55), transparent 60%),
    radial-gradient(980px 420px at 85% 10%, rgba(31,166,168,.28), transparent 55%),
    linear-gradient(180deg, rgba(11,31,58,.98), rgba(41,99,194,.78));
  border-top: 0;
  border-bottom: 0;
}
#contact.section-muted .section-head,
#contact.section-muted .section-head h2,
#contact.section-muted .section-head .muted{
  color: rgba(255,255,255,.92);
}
#contact.section-muted .section-head .muted{
  color: rgba(255,255,255,.78);
}
#contact.section-muted .form{
  background: rgba(255,255,255,.92);
}
#contact.section-muted .form,
#contact.section-muted .form *{
  color: inherit;
}
#contact.section-muted .form{
  color: var(--text);
}
#contact.section-muted .form .button-primary{
  color:#fff;
}
#contact.section-muted .form .button-primary .icon,
#contact.section-muted .form .button-primary svg{
  color:#fff;
}
#contact.section-muted .form .contact-copy h2{
  color: var(--text);
}
#contact.section-muted .form .contact-copy .muted{
  color: var(--muted);
}
#contact.section-muted .form label{
  color: var(--text);
}
#contact.section-muted .form .contact-note{
  background: rgba(var(--accent-rgb),.08);
  border-color: rgba(var(--accent-rgb),.18);
  color: var(--muted);
}
#contact.section-muted .form .field-hint{
  color: var(--muted);
}
#contact.section-muted .form .field-hint.error{
  color:#8A2E2E;
}
#contact.section-muted .form .form-status{
  color: var(--muted);
}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:16px}
.section h2{font-size: 24px; margin:0 0 8px; letter-spacing:-.01em}
.section-head h2{margin:0}
.muted{color: var(--muted); margin:0}

.section h2{
  position:relative;
  display:inline-block;
}
.section h2::after{
  content:"";
  display:block;
  height:3px;
  width: min(84px, 40%);
  margin-top:10px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  opacity:.95;
}

.two-col{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items:start;
}

.two-col > div:first-child p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.two-col > div:first-child p strong{
  color: var(--text);
}

.facts{
  display:grid;
  gap:14px;
}
.fact{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(var(--accent-rgb), .18);
  border-radius: var(--radius-sm);
  padding: 14px 14px 14px 52px;
  box-shadow: 0 10px 26px rgba(12, 25, 45, .07);
  position: relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fact::after{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  opacity:.85;
}
.fact .icon{
  position:absolute;
  left:14px;
  top:50%;
  transform: translateY(-50%);
  width:28px;
  height:28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb),.35), rgba(var(--accent-rgb),.08));
  border: 1px solid rgba(var(--accent-rgb), .22);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), .12);
  display:grid;
  place-items:center;
}
.fact .icon svg{
  width:16px;
  height:16px;
}
.fact:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), .30);
  box-shadow: 0 14px 34px rgba(12, 25, 45, .10);
}
.fact-value{font-weight:700; color: var(--primary)}
.fact-label{color:var(--muted); font-size: 13px}

.grid{display:grid; gap:12px}
.cards{grid-template-columns: repeat(4, 1fr)}
.card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 16px;
  box-shadow: 0 8px 24px rgba(12, 25, 45, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  opacity:.80;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb),.35);
  box-shadow: 0 14px 34px rgba(12, 25, 45, .10);
}
.card h3{margin:0 0 8px; font-size: 15px}
.card p{margin:0; color: var(--muted); font-size: 14px}

.card h3{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.highlights{grid-template-columns: repeat(4, 1fr)}
.highlight{
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--accent-rgb), .18);
  background:
    radial-gradient(420px 220px at 30% 0%, rgba(var(--accent-rgb),.10), transparent 60%),
    radial-gradient(360px 220px at 90% 20%, rgba(31,166,168,.10), transparent 55%),
    rgba(255,255,255,.86);
  box-shadow: 0 8px 20px rgba(12,25,45,.06);
}
.highlight h3{margin:0 0 6px; font-size: 15px}
.highlight p{margin:0; color: var(--muted); font-size: 14px}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.94);
  font-weight: 650;
  font-size: 14px;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(12,25,45,.06);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button svg{flex:0 0 auto}
.button:hover{transform: translateY(-1px)}
.button-primary{
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: rgba(11,31,58,.55);
  color:#fff;
}
.button-primary:hover{filter: brightness(1.06); box-shadow: 0 14px 34px rgba(var(--accent-rgb),.22)}
.button-ghost{
  background: transparent;
  color: var(--primary);
  box-shadow:none;
}
.button-ghost:hover{background: rgba(var(--accent-rgb),.10)}

.contact{
  display:block;
}
.contact-copy{
  margin-bottom: 14px;
}
.contact-copy h2{margin:0 0 6px}
.contact-copy p{margin:0}
.contact-note{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  color: var(--muted);
  font-size: 13px;
}

.form{
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .blob,.dots{animation:none}
  .site-header{transition:none}
  .card{transition:none}
  .button{transition:none}
}

.icon{
  width:16px;
  height:16px;
  display:inline-block;
  color: rgba(var(--accent-rgb), .95);
}
.icon svg{width:100%; height:100%; display:block}
.field{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
label{font-weight:600; font-size: 13px}
input,textarea{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: rgba(255,255,255,.95);
}
input:focus,textarea:focus{outline: 2px solid rgba(var(--accent-rgb),.22); border-color: rgba(var(--accent-rgb),.55)}
.field-hint{margin:0; min-height: 18px; font-size: 12px; color: var(--muted)}
.field-hint.error{color:#8A2E2E}

.form-status{margin: 10px 0 0; color: var(--muted); font-size: 13px; min-height: 18px}

.footer{padding: 26px 0}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.footer-links{display:flex; gap:14px; color: var(--muted); font-size: 14px}
.footer-links a{padding:8px 10px; border-radius:10px}
.footer-links a:hover{background: rgba(var(--accent-rgb),.08); color:var(--text)}

@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .highlights{grid-template-columns: repeat(2, 1fr)}
  .two-col{grid-template-columns: 1fr}
  .facts{grid-template-columns: repeat(3, 1fr)}
}

@media (max-width: 720px){
  .nav{display:none}
  .header-inner{justify-content:center}
  .brand{margin-inline:auto}
  .hero-inner{grid-template-columns: 1fr;}
  .two-col{grid-template-columns: 1fr}
  .facts{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .highlights{grid-template-columns: 1fr}
  .section-head{flex-direction:column; align-items:center; text-align:center}

  .hero-copy{ text-align:center; }
  .hero-actions{ justify-content:center; }
  .hero-points{ justify-content:center; }

  .two-col > div:first-child{ text-align:center; }
  .facts{ justify-items:stretch; }

  .footer-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .footer-inner > div:first-child{
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .footer-brand{
    justify-content:center;
    margin-inline:auto;
  }
  .footer-links{
    justify-content:center;
    flex-wrap:wrap;
  }

  .form button.button{
    display:flex;
    margin-inline:auto;
    width: min(100%, 340px);
  }
}

.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11,31,58,.97);
  border-top: 1px solid rgba(41,99,194,.35);
  box-shadow: 0 -8px 32px rgba(12,25,45,.22);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  animation: slideUp .28s ease;
}
.cookie-banner[hidden]{display:none}
@keyframes slideUp{
  from{transform:translateY(100%);opacity:0}
  to{transform:translateY(0);opacity:1}
}
.cookie-inner{
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text{
  flex: 1 1 300px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.55;
}
.cookie-text strong{
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #fff;
}
.cookie-text p{
  margin: 0;
  color: rgba(255,255,255,.72);
}
.cookie-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn{
  font-size: 13px;
  padding: 8px 18px;
}
.cookie-banner .button-ghost{
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.22);
}
.cookie-banner .button-ghost:hover{
  background: rgba(255,255,255,.10);
  color: #fff;
}
@media(max-width:600px){
  .cookie-inner{flex-direction:column; align-items:flex-start}
  .cookie-actions{width:100%; justify-content:stretch}
  .cookie-btn{flex:1; justify-content:center}
}
