:root {
  --bg: #f5f8fb;
  --ink: #0b2c4a;
  --ink-soft: #2e4a63;
  --mint: #5fc7de;
  --teal: #0f79b8;
  --sea: #d6eff7;
  --sand: #eaf2f8;
  --sun: #f6c36b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(12, 40, 70, 0.18);
  --radius: 22px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Sora', 'Arial', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 44, 74, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-logo {
  height: 69px;
  width: auto;
  max-width: 200px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  max-width: 100%;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--sea);
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  z-index: -1;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, var(--sea), transparent 70%);
  top: -120px;
  left: -160px;
}

.hero::after {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 70% 60%, var(--sand), transparent 70%);
  bottom: -200px;
  right: -180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.hero p {
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sea);
  color: var(--teal);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 107, 100, 0.25);
}

.btn-secondary {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--sea);
  color: var(--ink);
}

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

.section {
  padding: 80px 0;
  overflow-x: hidden;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-title p {
  margin: 0;
  color: var(--ink-soft);
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(11, 46, 44, 0.12);
  min-height: 220px;
  display: grid;
  gap: 14px;
}

.card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
}

.feature-list li {
  list-style: none;
  position: relative;
  padding-left: 26px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.surface {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 46, 44, 0.12);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 46, 44, 0.12);
  background: var(--white);
}

.table-wrap .pricing-table {
  box-shadow: none;
  border-radius: 0;
  min-width: 640px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(11, 46, 44, 0.08);
  text-align: left;
  font-size: 0.95rem;
}

.pricing-table th {
  background: var(--sea);
  color: var(--ink);
  font-weight: 700;
}

.pricing-note {
  margin-top: 16px;
  color: var(--ink-soft);
}

.cta {
  background: linear-gradient(120deg, var(--ink), #0f4d4a);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  display: grid;
  gap: 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer {
  padding: 50px 0 70px;
  border-top: 1px solid rgba(11, 46, 44, 0.08);
  background: #eef4f8;
  overflow-x: hidden;
}

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

.footer-powered {
  width: min(1120px, 92vw);
  margin: 26px auto 0;
  padding-bottom: 10px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-powered a {
  color: var(--teal);
  font-weight: 600;
}

.footer h4 {
  margin: 0 0 12px;
}

.footer p,
.footer li {
  margin: 0;
  color: var(--ink-soft);
}

.footer ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 620px;
}

.inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  background: var(--sea);
  color: var(--teal);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.map-placeholder {
  background: linear-gradient(130deg, #dff2ed, #f1e7d6);
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  padding: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    padding: 14px 0;
  }

  .brand-logo {
    height: 56px;
    max-width: 180px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 4vw;
    left: 4vw;
    background: var(--white);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
    display: none;
    max-width: calc(100% - 8vw);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 10px;
  }

  .nav-toggle {
    padding: 8px 12px;
  }

  .hero-card {
    padding: 22px;
  }

  .cta {
    padding: 28px;
  }

  .brand-logo {
    height: 44px;
    max-width: 150px;
  }

  .pricing-table th,
  .pricing-table td {
    font-size: 0.85rem;
  }
}
