:root {
  --navy: #061a3f;
  --navy-2: #0b2d66;
  --blue: #0057ff;
  --blue-2: #0b74ff;
  --red: #e30613;
  --white: #ffffff;
  --light: #f4f7fb;
  --text: #172033;
  --muted: #64748b;
  --border: #dbe4f0;
  --shadow: 0 18px 45px rgba(6, 26, 63, 0.14);
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

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

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

.site-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo {
  width: 230px;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy);
  transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  background:
    linear-gradient(135deg, rgba(6,26,63,0.96), rgba(0,87,255,0.84)),
    radial-gradient(circle at top right, rgba(227,6,19,0.16), transparent 35%);
  color: var(--white);
  padding: 68px 0;
  overflow: hidden;
}

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

.eyebrow {
  display: inline-block;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 900;
  font-size: 0.95rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 760px;
}

.hero-text {
  font-size: 1.08rem;
  color: #e7eefc;
  max-width: 680px;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 900;
  transition: 0.25s ease;
  text-align: center;
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(0, 87, 255, 0.3);
}

.btn.primary:hover {
  background: var(--red);
  transform: translateY(-3px);
}

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

.btn.secondary:hover {
  background: #dcecff;
  transform: translateY(-3px);
}

.btn.full {
  width: 100%;
}

.hero-card {
  background: var(--white);
  color: var(--navy);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--blue);
}

.hero-card img {
  width: 100%;
  max-width: 330px;
  display: block;
  margin: 0 auto 18px;
}

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

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

.hero-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
}

.hero-card li::before {
  content: "✓";
  color: var(--blue);
  margin-right: 10px;
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2,
.page-hero h1 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.section-title p,
.page-hero p {
  color: var(--muted);
  max-width: 740px;
  margin: auto;
}

.cards,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

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

.card,
.price-card,
.contact-panel,
.contact-form,
.legal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card {
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: var(--blue);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.card h3,
.price-card h3,
.contact-form h2,
.contact-panel h2 {
  color: var(--navy);
  margin-bottom: 10px;
}

.page-hero {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  padding: 70px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

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

.tab-btn {
  border: 2px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--blue);
  color: var(--white);
}

.tab-content {
  display: none;
}

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

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

.price-card.featured {
  border: 2px solid var(--blue);
  transform: scale(1.03);
}

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  margin: 10px 0 18px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.price-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.price-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 8px;
}

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.info-line {
  background: var(--light);
  border-radius: 14px;
  padding: 16px;
  margin-top: 14px;
}

.info-line strong {
  color: var(--navy);
}

.info-line a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form label {
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin: 14px 0 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,87,255,0.12);
}

.alert {
  padding: 13px;
  border-radius: 12px;
  margin: 12px 0;
  font-weight: 900;
}

.alert.success {
  background: #e8fff0;
  color: #127a35;
}

.alert.error {
  background: #ffecec;
  color: #a51414;
}

.legal-box h2 {
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
}

.cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 12px;
}

.cta p {
  color: #e7eefc;
  margin-bottom: 24px;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 32px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 150px;
  max-height: 70px;
  object-fit: contain;
}

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

.footer-links a:hover {
  color: #7db7ff;
}

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 86px;
    left: 4%;
    right: 4%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
  }

  .hero-grid,
  .cards,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 55px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

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

  .logo {
    width: 180px;
  }

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