:root {
  --navy-700: #1a2c4e;
  --navy-600: #213862;
  --navy-500: #374b71;
  --bg-page: #f6f7f8;
  --bg-card: #ffffff;
  --bg-card-alt: #edeff2;
  --border: #dde1e7;
  --text-title: #1a1a2e;
  --text-body: #4a5568;
  --text-muted: #6b7280;
  --dark-bg: #1a1a2e;
  --error: #dc3545;
  --white: #ffffff;
  --orange-500: #E8913A;
  --orange-600: #c97a2a;
  --orange-100: #fbeee1;
  --success: #28a745;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange-500);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
}

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

.narrow {
  width: min(760px, 92vw);
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--bg-page);
}

.section-alt {
  background: var(--bg-card-alt);
}

.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  color: var(--text-title);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

.section-intro {
  max-width: 70ch;
  color: var(--text-muted);
}

.brand-mark {
  margin: 0 0 0.6rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

.logo .logo-icon {
  height: 1em;
  width: auto;
}

.logo-dark {
  color: #fff;
}

.logo-light {
  color: #213862;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-cta {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-cta:focus-visible {
  outline-color: var(--navy-600);
}

.button-cta:hover {
  background: var(--orange-600);
}

.button-secondary {
  background: var(--navy-600);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--navy-500);
}

.button-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--navy-600);
  box-shadow: var(--shadow-sm);
}

.nav {
  width: min(1120px, 96vw);
  margin: 0 auto;
  background: #213862;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.nav .logo {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}

.hero {
  background: linear-gradient(135deg, #213862 0%, #374b71 100%);
  color: var(--white);
  padding: 7rem 0 5rem;
}

.hero h1 {
  color: var(--white);
  max-width: 16ch;
}

.hero-short {
  padding: 4rem 0 3rem;
}

.hero-short h1 {
  max-width: none;
}

.hero-content {
  display: grid;
  gap: 1rem;
}

.hero-logo {
  font-size: 42px;
  width: fit-content;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-trust {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-trust li {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}

.feature-card ul,
.pricing-card ul {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.pricing-card li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.45rem 0;
}

.feature-card li::before,
.pricing-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pro-card {
  border-top: 4px solid var(--orange-500);
}

.steps .card {
  min-height: 190px;
}

.step-number {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: var(--orange-100);
  color: var(--orange-600);
  font-weight: 700;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-600);
  margin: 0;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-card .button {
  margin-top: auto;
}

.featured {
  border: 2px solid var(--orange-500);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--orange-100) 100%);
}

.badge {
  width: fit-content;
  margin: 0 0 0.5rem;
  background: var(--orange-500);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  padding: 0.15rem 0.45rem;
  font-weight: 600;
}

.coming-soon-banner {
  position: relative;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(33, 56, 98, 0.18);
  background: linear-gradient(120deg, var(--orange-100) 0%, var(--bg-card) 52%, var(--bg-card-alt) 100%);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow: hidden;
}

.coming-soon-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-600) 0%, var(--orange-500) 100%);
}

.coming-soon-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--navy-600) 0%, var(--orange-500) 100%);
  box-shadow: 0 6px 14px rgba(33, 56, 98, 0.22);
  position: relative;
  flex: 0 0 auto;
}

.coming-soon-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  transform: translate(-50%, -50%) rotate(45deg);
}

.coming-soon-copy {
  display: grid;
  gap: 0.15rem;
}

.coming-soon {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.coming-soon-detail {
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
}

.section-dark h2,
.section-dark p,
.section-dark .microcopy,
.section-dark a {
  color: var(--white);
}

.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.email-form input {
  flex: 1 1 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
}

.form-status {
  flex-basis: 100%;
  margin: 0;
  min-height: 1.4em;
  font-weight: 600;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }
.section-dark .form-status.error { color: #fca5a5; }

.microcopy {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.legal-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.legal-block h1 {
  margin-bottom: 0.25rem;
}

.legal-block h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.legal-block h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.legal-block ul {
  padding-left: 1.25rem;
}

.legal-block li {
  margin: 0.4rem 0;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.site-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.25rem 0;
}

.footer-wrap {
  display: grid;
  gap: 0.8rem;
}

.site-footer .logo {
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.site-footer a {
  color: var(--white);
}

.copyright {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--navy-600);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tbody tr:nth-child(odd) {
  background: var(--bg-card);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-card-alt);
}

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--bg-card);
}

.faq-item summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 1.25rem;
  font-weight: 700;
  color: var(--orange-500);
}

.faq-item[open] summary::before {
  content: "\2212";
}

.faq-item p {
  padding: 0 1rem 0.85rem 2.25rem;
  margin: 0;
  color: var(--text-body);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .nav {
    position: relative;
  }

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

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #213862;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

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

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-logo {
    font-size: 34px;
  }

  .coming-soon-banner {
    align-items: flex-start;
  }
}
