﻿:root {
  --ink: #1c1a17;
  --muted: #5c5854;
  --muted-light: #7b746e;
  --bg: #f6f1ec;
  --paper: #ffffff;
  --line: #e7ded6;
  --accent: #f97316;
  --accent-2: #7c3aed;
  --accent-3: #0ea5e9;
  --accent-4: #22c55e;
  --shadow: 0 18px 40px rgba(18, 21, 26, 0.08);
  --radius: 18px;
  --heading: "Sora", "Segoe UI", sans-serif;
  --body: "Sora", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section--tint {
  background: #fffaf6;
}

.section--soft {
  background: #ffffff;
}

.section--dark {
  background: radial-gradient(circle at top, #2b1b46 0%, #151322 55%, #0c0b12 100%);
  color: #f5f1ea;
}

.section--cta {
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.18) 0%, rgba(124, 58, 237, 0.2) 45%, #f6f1ec 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.section--dark .muted {
  color: #c9c4bb;
}

.section--dark .section-head p {
  color: #c9c4bb;
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
}

.badge {
  background: #fff1e3;
  color: #d65a0f;
  border-color: #f3d7bf;
}

.pill {
  background: #f5efe9;
  color: #6c5e52;
  border-color: #e6d9cf;
}

.pill--accent {
  background: #f6eaff;
  border-color: #e1c6ff;
  color: #6a2be0;
}

.section--dark .pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f1ebe2;
}

.site-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
}

.site-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
  top: -200px;
  right: -140px;
  z-index: 0;
}

.site-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
  bottom: -240px;
  left: -140px;
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 10px;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-logo {
  width: 300px;
  height: auto;
  display: block;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  text-align: center;
  padding: 24px 0 10px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin: 20px 0 18px;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: #6a5c51;
  margin-top: 12px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.price-line {
  font-size: 2rem;
  font-weight: 700;
  margin: 6px 0;
}

.price-line small {
  font-size: 0.9rem;
  color: var(--muted-light);
}

.price-old {
  text-decoration: line-through;
  color: var(--muted-light);
}

.price-divider {
  width: 1px;
  height: 16px;
  background: var(--line);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button--primary {
  background: linear-gradient(135deg, #f97316, #7c3aed);
  color: #fff;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.25);
}

.button--primary:hover {
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  border-color: #d7ccc1;
  color: var(--ink);
}

.button--ghost:hover {
  background: #fdf7f1;
}

.hero-logos {
  margin-top: 48px;
}

.hero-logos p {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted-light);
  margin-bottom: 16px;
}

.logo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.logo-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.05);
}

.section--dark .card {
  background: #151726;
  border-color: #2f3345;
  box-shadow: none;
}

.card-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.card-title {
  margin: 0;
  font-size: 1.05rem;
}

.card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.section--dark .card-meta {
  color: #b6b0a9;
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  background: #f1e7ff;
  color: #6d28d9;
  flex-shrink: 0;
}

.icon-badge::before {
  content: attr(data-icon);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.tone-orange {
  background: #ffedd5;
  color: #c2410c;
}

.tone-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.tone-green {
  background: #dcfce7;
  color: #15803d;
}

.tone-rose {
  background: #ffe4e6;
  color: #be123c;
}

.tone-slate {
  background: #e2e8f0;
  color: #334155;
}

.center-cta {
  text-align: center;
  margin-top: 36px;
}

.center-cta h3 {
  margin: 24px 0 10px;
  font-size: 1.4rem;
  font-family: var(--heading);
}

.center-cta p {
  color: var(--muted-light);
  margin-top: 12px;
  font-size: 0.95rem;
}

.section--dark .center-cta p {
  color: #c9c4bb;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.card--muted {
  background: #f8f2ed;
  border-color: #eadfd4;
}

.card--highlight {
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #f97316, #7c3aed);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  position: relative;
}

.card-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f97316, #7c3aed);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.status {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.status--bad {
  background: #fee2e2;
}

.status--bad::before,
.status--bad::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #dc2626;
}

.status--bad::before {
  transform: rotate(45deg);
}

.status--bad::after {
  transform: rotate(-45deg);
}

.status--good {
  background: #dcfce7;
}

.status--good::before {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #16a34a;
  border-bottom: 2px solid #16a34a;
  transform: rotate(45deg);
}

.compare-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.compare-footer p {
  margin: 12px 0 0;
  color: var(--muted-light);
  font-size: 0.85rem;
}

.section-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-logos {
  display: flex;
  gap: 10px;
}

.mini-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.section--dark .section-note {
  border-color: rgba(255, 255, 255, 0.1);
  color: #c9c4bb;
}

.section--dark .mini-badge {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f1ebe2;
}

.carousel {
  --slides-visible: 3;
  --slide-gap: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.carousel-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding: 6px 2px 16px;
  padding: 6px 2px 16px;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: var(--slide-gap);
  align-items: stretch;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--slide-gap) * (var(--slides-visible) - 1))) / var(--slides-visible));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: inline-flex;
  gap: 4px;
  color: #f59e0b;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted-light);
}

.testimonial-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-person img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.testimonial-person strong {
  display: block;
  font-size: 0.98rem;
}

.testimonial-person span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: #fdf7f1;
}

.callout {
  background: #141420;
  color: #f5f1ea;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1px solid #2c2f3f;
  grid-column: span 2;
}

.callout::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
  right: -80px;
  top: -80px;
}

.callout-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.callout-content h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.callout-content p {
  margin: 0;
  color: #d2cbbc;
}

.cta-wrap {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--heading);
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  margin: 0 0 18px;
}

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

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #f3e8ff;
  color: #6d28d9;
  border: 1px solid #e5d5ff;
  margin: 18px 0 10px;
}

.cta-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  text-align: left;
}

.cta-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.cta-card h4 {
  margin: 10px 0 6px;
}

.inline-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3e8ff;
  color: #6d28d9;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.inline-icon::before {
  content: attr(data-icon);
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 32px;
}

.help-link:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .callout {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

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

@media (max-width: 620px) {
  .carousel {
    --slides-visible: 1;
    gap: 10px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .grid-4,
  .grid-3,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .price-divider {
    display: none;
  }

  .price-row {
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }
}
