﻿:root {
  --bg: #f5f7fb;
  --bg-alt: #eef2fb;
  --panel: #ffffff;
  --text: #1f2933;
  --muted: #586273;
  --heading: #13203b;
  --brand: #3a7afe;
  --brand-2: #8fafff;
  --accent: #26c3a8;
  --border: #d8e2f2;
  --shadow: 0 24px 60px rgba(19,32,59,0.12);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, var(--bg) 0%, #f9fbff 40%, #eef5ff 100%);
  line-height: 1.7;
}

img { max-width: 100%; display: block; border-radius: 14px; }
a { color: inherit; text-decoration: none; transition: color .2s ease, transform .2s ease; }
a:hover { color: var(--brand); }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 50;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(1120px, 92%); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 3.5rem 0; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.2; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 1.9rem + 1.6vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 1.5rem + 1vw, 2.5rem); margin-top: 3rem; }
h3 { font-size: clamp(1.1rem, 1rem + .4vw, 1.4rem); margin-top: 2.5rem; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 70ch; margin-bottom: 2rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 10px 30px rgba(19,32,59,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1.5rem; }
.brand { font-weight: 700; font-size: 1.2rem; letter-spacing: .04em; text-transform: uppercase; color: var(--heading); }

.site-nav { display: flex; align-items: center; }
.site-nav ul { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.site-nav a {
  padding: .55rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
}
.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--heading); background: rgba(63,127,255,0.12); }
.nav-toggle { display: none; }

