* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: 0 0% 100%;
  --foreground: 205 35% 25%;
  --card: 0 0% 100%;
  --card-foreground: 205 35% 25%;
  --primary: 205 100% 33%;
  --primary-foreground: 0 0% 100%;
  --primary-hover: 205 100% 28%;
  --secondary: 205 30% 96%;
  --secondary-foreground: 205 35% 25%;
  --muted: 205 20% 96%;
  --muted-foreground: 205 15% 45%;
  --color-disabled: #b6b6b6;
  --accent: 205 35% 96%;
  --accent-foreground: 205 100% 33%;
  --border: 205 25% 90%;
  --accent-yellow: 45 95% 58%;
  --accent-red: 350 75% 48%;
  --radius: 0.9rem;
  --shadow-soft: 0 8px 32px -8px hsl(205 100% 33% / 0.12);
  --shadow-strong: 0 20px 50px -16px hsl(205 100% 33% / 0.34);
  --max-width: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

p {
  color: hsl(var(--muted-foreground));
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 1rem;
}

.section-sm {
  padding: 3rem 1rem;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: hsl(var(--primary));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-grey {
  color: var(--color-disabled);
}

.gradient-hero {
  background: linear-gradient(180deg, hsl(0 0% 100%), hsl(205 40% 98%));
}

.bg-secondary {
  background: hsl(var(--secondary));
}

.bg-accent {
  background: hsl(var(--accent));
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.card-soft {
  background: hsl(var(--secondary));
}

.card-highlight {
  border: 2px solid hsl(var(--primary));
  position: relative;
}

.badge {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  background: #FDB913;
  color: #1a1a1a;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--primary));
  white-space: nowrap;
}

.brand-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: hsl(var(--foreground));
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-cta {
  background: linear-gradient(135deg, hsl(205 100% 33%), hsl(205 100% 43%));
  color: white;
  box-shadow: 0 10px 30px -10px hsl(205 100% 33% / 0.4);
}

.btn-cta:hover {
  box-shadow: 0 16px 42px -10px hsl(205 100% 33% / 0.4);
}

.btn-outline {
  background: white;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
}

.btn-outline:hover {
  background: hsl(var(--primary));
  color: white;
}

.btn-nav {
  padding: 0.55rem 1.1rem;
  font-size: 0.94rem;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--accent));
  color: hsl(var(--primary));
  padding: 0.45rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

.hero-copy p {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--foreground));
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.dashboard-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px -12px hsl(205 100% 33% / 0.18);
  border: 1px solid hsl(var(--border));
  background: white;
}

.trust-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 0.75rem;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
}

.icon-red {
  color: #E31E24;
}

.icon-yellow {
  color: #FDB913;
}

.resource-card,
.feature-card,
.path-card,
.pricing-card {
  display: flex;
  flex-direction: column;
}

.resource-card h3,
.feature-card h3,
.path-card h3,
.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.resource-tag {
  display: inline-block;
  background: hsl(var(--accent));
  color: hsl(var(--primary));
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.resource-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.price {
  margin-bottom: 1.4rem;
}

.price strong {
  font-size: 2.6rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.price span {
  color: hsl(var(--muted-foreground));
}

.plan-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  fill: #FDB913;
  color: #FDB913;
}

.testimonial-quote {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.support-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.final-cta {
  background: linear-gradient(135deg, hsl(205 100% 33%), hsl(205 100% 43%));
  color: white;
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.final-cta p {
  color: rgba(255,255,255,0.92);
  max-width: 46rem;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
}

.final-cta .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: white;
}

.final-cta .btn-outline:hover {
  background: white;
  color: hsl(var(--primary));
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--accent));
  color: hsl(var(--primary));
  padding: 0.45rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
  max-width: 16ch;
}

.page-hero .lead {
  font-size: 1.15rem;
  max-width: 52rem;
  margin-bottom: 1.6rem;
}

.page-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.toc-box,
.info-box {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-soft);
}

.toc-box ul,
.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-box li,
.info-box li {
  margin-bottom: 0.85rem;
}

.toc-box a {
  color: hsl(var(--primary));
  font-weight: 600;
}

.check-grid {
  display: grid;
  gap: 12px;
}

.check-item {
  padding: 14px 16px;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  background: #fff;
  color: hsl(var(--foreground));
}

.highlight-quote {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid hsl(var(--primary));
  background: hsl(var(--secondary));
  border-radius: 14px;
  color: hsl(var(--foreground));
  font-size: 1.04rem;
}

.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}

.form-wrap {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  font: inherit;
  color: hsl(var(--foreground));
  background: #fff;
}

.microcopy {
  font-size: 0.92rem;
  color: hsl(var(--muted-foreground));
}

.video-frame {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 0.2rem);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.video-frame video,
.video-frame iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.footer {
  background: hsl(var(--secondary));
  padding: 3rem 1rem 1.2rem;
  margin-top: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .hero-wrap,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .trust-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-link {
    display: none;
  }

  .brand {
    font-size: 1.5rem;
  }

  .brand-icon {
    font-size: 2rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .page-hero,
  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }
}

.breadcrumbs {
  padding: 1rem 0 0;
}

.breadcrumbs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
}

.breadcrumbs-nav a {
  color: hsl(var(--primary));
  font-weight: 600;
}

.breadcrumb-separator {
  color: hsl(var(--muted-foreground));
}

.related-section .section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.related-section .section-subtitle {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.related-card .resource-tag {
  margin-bottom: 0.8rem;
}

.related-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.related-card p {
  margin-bottom: 0;
}

.related-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

