:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --text: #152238;
  --muted: #61708a;
  --primary: #0b5ed7;
  --primary-dark: #084298;
  --accent: #25a7f0;
  --border: #dbe4ef;
  --shadow: 0 18px 45px rgba(28, 55, 90, 0.12);
  --radius: 18px;
  --header: rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] {
  --bg: #0b1220;
  --surface: #121d2e;
  --surface-soft: #18263b;
  --text: #eef5ff;
  --muted: #a8b7cc;
  --primary: #58a6ff;
  --primary-dark: #93c5fd;
  --accent: #38bdf8;
  --border: #24344d;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --header: rgba(11, 18, 32, 0.92);
}

/* Header logo */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 210px;
  object-fit: contain;
}

/* Footer logo */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 220px;
  margin-bottom: 18px;
  object-fit: contain;
}

/* Keep navigation properly aligned */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tablet and mobile */
@media (max-width: 900px) {
  .brand-logo {
    height: 42px;
    max-width: 180px;
  }

  .desktop-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--surface, #ffffff);
    border: 1px solid var(--border, #dfe4ea);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  }

  .nav-links.open,
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 68px;
    gap: 12px;
  }

  .brand-logo {
    height: 36px;
    max-width: 155px;
  }

  .footer-logo {
    height: 48px;
    max-width: 190px;
  }
}




* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--surface-soft); }
.eyebrow { color: var(--primary); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { line-height: 1.18; margin-top: 0; }
h1 { font-size: clamp(2.6rem, 7vw, 5.3rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.035em; }
h3 { font-size: 1.2rem; }
p { color: var(--muted); }
.lead { font-size: 1.12rem; max-width: 720px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--header); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; display: grid; place-items: center; font-weight: 900;
  box-shadow: 0 8px 22px rgba(11, 94, 215, .25);
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); font-weight: 700; font-size: .95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn, .menu-btn {
  width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); color: var(--text);
}
.menu-btn { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 800; transition: .2s ease;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-outline { border-color: var(--border); background: var(--surface); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.hero { padding: 92px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 54px; }
.hero h1 span { color: var(--primary); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: var(--muted); font-weight: 700; font-size: .92rem; }
.hero-visual {
  min-height: 500px; border-radius: 30px; position: relative; overflow: hidden;
  background: radial-gradient(circle at 25% 20%, rgba(56,189,248,.5), transparent 30%),
              linear-gradient(145deg, #0b5ed7 0%, #082f6c 58%, #061a3a 100%);
  box-shadow: var(--shadow);
}
.hero-visual::before, .hero-visual::after {
  content: ""; position: absolute; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
}
.hero-visual::before { width: 390px; height: 390px; right: -70px; top: -40px; }
.hero-visual::after { width: 250px; height: 250px; left: -60px; bottom: -80px; }
.dashboard-card {
  position: absolute; inset: 70px 46px auto; padding: 24px; border-radius: 20px;
  background: rgba(255,255,255,.94); color: #152238;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 20px; }
.metric { background: #edf5ff; border-radius: 14px; padding: 18px; }
.metric strong { display: block; font-size: 1.7rem; color: #0b5ed7; }
.floating-card {
  position: absolute; right: 24px; bottom: 28px; width: 220px; padding: 18px;
  border-radius: 16px; background: rgba(15, 23, 42, .84); color: white; backdrop-filter: blur(12px);
}
.floating-card p { color: #d8e7ff; margin-bottom: 0; }

.deployment-section {
  color: #eef7ff;
  background:
    radial-gradient(circle at 80% 20%, rgba(37,167,240,.2), transparent 30%),
    linear-gradient(145deg, #07162d, #092752);
}
.deployment-section h2, .deployment-section h3 { color: #fff; }
.deployment-section p, .deployment-section .check-list li { color: #bed1e8; }
.deployment-section .eyebrow { color: #32c7e8; }
.deployment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.deployment-card {
  display: flex; gap: 20px; padding: 28px; border: 1px solid rgba(92,190,255,.28);
  border-radius: 20px; background: rgba(5,20,44,.58); box-shadow: inset 0 0 30px rgba(28,130,220,.08);
}
.deployment-number {
  display: grid; place-items: center; flex: 0 0 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #0b5ed7, #26bfd7); color: white; font-weight: 900;
}
.assurance-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 24px;
  overflow: hidden; border: 1px solid rgba(92,190,255,.22); border-radius: 16px;
}
.assurance-strip span { padding: 18px; text-align: center; color: #bed1e8; background: rgba(5,20,44,.5); }
.assurance-strip strong { display: block; color: #fff; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; padding: 0; list-style: none; }
.feature-list li { color: var(--muted); }
.feature-list li::before { content: "✓"; margin-right: 9px; color: var(--accent); font-weight: 900; }
.contact-details { display: grid; gap: 4px; margin: 24px 0; }
.contact-details p { margin: 0; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.contact-details a { color: var(--primary); font-weight: 750; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 10px 30px rgba(31, 51, 73, .06); transition: .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: var(--surface-soft); color: var(--primary); font-size: 1.4rem; margin-bottom: 18px;
}
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 36px; }
.section-heading p { max-width: 620px; }
.check-list { display: grid; gap: 13px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--primary); font-weight: 900; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.stat { padding: 24px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); }
.stat strong { display: block; font-size: 2rem; color: var(--primary); }
.quote { font-size: 1.05rem; font-style: italic; }
.cta {
  padding: 42px; border-radius: 26px; background: linear-gradient(135deg, #0b5ed7, #073b82);
  color: white; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta p { color: #dbeafe; max-width: 640px; }

.page-hero { padding: 84px 0 58px; background: linear-gradient(180deg, var(--surface-soft), transparent); }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.breadcrumb { color: var(--muted); font-weight: 700; font-size: .9rem; margin-bottom: 16px; }
.policy-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.policy-nav { position: sticky; top: 98px; padding: 20px; border: 1px solid var(--border); background: var(--surface); border-radius: 16px; }
.policy-nav a { display: block; padding: 9px 0; color: var(--muted); font-size: .92rem; }
.policy-nav a:hover { color: var(--primary); }
.policy-content { background: var(--surface); border: 1px solid var(--border); padding: 42px; border-radius: 20px; }
.policy-content section { scroll-margin-top: 110px; margin-bottom: 38px; }
.policy-content h2 { font-size: 1.75rem; }
.policy-content h3 { margin-top: 24px; }
.policy-content li { color: var(--muted); margin-bottom: 9px; }
.notice { padding: 18px; border-left: 4px solid var(--primary); background: var(--surface-soft); border-radius: 10px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .92rem; }
input, textarea, select {
  width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 13px 14px;
  background: var(--surface); color: var(--text); outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,94,215,.12); }
textarea { min-height: 150px; resize: vertical; }
.form-status { margin-top: 12px; font-weight: 700; }

.footer { background: #07101f; color: white; padding: 68px 0 24px; }
.footer p, .footer a { color: #aebdd3; }
.footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.footer-links { display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid #22314a; margin-top: 42px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; }

.cookie-banner {
  position: fixed; z-index: 2000; left: 20px; right: 20px; bottom: 20px;
  max-width: 980px; margin-inline: auto; padding: 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow); display: none; align-items: center; justify-content: space-between; gap: 24px;
}
.cookie-banner.show { display: flex; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-grid, .split, .policy-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .policy-nav { position: static; }
  .deployment-grid, .assurance-strip { grid-template-columns: repeat(2, 1fr); }
  .nav-links { position: fixed; inset: 76px 16px auto; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; display: none; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-actions .btn { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 66px 0; }
  .hero { padding-top: 62px; }
  .grid-3, .grid-4, .stats, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .section-heading, .cta, .footer-bottom, .cookie-banner { align-items: flex-start; flex-direction: column; }
  .policy-content { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .deployment-grid, .assurance-strip, .feature-list { grid-template-columns: 1fr; }
  .deployment-card { padding: 22px; }
  .cookie-actions { width: 100%; flex-wrap: wrap; }
  .cookie-actions .btn { flex: 1; }
  .dashboard-card { inset: 40px 20px auto; }
  .floating-card { left: 20px; right: 20px; width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