.hero { padding: 6.5rem 0 4rem; }
.hero__inner { align-items: center; }
.hero__copy { display: grid; gap: 1.5rem; }
.hero__eyebrow {
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--brand);
}
.hero__points { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; color: var(--muted); }
.hero__points li { display: flex; gap: .75rem; align-items: flex-start; }
.hero__points li::before {
  content: "";
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  margin-top: .45rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 6px 16px rgba(58,122,254,0.25);
}
.hero__trust { display: grid; gap: .75rem; }
.hero__trust-label { font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.logo-list { display: flex; gap: 1.25rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.logo-list li { padding: .55rem 1rem; border-radius: 999px; background: rgba(58,122,254,0.08); color: var(--heading); font-weight: 600; font-size: .9rem; }
.hero-card {
  background: var(--panel);
  border-radius: 20px;
  padding: 2.2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}
.hero-card h2 { margin: 0; font-size: 1.4rem; }
.hero-card__footer { display: grid; gap: .5rem; padding: 1.25rem; border-radius: 16px; background: rgba(58,122,254,0.08); color: var(--muted); font-size: .95rem; }
.hero-card__footer strong { color: var(--heading); }

.grid { display: grid; gap: 1.75rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.section-intro { display: grid; gap: 1rem; margin-bottom: 3rem; }
.section-intro--center { text-align: center; justify-items: center; }
.section-intro__lead { color: var(--muted); max-width: 60ch; }
.section-cta { margin-top: 2.5rem; text-align: center; }

.metrics { margin-top: 2rem; }
.metric {
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
  display: grid;
  gap: .75rem;
}
.metric span { font-size: 2rem; font-weight: 700; color: var(--brand); }

.results__details { margin-top: 2.5rem; display: grid; gap: 1.5rem; color: var(--muted); }
.results__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.results__bullets li { position: relative; padding-left: 1.6rem; }
.results__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.card, .case {
  position: relative;
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover, .case:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(19,32,59,0.12); }
.card h3, .case h3 { margin: 0 0 .75rem; color: var(--heading); }
.card p, .case p { margin: 0; color: var(--muted); }
.card--service { display: grid; gap: 1rem; }
.card__cta { font-weight: 600; color: var(--brand); }

.industries { align-items: stretch; }
.industry {
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
  display: grid;
  gap: 1rem;
}
.industry h3 { margin: 0; }
.industry p { margin: 0; color: var(--muted); }

.process { align-items: stretch; }
.process__step {
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
  display: grid;
  gap: .75rem;
}
.process__badge {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.process__note {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(58,122,254,0.08);
  color: var(--muted);
  border: 1px solid rgba(58,122,254,0.18);
}

.bullets { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .6rem; }
.bullets li { position: relative; padding-left: 1.5rem; color: var(--muted); }
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.stats { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat {
  background: var(--panel);
  border: 1px solid rgba(216, 226, 242, 0.8);
  border-radius: 18px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
}
.stat span { display: block; font-size: 2rem; font-weight: 700; color: var(--brand); }

.testimonials { align-items: stretch; }
.testimonial {
  background: var(--panel);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
  display: grid;
  gap: 1.5rem;
}
.testimonial blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--heading);
  line-height: 1.6;
}
.testimonial figcaption { font-size: .95rem; color: var(--muted); font-weight: 600; }

.cta-banner { align-items: center; gap: 2.5rem; }
.cta-banner__form { display: grid; gap: 1rem; background: var(--panel); padding: 2rem; border-radius: 20px; border: 1px solid rgba(216, 226, 242, 0.8); box-shadow: 0 18px 45px rgba(19,32,59,0.08); }
.form-note { margin: 0; font-size: .85rem; color: var(--muted); }

.insights { align-items: stretch; }
.insight {
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
  display: grid;
  gap: .75rem;
}
.insight h3 { margin: 0; }
.insight p { margin: 0; color: var(--muted); }
.insights__note { margin-top: 2.5rem; text-align: center; color: var(--muted); }

.faq { display: grid; gap: 1.5rem; }
.faq__item {
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(216, 226, 242, 0.8);
  box-shadow: 0 18px 45px rgba(19,32,59,0.08);
  display: grid;
  gap: .75rem;
}
.faq__question { margin: 0; font-size: 1.1rem; color: var(--heading); }
.faq__answer { margin: 0; color: var(--muted); }

.contact { align-items: start; gap: 3rem; }
.contact__intro { display: grid; gap: 1.5rem; }
.contact__note { margin: 0; color: var(--muted); }
.contact__form { background: var(--panel); padding: 2rem; border-radius: 20px; border: 1px solid rgba(216, 226, 242, 0.8); box-shadow: 0 18px 45px rgba(19,32,59,0.08); }

.form { display: grid; gap: 1.25rem; }
label { display: grid; gap: .35rem; color: var(--muted); font-weight: 500; }
input, textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 2px rgba(19,32,59,0.08);
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  color: var(--text);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(58, 122, 254, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 18px 35px rgba(58,122,254,0.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 40px rgba(58,122,254,0.3); }
.btn--ghost {
  background: rgba(58,122,254,0.08);
  color: var(--brand);
  border: 1px solid rgba(58,122,254,0.15);
}
.btn--ghost:hover { transform: translateY(-2px); background: rgba(58,122,254,0.12); }

.table-wrapper { overflow-x: auto; margin: 1.5rem 0; border-radius: 16px; box-shadow: 0 18px 45px rgba(19,32,59,0.08); }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
}
table caption { text-align: left; font-weight: 600; color: var(--muted); margin-bottom: .5rem; padding: 1.25rem 1.5rem 0; }
th, td { border: 1px solid rgba(216, 226, 242, 0.8); padding: 1rem 1.2rem; text-align: left; }
th { background: rgba(58,122,254,0.08); color: var(--heading); font-weight: 600; }
tr:nth-child(even) td { background: rgba(245, 247, 251, 0.8); }

.site-footer {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(19,32,59,1) 0%, rgba(29,45,80,1) 100%);
  color: rgba(255,255,255,0.72);
  padding: 3rem 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-inner p { margin: 0; }
.footer-nav { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.footer-nav a { color: rgba(255,255,255,0.72); }
.footer-nav a:hover { color: #fff; }

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner__form { order: 2; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { position: fixed; inset: 0 0 auto auto; right: 1.5rem; top: 4.2rem; background: var(--panel); border-radius: 18px; padding: 1rem; border: 1px solid var(--border); display: none; box-shadow: var(--shadow); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { display: block; text-align: left; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; font-weight: 600; background: rgba(58,122,254,0.12); color: var(--brand); border: 1px solid rgba(58,122,254,0.25); border-radius: 999px; padding: .55rem 1rem; }
  .metrics { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .stats, .testimonials { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 5rem; }
  .logo-list { gap: .75rem; }
  .logo-list li { font-size: .8rem; }
  table { min-width: 100%; }
}


