:root {
  --brand: #204060;
  --brand-dark: #182f48;
  --brand-soft: #2f5172;
  --ink: #1f2a35;
  --muted: #787878;
  --bg: #f4f6f9;
  --panel: #ffffff;
  --stroke: #e3e7ec;
  --shadow: 0 24px 40px rgba(32, 64, 96, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #eef2f6 0%, var(--bg) 55%);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.brand img {
  height: 46px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.nav a:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(32, 64, 96, 0.3);
}

.btn.light {
  background: #fff;
  color: var(--brand);
}

.btn.tiny {
  font-size: 12px;
  padding: 6px 12px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  padding: 52px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #204060 0%, #1d3652 55%, #172739 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  top: -120px;
  right: 80px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
  bottom: -80px;
  left: 60px;
}

.hero-content h1 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.hero .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 24px;
  width: min(360px, 100%);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.status-pill {
  background: rgba(32, 64, 96, 0.1);
  color: var(--brand);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.metric {
  background: rgba(32, 64, 96, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 18px;
}

.metric-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.call-list {
  display: grid;
  gap: 10px;
}

.call-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-item span {
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: -20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: 170px;
}

.floating-card .btn {
  margin-top: 10px;
}

.section {
  margin-top: 68px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(32, 64, 96, 0.08);
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(32, 64, 96, 0.12);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.panel {
  background: var(--panel);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-family: "Sora", "Manrope", sans-serif;
}

.panel.highlight {
  background: linear-gradient(135deg, #204060, #172739);
  color: #fff;
}

.panel.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.panel.highlight .btn {
  margin-top: 20px;
  background: #fff;
  color: var(--brand);
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check {
  background: rgba(32, 64, 96, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.mini-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature-list {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-list h4 {
  margin-bottom: 12px;
}

.feature-list ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.apps {
  background: #eef2f6;
  padding: 40px 24px;
  border-radius: 28px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.app-tile {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--brand);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-soft);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

blockquote {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.blog-card {
  background: var(--panel);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.blog-thumb {
  height: 120px;
  border-radius: 14px;
  background: linear-gradient(120deg, #204060, #2f5172);
  margin-bottom: 16px;
}

.blog-thumb.alt {
  background: linear-gradient(120deg, #172739, #204060);
}

.blog-card a {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: var(--brand);
  font-weight: 700;
}

.newsletter {
  margin-top: 80px;
}

.newsletter-card {
  background: linear-gradient(120deg, #204060, #172739);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.contact-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card .btn {
  margin-top: 16px;
}

.site-footer {
  margin-top: 70px;
  background: #172739;
  color: #c7d0da;
  padding: 40px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #c7d0da;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 36px 28px;
  }

  .floating-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding: 30px 22px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .newsletter-card {
    align-items: flex-start;
  }

  .site-footer {
    padding: 32px 24px;
  }
}
