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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #172033;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 78px;
  width: auto;
  display: block;
}

/* HIDE WEIRD GREY MENU BAR */
.menu-toggle,
#menuToggle {
  display: none !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: nowrap;
}

.nav-menu a {
  color: #172033;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: #e30613;
  color: #ffffff;
}

.nav-menu a.active {
  background: #0057ff;
  color: #ffffff;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #061a3f, #0057ff);
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mini-note {
  margin-top: 14px;
  font-weight: 700;
  opacity: 0.9;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: #ffffff;
  color: #172033;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 430px;
}

.hero-card img {
  width: auto;
  max-width: 230px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

.hero-card h3 {
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.hero-card li::before {
  content: "✓ ";
  color: #0057ff;
  font-weight: bold;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: #0057ff;
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: #061a3f;
}

.btn.full {
  width: 100%;
  text-align: center;
}

.btn:hover {
  opacity: 0.92;
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.section.light {
  background: #ffffff;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 35px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: #ffffff;
  color: #172033;
  padding: 42px 34px;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(6, 26, 63, 0.08);
  border: 1px solid #eef2f7;
  min-height: 255px;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 34px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #4b5563;
}

/* AUDIT BOX */
.audit-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #172033;
  box-shadow: 0 10px 30px rgba(6, 26, 63, 0.08);
  border: 1px solid #e5e7eb;
}

.audit-box ul {
  margin-left: 20px;
  margin-top: 8px;
}

.center {
  text-align: center;
  margin-top: 28px;
}

/* PRICING / GENERAL BOXES */
.pricing-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.price-card,
.legal-box,
.contact-form,
.contact-panel {
  background: #ffffff;
  color: #172033;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(6, 26, 63, 0.08);
  border: 1px solid #e5e7eb;
}

.price-card.featured {
  border: 2px solid #0057ff;
}

.price {
  font-size: 2rem;
  color: #0057ff;
  font-weight: 900;
  margin: 14px 0;
}

.badge {
  display: inline-block;
  background: #e30613;
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #0057ff;
  background: #ffffff;
  color: #0057ff;
  font-weight: 900;
  cursor: pointer;
}

.tab-btn.active {
  background: #0057ff;
  color: #ffffff;
}

.tab-btn:hover {
  background: #e30613;
  border-color: #e30613;
  color: #ffffff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #061a3f, #0057ff);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.7rem;
  margin-bottom: 10px;
}

/* FORMS */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}

.contact-form label {
  display: block;
  font-weight: 900;
  margin-top: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px;
  margin-top: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}

.alert {
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
}

/* CTA */
.cta {
  background: #061a3f;
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
  background: #061a3f;
  color: #ffffff;
  padding: 35px 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  color: #ffffff;
  margin: 0 8px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-container {
    min-height: auto;
    padding: 15px 0;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .logo-wrap {
    justify-content: center;
  }

  .logo {
    height: 65px;
  }

  .nav-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-menu a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero-content {
    max-width: 100%;
  }

  .hero-card {
    max-width: 100%;
  }

  .cards,
  .pricing-grid,
  .trust-grid,
  .audit-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
    padding: 34px 28px;
  }
}