@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #f7f9ff;
  --text: #0f172a;
  --muted: #4b5563;
  --card: #ffffff;
  --border: #dbe3f3;
  --accent: #4f7cff;
  --accent-2: #6aa7ff;
  --shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}

body.dark {
  --bg: #0a1020;
  --text: #e8edff;
  --muted: #9fb3d5;
  --card: #0f192f;
  --border: #1d2a44;
  --accent: #5e8aff;
  --accent-2: #7ba3ff;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #f9fbff 0%, #f6f8fd 40%, var(--bg) 100%);
  color: var(--text);
  font-size: 16px;
}

body.dark {
  background: linear-gradient(180deg, #0c1024 0%, #0a1020 30%, #070c17 100%);
}

a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92vw); margin: 0 auto; }

header, footer {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
} 
footer { border-top: 1px solid var(--border); border-bottom: 0; margin-top: 32px; }

body.dark footer {
  border-top-color: #111b2f;
}

body.dark header {
  background: rgba(10, 16, 32, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-bottom-color: #101a30;
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 20px rgba(79, 124, 255, 0.28);
  object-fit: cover;
} 

.brand { display:flex; align-items:center; gap:12px; font-weight:800; font-size:20px; }

.nav { display: flex; gap: 16px; font-weight: 600; justify-content: center; align-items: center; }
.nav a { color: var(--muted); padding: 10px 12px; border-radius: 10px; transition: background 0.12s ease, color 0.12s ease; }
.nav a:hover { background: rgba(37,83,255,0.06); color: var(--accent); }
.nav a.active { color: var(--accent); font-weight: 700; }

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.btn {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  display: inline-block;
  font-size: 14px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #f7faff;
  box-shadow: 0 10px 24px rgba(79, 124, 255, 0.25);
  min-width: 140px;
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn.primary:hover { box-shadow: 0 14px 30px rgba(79, 124, 255, 0.35); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

.gradient-bg {
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.1), transparent 50%);
}

body.dark .gradient-bg {
  background: linear-gradient(180deg, rgba(39, 71, 140, 0.6), rgba(11, 17, 32, 0.85));
}
.row {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.hero-row { border-bottom: none; }

.hero-copy { max-width: 620px; }
.hero-copy h1 { font-size: clamp(36px, 4.2vw, 52px); margin: 10px 0; letter-spacing: -0.02em; }
.hero-copy .lead { color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.hero-list { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 8px; color: var(--muted); font-size: 15px; }
.hero-list .check {
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  position: relative;
}
.hero-list .check::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--accent);
  border-top: 0;
  border-left: 0;
  transform: rotate(20deg);
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.hero-ctas.center { justify-content: center; }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0e1b33;
}

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

body.dark .hero-visual {
  border-color: #18233c;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.badge-floating {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

body.dark .badge-floating {
  background: rgba(12, 18, 34, 0.9);
  border-color: #18233c;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.badge-floating .lock {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(79, 124, 255, 0.18);
  border: 1px solid rgba(79, 124, 255, 0.35);
}

.badge-floating strong { display: block; color: var(--text); }
.badge-floating .muted { color: var(--muted); font-size: 12px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 124, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(79, 124, 255, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(79, 124, 255, 0.2);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2x3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-2x3 .stack { display: grid; gap: 16px; }

.box {
  background: var(--card);
  border: 1px dashed var(--border);
  padding: 20px;
  min-height: 120px;
  border-radius: 12px;
  color: var(--muted);
}

.hero-box { min-height: 220px; }
.message-box { min-height: 140px; }

.stats-band {
  background: #f4f7fb;
  border-top: 1px solid #ecf1f9;
  border-bottom: 1px solid #ecf1f9;
  padding: 32px 0;
}

body.dark .stats-band {
  background: #0e1428;
  border-top-color: #151e35;
  border-bottom-color: #151e35;
}

.stats-grid { text-align: center; }
.stat-card { padding: 8px 0; }
.stat-value {
  font-weight: 700;
  font-size: 26px;
  color: var(--accent);
}
.stat-label {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.challenge-block {
  border-bottom: none;
  padding: 60px 0 40px;
}

.contact-hero-block.challenge-block {
  border-bottom: none;
}

.challenge-box {
  border: none;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  background: transparent;
}

.challenge-box h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.challenge-box p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-cards .feature {
  background: #f6f8fd;
  border: 1px solid #e5ebf8;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  padding: 22px 24px;
}

.feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: rgba(79, 124, 255, 0.12);
  border: 1px solid rgba(79, 124, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature .icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.capabilities {
  text-align: center;
  gap: 20px;
}

.capabilities h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.capabilities .muted {
  color: var(--muted);
  margin: 0;
}

.cap-grid {
  text-align: left;
  gap: 18px;
}

.cap-grid .feature {
  background: #f6f8fd;
  border: 1px solid #e5ebf8;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  padding: 22px 24px;
}

.cap-grid .feature h3 {
  margin-top: 4px;
  margin-bottom: 8px;
}

.cap-grid .feature p {
  line-height: 1.5;
}

.faq-card {
  background: #f6f8fd;
  border: 1px solid #e5ebf8;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  padding: 18px 20px;
}

.center-text {
  text-align: center;
}

/* Contact form status messages */
.form-status {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(79, 124, 255, 0.06);
  border: 1px solid rgba(79,124,255,0.12);
  color: var(--text);
  font-weight: 600;
}
.form-status.error {
  background: rgba(255, 238, 238, 1);
  border-color: rgba(255,80,80,0.12);
  color: #7a1e1e;
}

/* Mobile header layout */
@media (max-width: 640px) {
  .header-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .nav { justify-content: center; gap: 10px; flex-wrap: wrap; }
  .nav a { padding: 12px 14px; }
  .logo-mark { width: 44px; height: 44px; }
  .brand { font-size: 18px; }
  .header-actions { justify-content: center; }
  .hero-copy h1 { font-size: clamp(28px, 6vw, 36px); }
}  margin: 12px 0;
}

.cta-banner {
  padding: 70px 0 80px;
  background: radial-gradient(circle at 30% 10%, rgba(79, 124, 255, 0.14), transparent 32%), #f9fbff;
  border-top: 1px solid #ecf1f9;
}

.cta-banner .center-text {
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta-banner .hero-ctas {
  justify-content: center;
}

footer.footer-band {
  background: #eef2f8;
  padding: 32px 0 24px;
  border-top: 1px solid #e1e7f2;
  margin-top: 0;
}

body.dark footer.footer-band {
  background: #0e1426;
  border-top-color: #111b2f;
}

body.dark .footer-grid {
  border-bottom-color: #1a253c;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe3f3;
}

.footer-grid h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover { color: var(--accent); }

.badge-row {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mini-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: #e5eafe;
  color: var(--accent);
  font-size: 12px;
  border: 1px solid #d0d9f8;
}

.footer-bottom {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Responsive stacks */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Responsive stacks */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Make header more compact on small screens */
  .header-grid { grid-template-columns: auto 1fr auto; gap:10px; align-items:center; }
  .brand { gap:8px; }

  /* Footer brand image */
  .footer .brand { align-items:center; }
  .footer .brand img.logo-mark { width:32px; height:32px; border-radius:8px; object-fit:cover; margin-right:10px; }
}

/* Small helper */
.sr-only { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }


.feature h3 { margin: 0 0 8px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--muted); line-height: 1.5; }

.split-section {
  align-items: center;
  gap: 24px;
}

.split-copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.split-visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 320px;
  display: block;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.bullet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  line-height: 1.5;
}

.bullet-list strong { color: var(--text); }

.list-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 124, 255, 0.12);
  border: 1px solid rgba(79, 124, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.list-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Contact page */
.contact-columns h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  background: #f6f8fd;
  border: 1px solid #e5ebf8;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.contact-card form {
  display: grid;
  gap: 12px;
}

.contact-card input,
.contact-card textarea {
  background: #fdfefe;
  padding: 14px;
}

.contact-card textarea {
  min-height: 140px;
}

.btn.full { width: 100%; text-align: center; }

.info-card {
  display: grid;
  gap: 12px;
}

.info-panels {
  display: grid;
  gap: 12px;
}

.info-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  background: #f6f8fd;
  border: 1px solid #e5ebf8;
  border-radius: 12px;
}

.panel-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(79, 124, 255, 0.12);
  border: 1px solid rgba(79, 124, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.faq {
  gap: 16px;
}

/* New visual improvements */
.hero-visual img { border-radius: 14px; }

.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card.feature .icon { font-size: 20px; display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:12px; background:rgba(79,124,255,0.08); }

/* Pricing cards */
.card { padding:18px; border-radius:12px; }

/* Add subtle hero overlay */
.hero-visual { position:relative; overflow:hidden; border-radius:16px; }
.hero-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(15,23,42,0.06), rgba(15,23,42,0.08)); pointer-events:none; }

/* Slightly larger header and spacing */
header { padding: 20px 0; }

@media (max-width: 900px) {
  .contact-columns { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-card {
  background: #f6f8fd;
  border: 1px solid #e5ebf8;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  padding: 18px 20px;
}

.faq-card h3 {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

body.dark .feature-cards .feature,
body.dark .cap-grid .feature,
body.dark .faq-card,
body.dark .contact-card,
body.dark .info-panel {
  background: #0f192f;
  border-color: #1d2a44;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.35);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  line-height: 1.5;
  color: var(--muted);
}

.contact-list strong { color: var(--text); }

form label { color: var(--text); }
form input, form textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}

body.dark form {
  background: #0f192f;
  border-color: #1d2a44;
}

body.dark input,
body.dark textarea {
  background: #0a1326;
  border-color: #1d2a44;
  color: var(--text);
.contact-hero-block {
  padding: 60px 0 40px;
}

.contact-hero {
  max-width: 820px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -0.02em;
  margin: 12px 0;
}

.contact-hero .muted {
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

.contact-hero .pill {
  margin: 0 auto 14px;
  gap: 6px;
  min-width: 160px;
  justify-content: center;
}

.contact-hero .pill svg {
  width: 16px;
  height: 16px;
}
}