:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #eef2ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --primary: #1d4ed8;
  --primary-dark: #1e40af;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.topbar-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #fff;
  font-weight: 800;
}

.brand-text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: #dbeafe;
  color: var(--primary-dark);
}

.hero h1,
.section h2 {
  margin: 18px 0 12px;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.hero-text,
.section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.hero-card,
.card,
.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
}

.hero-card h2,
.card h3 {
  margin-top: 0;
}

.info-list {
  padding-left: 18px;
  margin: 0;
}

.info-list.compact li + li {
  margin-top: 10px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: linear-gradient(180deg, transparent, rgba(219, 234, 254, 0.28));
}

.section-head {
  margin-bottom: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 22px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
}

.contact-box {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .cards,
  .contact-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-box {
    align-items: start;
  }
}

@media (max-width: 700px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    padding-top: 42px;
  }
}
