:root {
  --brand-navy: #0c1b33;
  --brand-gold: #f7c948;
  --brand-sky: #4fb4ff;
  --brand-rose: #ff7c8a;
  --text-dark: #161c2d;
  --text-muted: #5c657d;
  --bg-light: #f5f7fb;
  --card-border: rgba(12, 27, 51, 0.08);
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.1);
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

section {
  padding: 4.5rem 0;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(12, 27, 51, 0.05);
}

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

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--brand-navy);
}

.nav__items {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav__cta {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand-sky), var(--brand-rose));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(79, 180, 255, 0.35);
}

.hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: radial-gradient(circle at top right, rgba(79, 180, 255, 0.15), transparent),
    linear-gradient(180deg, #eff6ff 0%, #fff 60%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(79, 180, 255, 0.16);
  color: var(--brand-navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 1rem 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.hero__benefits li {
  list-style: none;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 31, 44, 0.08);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: 600;
}

.hero__benefits li span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(247, 201, 72, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(120deg, var(--brand-navy), #1f3f75);
  color: #fff;
  box-shadow: 0 20px 40px rgba(12, 27, 51, 0.25);
}

.btn--ghost {
  background: rgba(12, 27, 51, 0.07);
  color: var(--brand-navy);
  backdrop-filter: blur(10px);
}

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

.cta-options {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cta-picker button {
  border-radius: 999px;
  border: 1px solid rgba(12, 27, 51, 0.2);
  padding: 0.35rem 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-picker button.is-active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #1f1d0f;
}

.hero__media {
  position: relative;
}

.hero__stats {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero__stat {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: #fff;
  min-width: 190px;
}

.hero__stat strong {
  display: block;
  font-size: 1.8rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.value-card h3 {
  margin-top: 0.5rem;
}

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

.cta-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-soft);
  display: block;
  text-decoration: none;
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.cta-image:hover::after {
  opacity: 0.5;
}

.cta-image-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-gold);
  color: #1a1f2b;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(247, 201, 72, 0.4);
  z-index: 1;
}

.cta-image-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

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

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.trust-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}

.trust-card address {
  font-style: normal;
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.reviews {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  background: #fff;
  min-height: 220px;
}

.review cite {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--card-border);
  background: #fff;
}

.guide-content {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.guide-content h1,
.guide-content h2,
.guide-content h3,
.guide-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.guide-content h1:first-child {
  margin-top: 0;
}

.guide-content p {
  color: var(--text-dark);
}

.guide-content ul,
.guide-content ol {
  margin: 0 0 1.25rem 1.5rem;
}

.guide-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.guide-content th,
.guide-content td {
  border: 1px solid var(--card-border);
  padding: 0.75rem;
  text-align: left;
}

.guide-content blockquote {
  border-left: 4px solid var(--brand-sky);
  padding-left: 1rem;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

.editorial {
  background: #050a14;
  color: #fff;
}

.editorial .section-title {
  color: #fff;
}

.editorial__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.editorial-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
}

.editorial-card img {
  border-radius: 14px;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.editorial-card p {
  color: rgba(255, 255, 255, 0.8);
}

.continue-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--brand-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.faqs {
  border-top: 1px solid var(--card-border);
}

.faq {
  border-bottom: 1px solid var(--card-border);
  padding: 1.5rem 0;
}

.faq h3 {
  margin: 0 0 0.5rem;
}

.footer {
  padding: 3rem 0;
  background: #040914;
  color: rgba(255, 255, 255, 0.8);
}

.footer a {
  color: var(--brand-gold);
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav__items {
    display: none;
  }

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

  section {
    padding: 3.5rem 0;
  }
}
