:root {
  --navy: #002d5b;
  --navy-dark: #001f3f;
  --gold: #d4af37;
  --gold-light: #e8c96a;
  --charcoal: #666666;
  --text: #333333;
  --bg: #f7f8fa;
  --white: #ffffff;
  --border: #e2e6ea;
  --shadow: 0 12px 40px rgba(0, 45, 91, 0.08);
  --radius: 12px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--charcoal);
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

/* Hero */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.15), transparent 40%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #003d7a 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-card-body {
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 0.98rem;
}

.hero-card h3 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pillar-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.pillar-list li {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pillar-list strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pillar-list span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--charcoal);
  font-size: 1.05rem;
}

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

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.callout p {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 45, 91, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.card p {
  color: var(--charcoal);
  font-size: 0.95rem;
}

/* Software band */
.software-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.software-logo {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.software-band h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.software-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 50rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
  transform: scale(1.02);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.price-card h3 {
  margin-bottom: 0.25rem;
}

.price-card .buying {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.price-card .amount {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.price-card .amount span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.price-card .desc {
  color: var(--charcoal);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.price-card li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.step {
  text-align: center;
  padding: 1rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
}

.step h4 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--charcoal);
}

/* About / CTA */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.about-panel h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.cta {
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.2), transparent 35%),
    var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.cta-note {
  margin: 1.25rem auto 0;
  max-width: 28rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.contact-links a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.contact-links a:hover {
  color: var(--gold-light);
}

.email-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.email-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer */
.site-footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .problem-grid,
  .about-grid,
  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .software-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .software-logo {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding: 3.5rem 0;
  }

  section {
    padding: 3.5rem 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}
