:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #0f172a;
  --accent: #0284c7;
  --accent-2: #38bdf8;
  --card: #ffffff;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 50px rgba(15, 23, 42, 0.08);
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 900;
}
.brand-text { font-size: 1.05rem; }
.site-header:not(.scrolled) .brand-text,
.site-header:not(.scrolled) .primary-nav a { color: #fff; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: .95rem;
}
.primary-nav a { color: var(--ink); opacity: .88; }
.primary-nav a:hover { color: var(--accent); opacity: 1; }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  opacity: 1 !important;
}

.nav-toggle { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
  background: #0f172a;
  overflow: hidden;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: .7;
}
.hero-bg::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(56,189,248,.35), transparent 60%);
  right: -120px;
  top: 120px;
}
.hero-bg::after {
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(2,132,199,.45), transparent 62%);
  left: -180px;
  bottom: -240px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--accent);
  font-size: .78rem;
  margin: 0 0 14px;
}
.hero .eyebrow { color: #7dd3fc; }
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: .92;
  letter-spacing: -0.08em;
  margin: 0 0 28px;
}
.hero-lead {
  color: #dbeafe;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 680px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent-2); color: #082f49; box-shadow: 0 18px 45px rgba(56,189,248,.25); }
.btn-secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.btn-light { background: #fff; color: var(--brand); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-trust span {
  color: #dbeafe;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .86rem;
}
.hero-card {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 36px;
  color: #fff;
  backdrop-filter: blur(20px);
}
.hero-card h2 { font-size: 2rem; line-height: 1.08; letter-spacing: -0.04em; margin: 18px 0 16px; }
.hero-card p, .hero-card li { color: #dbeafe; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; }
.status-dot { width: 16px; height: 16px; border-radius: 99px; background: #22c55e; box-shadow: 0 0 0 8px rgba(34,197,94,.12); }

.section { padding: 98px 0; }
.section-alt { background: var(--bg-soft); }
.intro-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
}
.section h2, .section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0;
}
.intro-text p, .section-head p, .ai-copy p, .contact-section p, .cta-box p {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-head { max-width: 780px; margin-bottom: 42px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card, .process-step, .contact-form, .contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(15,23,42,.05);
}
.service-card { padding: 26px; min-height: 245px; }
.icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #075985;
  background: #e0f2fe;
  margin-bottom: 26px;
}
.service-card h3, .process-step h3, .timeline h3 { margin: 0 0 10px; letter-spacing: -0.03em; }
.service-card p, .process-step p, .timeline p { color: var(--muted); margin: 0; }

.ai-section { background: #0f172a; color: #fff; }
.ai-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 50px;
  align-items: center;
}
.ai-copy p, .ai-copy li { color: #dbeafe; }
.check-list { padding: 0; list-style: none; display: grid; gap: 12px; margin: 26px 0 0; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
}
.integration-panel {
  min-height: 430px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  background: radial-gradient(circle at center, rgba(56,189,248,.18), rgba(255,255,255,.04));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.integration-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 999px;
}
.node {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(14px);
}
.node-main { position: relative; z-index: 2; background: var(--accent-2); color: #082f49; font-size: 1.4rem; padding: 22px 26px; border-radius: 24px; }
.node:nth-child(2) { top: 70px; left: 80px; }
.node:nth-child(3) { top: 80px; right: 70px; }
.node:nth-child(4) { bottom: 90px; left: 70px; }
.node:nth-child(5) { bottom: 70px; right: 88px; }
.node:nth-child(6) { top: 205px; right: 36px; }

.timeline { display: grid; gap: 18px; }
.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.timeline-date { font-weight: 900; color: var(--accent); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding: 24px; }
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #e0f2fe;
  color: #075985;
  font-weight: 900;
  margin-bottom: 22px;
}

.cta-section { padding: 0 0 98px; }
.cta-box {
  background: linear-gradient(135deg, #0f172a, #075985);
  color: #fff;
  border-radius: 34px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-box h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0; letter-spacing: -0.06em; line-height: 1; }
.cta-box p { color: #dbeafe; margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: start; }
.contact-card { padding: 18px; margin-top: 14px; display: grid; gap: 2px; }
.contact-card a { color: var(--accent); font-weight: 800; }
.contact-form { padding: 28px; display: grid; gap: 12px; }
.contact-form label { font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 3px solid rgba(56,189,248,.25);
  border-color: var(--accent);
}
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }

.site-footer { background: #020617; color: #e2e8f0; padding: 54px 0 26px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 30px; }
.footer-brand { margin-bottom: 16px; }
.site-footer p { color: #94a3b8; max-width: 460px; }
.footer-links { display: grid; gap: 10px; min-width: 190px; }
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: #94a3b8; font-size: .92rem; }

@media (max-width: 980px) {
  .hero-grid, .intro-grid, .ai-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    border-radius: 14px;
  }
  .site-header.scrolled .nav-toggle { border-color: var(--line); background: #fff; }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; display: block; }
  .site-header:not(.scrolled) .nav-toggle { color: #fff; }
  .primary-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .site-header:not(.scrolled) .primary-nav a { color: var(--ink); }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-card { padding: 26px; }
  .cards-grid, .process-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid, .footer-bottom { flex-direction: column; }
  .section { padding: 72px 0; }
  .cta-section { padding-bottom: 72px; }
}



.response-card {
  max-width: 720px;
  margin: 5rem auto;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.response-card h1 {
  margin-top: 0;
}

/* Honeypot anti-spam field: hidden from real visitors, visible to bots only */



.hp-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
