:root {
  --bg-color: #f4f6fb;
  --bg-soft: #eef2f7;
  --text-main: #09090b;
  --text-dim: rgba(9, 9, 11, 0.62);
  --primary: #7C3AED;
  --primary-dark: #5b21b6;
  --primary-glow: rgba(124, 58, 237, 0.22);
  --secondary: #10B981;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --surface-border: rgba(9, 9, 11, 0.08);
  --dark: #050505;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.10);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(16, 185, 129, 0.18), transparent 28rem),
    radial-gradient(circle at 16% 8%, rgba(124, 58, 237, 0.12), transparent 24rem),
    linear-gradient(180deg, #f7f8fc 0%, var(--bg-color) 44%, #f9fafb 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  letter-spacing: 0;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  margin: 16px auto 0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: var(--transition);
}

.desktop-nav a:hover {
  background: rgba(9, 9, 11, 0.05);
  color: var(--text-main);
}

.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 12px 24px var(--primary-glow);
}

.language-switch,
.mobile-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch a,
.mobile-language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 32px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch a.active,
.mobile-language-switch a.active {
  background: var(--dark);
  color: #fff;
}

.mobile-language-switch {
  display: none;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.section-pad {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 94px 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 64px;
  padding-top: 64px;
}

.eyebrow,
.section-kicker,
.plan-type {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-headings);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 6.6vw, 5.65rem);
  line-height: 0.92;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.32rem;
}

p {
  line-height: 1.65;
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--text-dim);
  font-size: 1.12rem;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 36px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--surface-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: rgba(124, 58, 237, 0.32);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-dim);
  font-size: 0.88rem;
}

.hero-proof strong {
  color: var(--text-main);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  background:
    radial-gradient(circle at 64% 24%, rgba(16, 185, 129, 0.32), transparent 12rem),
    radial-gradient(circle at 35% 70%, rgba(124, 58, 237, 0.18), transparent 14rem),
    rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(9, 9, 11, 0.12);
  border-radius: 26px;
}

.profile-card,
.upload-panel,
.dark-card,
.floating-ticket {
  position: absolute;
  border: 1px solid var(--surface-border);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.14);
}

.profile-card {
  top: 46px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-headings);
  font-weight: 800;
}

.profile-card span,
.floating-ticket span,
.floating-ticket small,
.dark-card span,
.upload-panel small {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.upload-panel {
  top: 150px;
  left: 76px;
  right: 50px;
  min-height: 150px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.cloud-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
}

.upload-panel p {
  margin: 0 0 4px;
  font-weight: 800;
}

.dark-card {
  left: 42px;
  bottom: 74px;
  width: 280px;
  padding: 22px;
  border-radius: 22px;
  background: var(--dark);
  color: #fff;
}

.dark-card strong {
  display: block;
  margin: 8px 0 20px;
  font-family: var(--font-headings);
  font-size: 1.28rem;
}

.progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.floating-ticket {
  right: 32px;
  bottom: 40px;
  width: 220px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(4deg);
}

.floating-ticket strong {
  display: block;
  margin: 8px 0;
}

.trusted {
  padding-top: 24px;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logo-scroll 28s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-slot {
  display: grid;
  place-items: center;
  flex: 0 0 190px;
  height: 86px;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(234, 234, 234, 0.88), rgba(255, 255, 255, 0.44)),
    repeating-linear-gradient(45deg, rgba(9, 9, 11, 0.04) 0 8px, transparent 8px 16px);
  color: rgba(9, 9, 11, 0.38);
  font-family: var(--font-headings);
  font-size: 0.92rem;
  font-weight: 800;
  overflow: hidden;
  position: relative;
}

.logo-slot img {
  display: none;
  max-width: 72%;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.76;
}

.logo-slot img[src]:not([src=""]) {
  display: block;
}

.logo-slot img[src]:not([src=""]) + span {
  display: none;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--text-dim);
  font-size: 1.06rem;
}

.narrow {
  max-width: 760px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.steps article,
.price-card,
.testimonial-placeholder,
.faq details {
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.06);
}

.feature-card {
  padding: 24px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
}

.feature-card p,
.steps p,
.price-card li,
.testimonial-placeholder p,
.faq p,
.site-footer p,
.cta p {
  color: var(--text-dim);
}

.process {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1120px) / 2));
  padding-right: max(20px, calc((100% - 1120px) / 2));
  background: rgba(255, 255, 255, 0.42);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  padding: 28px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
}

.include-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.include-list span {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.include-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--secondary);
}

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

