:root {
  --primary: #1e3a8a;
  --accent-start: #f97316;
  --accent-end: #fb923c;
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
  --shadow-strong: 0 18px 40px rgba(30, 58, 138, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.top-glow {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 480px;
  background:
    radial-gradient(circle at 16% 18%, rgba(249, 115, 22, 0.17), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(30, 58, 138, 0.13), transparent 34%);
  pointer-events: none;
  z-index: -1;
}

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.65);
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--primary);
  font-size: 1.2rem;
}

.brand span {
  color: var(--accent-start);
}

.menu {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  font-weight: 600;
}

.menu a {
  color: #334155;
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0.82rem 1.45rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(30, 58, 138, 0.28);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

section {
  padding: 78px 0;
}

.section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 0.7rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}

.hero {
  padding: 88px 0 70px;
}

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

.badge {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.86rem;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.14;
  margin: 1rem 0 0.9rem;
  color: #0b1324;
}

.hero p {
  margin: 0 0 1.25rem;
  color: #334155;
  font-size: clamp(1rem, 2vw, 1.08rem);
  max-width: 640px;
}

.trust-line {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.hero-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  min-height: 420px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(30, 58, 138, 0.14));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #0f172a;
}

.card p {
  margin: 0;
  color: #475569;
}

.problem {
  background: linear-gradient(180deg, #fff, #fcfdff);
}

.before-after {
  background: var(--soft);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.vs {
  align-self: center;
  font-weight: 800;
  color: var(--accent-start);
  letter-spacing: 0.5px;
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  padding: 0.46rem 0;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.list-clean li:last-child {
  border-bottom: 0;
}

.testimonial {
  background: #fff;
}

.quote {
  font-size: 0.98rem;
  color: #334155;
  margin: 0 0 0.8rem;
}

.person {
  font-weight: 700;
  color: #0f172a;
}

.role {
  color: var(--muted);
  font-size: 0.88rem;
}

.timeline {
  position: relative;
  margin-top: 1.4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 2px;
  bottom: 2px;
  width: 3px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent-start));
}

.timeline-step {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1.25rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary);
  position: absolute;
  left: 2px;
  top: 4px;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-strong);
}

.price-line {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.old-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1.3rem;
  font-weight: 700;
}

.new-price {
  color: var(--accent-start);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.feature-list {
  margin: 1rem 0 1.2rem;
  padding-left: 1rem;
}

.feature-list li {
  margin: 0.4rem 0;
  color: #334155;
}

.reassure {
  color: #475569;
  font-weight: 600;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
}

.img-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #475569;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.45rem;
  color: var(--primary);
  cursor: pointer;
}

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

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

  .vs {
    text-align: center;
    padding: 0.5rem 0;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4%;
    gap: 0.9rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu .btn {
    width: 100%;
  }
}
