:root {
  --bg: #061633;
  --bg-soft: #0d2a58;
  --surface: #11396f;
  --card: #174b8b;
  --text: #f4f8ff;
  --muted: #c3d5f5;
  --brand: #1f6fff;
  --brand-2: #ffd23f;
  --accent: #ffd23f;
  --border: #2f63ac;
  --radius: 16px;
  --shadow: 0 12px 36px rgba(5, 16, 38, 0.45);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 210, 63, 0.2), transparent 36%),
    radial-gradient(circle at top right, #1b4d98 0, var(--bg) 48%);
  line-height: 1.6;
}

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

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

.top-banner {
  width: 100%;
  border-bottom: 1px solid rgba(47, 99, 172, 0.5);
  background: #05122a;
  overflow: hidden;
}

.top-banner img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  clip-path: inset(6px 0 6px 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(6, 22, 51, 0.82);
  border-bottom: 1px solid rgba(47, 99, 172, 0.5);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 32px;
  background: linear-gradient(160deg, #42a5ff, #0d57b8 70%);
  border-radius: 55% 55% 55% 0;
  transform: rotate(135deg);
  box-shadow: 0 6px 14px rgba(13, 87, 184, 0.35);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(20deg);
}

.brand-text {
  transform: translateY(1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 210, 63, 0.2);
  color: #ffeaa1;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 16ch;
}

.hero-copy {
  color: var(--muted);
  max-width: 52ch;
  margin: 1rem 0 1.8rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.8rem 1.1rem;
  border-radius: 11px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06244f;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 210, 63, 0.28);
}

.btn-small {
  padding: 0.55rem 0.85rem;
}

.btn-ghost {
  background: rgba(255, 210, 63, 0.08);
  border-color: rgba(255, 210, 63, 0.35);
  color: #fff3c0;
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  display: grid;
  gap: 0.1rem;
}

.hero-stats strong {
  font-size: 1.2rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  background: linear-gradient(165deg, rgba(18, 57, 111, 0.95), rgba(11, 37, 80, 0.92));
  border: 1px solid rgba(47, 99, 172, 0.85);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 0.55rem;
}

.hero-card p {
  color: var(--muted);
}

.hero-card dl {
  margin: 1rem 0 1.25rem;
}

.hero-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(47, 99, 172, 0.65);
}

.hero-card dt {
  color: var(--muted);
}

.trust-strip {
  border-top: 1px solid rgba(47, 99, 172, 0.5);
  border-bottom: 1px solid rgba(47, 99, 172, 0.5);
  background: rgba(15, 45, 91, 0.55);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
  color: #ffeaa1;
  font-weight: 500;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(13, 42, 88, 0.58), rgba(9, 30, 66, 0.28));
  border-top: 1px solid rgba(47, 99, 172, 0.45);
  border-bottom: 1px solid rgba(47, 99, 172, 0.45);
}

.section-head {
  margin-bottom: 1.7rem;
}

.section-head h2 {
  max-width: 20ch;
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
}

.reviews-meta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.review-badge {
  margin: 0;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 63, 0.45);
  background: rgba(255, 210, 63, 0.12);
  color: #ffeaa1;
  font-size: 0.82rem;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card,
.price-card,
.reviews-grid blockquote,
.about-points article,
.contact-form,
.faq-item {
  background: rgba(17, 57, 111, 0.62);
  border: 1px solid rgba(47, 99, 172, 0.85);
  border-radius: var(--radius);
}

.card {
  padding: 1.2rem;
}

.card p {
  color: var(--muted);
}

.card ul,
.price-card ul,
.contact-details {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: #d2def6;
}

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

.price-card {
  padding: 1.25rem;
  position: relative;
}

.price-card.featured {
  border-color: rgba(255, 210, 63, 0.95);
  box-shadow: 0 14px 34px rgba(255, 210, 63, 0.24);
}

.tag {
  position: absolute;
  top: -11px;
  right: 1rem;
  font-size: 0.75rem;
  background: var(--accent);
  color: #372a00;
  font-weight: 700;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
}

.price {
  font-size: 2.1rem;
  margin: 0.4rem 0;
  font-weight: 800;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: start;
}

.split p {
  color: var(--muted);
}

.about-points {
  display: grid;
  gap: 0.9rem;
}

.about-points article {
  padding: 1.15rem;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 63, 0.55);
  background: rgba(255, 210, 63, 0.14);
  color: #ffeaa1;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(255, 210, 63, 0.28);
  transform: translateY(-1px);
}

.review-slide {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1.25rem;
  background: rgba(17, 57, 111, 0.62);
  border: 1px solid rgba(47, 99, 172, 0.85);
  border-radius: var(--radius);
}

.review-text {
  margin: 0;
  font-size: 1.02rem;
  color: #eaf2ff;
}

.review-cite {
  display: block;
  margin-top: 0.3rem;
  color: #ffeaa1;
  font-style: normal;
  font-weight: 700;
}

.reviews-foot {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.reviews-count {
  margin: 0;
  color: #c7daf7;
  font-size: 0.92rem;
}

.reviews-link {
  color: #ffeaa1;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 210, 63, 0.45);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  padding: 1rem 1rem 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
  padding: 0 1rem;
}

.faq-item.open .faq-answer {
  max-height: 150px;
  padding-bottom: 1rem;
}

.contact-split {
  align-items: stretch;
}

.contact-form {
  padding: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: #d5e0f8;
  font-size: 0.93rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #092450;
  border: 1px solid #2f63ac;
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 210, 63, 0.45);
  border-color: #ffd23f;
}

.form-message {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  color: #ffeaa1;
}

.site-footer {
  border-top: 1px solid rgba(47, 99, 172, 0.5);
  padding: 1.2rem 0;
  background: #05122a;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #c6d8f8;
  font-size: 0.93rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(280px, 92vw);
    background: #0c2a5a;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.65rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .site-nav a {
    padding: 0.58rem;
    border-radius: 8px;
  }

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

  .menu-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 2.8rem 0;
  }

  .nav-wrap {
    padding: 0.7rem 0;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .hero-copy {
    margin: 0.85rem 0 1.2rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 0.8rem;
  }

  .hero-stats li {
    flex: 1 1 100%;
  }

  .hero-card {
    padding: 1.1rem;
  }

  .hero-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .section-head h2 {
    max-width: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.8rem 0;
    font-size: 0.88rem;
  }

  .hero-grid,
  .split,
  .card-grid,
  .pricing-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    grid-template-columns: 36px 1fr 36px;
    gap: 0.5rem;
  }

  .carousel-btn {
    width: 36px;
    min-width: 36px;
    border-radius: 10px;
    height: 100%;
    min-height: 90px;
  }

  .review-slide {
    min-height: 220px;
    padding: 1rem;
  }

  .reviews-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-banner img {
    width: 100%;
  }
}