.price-card {
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.featured-plan {
  background:
    radial-gradient(circle at 80% 12%, rgba(16, 185, 129, 0.24), transparent 13rem),
    var(--dark);
  color: #fff;
}

.featured-plan .plan-type {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.featured-plan li,
.featured-plan .duration {
  color: rgba(255, 255, 255, 0.7);
}

.price {
  margin-top: 18px;
  font-family: var(--font-headings);
  font-size: 3.4rem;
  font-weight: 800;
}

.duration {
  margin: 4px 0 24px;
}

.price-card ul {
  display: grid;
  gap: 14px;
  min-height: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
}

.full {
  width: 100%;
  margin-top: auto;
}

.testimonial-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 26px;
}

.testimonial-placeholder span {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.comments-track-container {
  width: 100%;
  overflow: hidden;
}

.comments-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.comments-track::-webkit-scrollbar {
  display: none;
}

.comment-card {
  flex: 0 0 420px;
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.06);
  scroll-snap-align: start;
  cursor: pointer;
  transition: var(--transition);
}

.comment-card:hover {
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 18px 60px rgba(124, 58, 237, 0.13);
  transform: translateY(-4px);
}

.comment-author {
  margin: 0;
  color: var(--text-main);
  font-size: 1.12rem;
}

.comment-role {
  margin: 0;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.comment-tags,
.cm-tags,
.bs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
}

.comment-tag {
  padding: 5px 10px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
}

.comment-text {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.comment-read-more {
  margin-top: auto;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.comment-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
}

.comment-modal-overlay.active {
  display: block;
}

.comment-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  width: min(620px, calc(100vw - 32px));
  max-height: 82vh;
  padding: 34px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 12%, rgba(16, 185, 129, 0.18), transparent 14rem),
    var(--dark);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translate(-50%, -46%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.comment-modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.cm-close,
.bs-close {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}

.cm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
}

.cm-content {
  display: grid;
  gap: 10px;
}

.cm-content h4,
.bs-author-info h4 {
  color: inherit;
  font-size: 1.4rem;
}

.cm-content p#cm-author-role,
.bs-author-info p {
  margin: 0;
  color: var(--secondary);
  font-weight: 800;
}

.cm-text,
.bs-text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 5, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2001;
  max-height: 84vh;
  padding: 14px 22px 28px;
  border-radius: 28px 28px 0 0;
  background: var(--dark);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.bottom-sheet.active {
  transform: translateY(0);
}

.bs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bs-handle {
  width: 46px;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.bs-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
}

.bs-content {
  overflow-y: auto;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 54px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(124, 58, 237, 0.24), transparent 22rem),
    var(--dark);
  color: #fff;
}

.cta h2 {
  max-width: 850px;
}

.cta .eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 24px;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
}

.faq p {
  margin: 14px 0 0;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--surface-border);
}

.site-footer p {
  margin: 14px 0 0;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .language-switch {
    margin-left: auto;
  }

  .site-header {
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--surface-border);
    border-radius: 50%;
    background: #fff;
  }

  .menu-toggle span {
    width: 17px;
    height: 2px;
    border-radius: 99px;
    background: var(--text-main);
  }

  .mobile-nav {
    position: fixed;
    top: 86px;
    left: 20px;
    right: 20px;
    z-index: 19;
    padding: 14px;
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .mobile-nav a {
    padding: 14px 12px;
    border-radius: 14px;
    color: var(--text-dim);
    font-weight: 700;
  }

  .mobile-language-switch {
    display: inline-flex;
    width: fit-content;
    margin: 8px 0 4px;
  }

  .mobile-nav .mobile-language-switch a {
    padding: 0;
    color: var(--text-dim);
  }

  .mobile-nav .mobile-language-switch a.active {
    color: #fff;
  }

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

  .hero {
    gap: 40px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .benefit-grid,
  .include-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .featured-plan {
    transform: none;
  }

  .cta {
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .section-pad {
    width: min(100% - 28px, 1120px);
    padding: 68px 0;
  }

  .site-header {
    width: calc(100% - 24px);
    top: 10px;
    margin-top: 10px;
  }

  .brand {
    font-size: 0.96rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-actions,
  .footer-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    border-radius: 26px;
  }

  .profile-card {
    left: 18px;
    top: 26px;
  }

  .upload-panel {
    left: 18px;
    right: 18px;
    top: 124px;
    padding: 22px;
  }

  .dark-card {
    left: 18px;
    bottom: 70px;
    width: calc(100% - 96px);
  }

  .floating-ticket {
    right: 18px;
    bottom: 22px;
    width: 178px;
  }

  .benefit-grid,
  .include-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .logo-slot {
    flex-basis: 160px;
    height: 76px;
  }

  .price-card {
    padding: 24px;
  }

  .price {
    font-size: 2.8rem;
  }

  .price-card ul {
    min-height: auto;
  }

  .cta {
    width: min(100% - 28px, 1120px);
    padding: 28px;
  }

  .site-footer {
    width: min(100% - 28px, 1120px);
    flex-direction: column;
    align-items: flex-start;
  }
}
