:root {
  --background: hsl(220 20% 6%);
  --foreground: hsl(0 0% 98%);
  --primary: hsl(32 95% 55%);
  --primary-foreground: hsl(220 20% 6%);
  --success: hsl(142 71% 45%);
  --destructive: hsl(0 72% 51%);
  --muted-foreground: hsl(220 10% 55%);
  --border: hsl(220 15% 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
}

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

.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13, 16, 26, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.logo-text {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.desktop-nav,
.desktop-cta {
  display: none;
}

.desktop-nav a,
.mobile-link {
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-link:hover {
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-cta {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-cta:hover {
  filter: brightness(1.06);
}

.btn-outline {
  border-color: var(--border);
  color: var(--foreground);
  background: transparent;
}

.mobile-menu-toggle {
  background: transparent;
  border: 0;
  color: var(--foreground);
  font-size: 24px;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  animation: fade-in 0.2s ease;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
}

.hidden {
  display: none;
}

.main-placeholder {
  padding-top: 92px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(220 20% 8%) 0%,
    hsl(220 20% 6%) 70%,
    hsla(220 15% 18% / 0.2) 100%
  );
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  aspect-ratio: 1 / 1;
  background: hsla(32 95% 55% / 0.12);
  border-radius: 999px;
  filter: blur(60px);
}

.hero-content-wrap {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: hsla(32 95% 55% / 0.1);
  border: 1px solid hsla(32 95% 55% / 0.2);
  margin-bottom: 32px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.header-lang-switcher {
  display: none;
  align-items: center;
  gap: 8px;
}

.language-label {
  font-size: 13px;
  color: var(--muted-foreground);
}

.language-select {
  border: 1px solid var(--border);
  background: hsla(220 18% 10% / 0.9);
  color: var(--foreground);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  outline: none;
}

.language-select:focus {
  border-color: hsla(32 95% 55% / 0.5);
}

.mobile-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(36px, 8vw, 84px);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
}

.gradient-text {
  display: block;
  background-image: linear-gradient(135deg, hsl(32 95% 55%) 0%, hsl(25 95% 50%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 auto 40px;
  max-width: 780px;
  color: var(--muted-foreground);
  font-size: clamp(18px, 2.7vw, 24px);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
}

.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 18px;
  border-radius: 12px;
  gap: 8px;
}

.btn-hero svg {
  width: 20px;
  height: 20px;
}

.btn-hero:hover {
  filter: brightness(1.06);
}

.btn-hero-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 12px;
  gap: 8px;
}

.btn-hero-outline svg {
  width: 20px;
  height: 20px;
}

.btn-hero-outline:hover {
  border-color: hsla(220 10% 55% / 0.6);
  background: hsla(220 15% 18% / 0.4);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}

.hero-scroll-shell {
  width: 24px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid hsla(220 10% 55% / 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: hsla(220 10% 55% / 0.5);
  animation: pulse 1.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  animation: fade-in 0.5s ease forwards;
}

.problem-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.problem-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.problem-content-wrap {
  position: relative;
  z-index: 1;
}

.problem-heading {
  text-align: center;
  margin-bottom: 64px;
}

.problem-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: hsla(0 72% 51% / 0.1);
  border: 1px solid hsla(0 72% 51% / 0.25);
  color: var(--destructive);
  margin-bottom: 16px;
}

.problem-badge svg {
  width: 16px;
  height: 16px;
}

.problem-badge span {
  font-size: 14px;
  font-weight: 600;
}

.problem-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.problem-heading h2 span {
  color: var(--destructive);
}

.problem-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

.problem-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid hsla(0 72% 51% / 0.2);
  background: hsla(0 72% 51% / 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.problem-card:hover {
  border-color: hsla(0 72% 51% / 0.4);
  transform: translateY(-1px);
}

.problem-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: hsla(0 72% 51% / 0.2);
  color: var(--destructive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.problem-card h3 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 23px;
}

.problem-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.problem-monologue {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
}

.problem-monologue p {
  margin: 0;
  text-align: center;
}

.problem-monologue p:first-child {
  font-size: 24px;
  font-style: italic;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.problem-monologue-cta {
  margin-top: 20px !important;
  font-weight: 600;
}

.problem-monologue-cta span {
  color: var(--primary);
}

.gif-icon-wrap.gif-danger {
  background: hsla(0 72% 51% / 0.2);
}

.gif-icon-wrap.gif-danger svg {
  color: var(--destructive);
}

.social-proof-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.social-proof-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(220 15% 18% / 0.2) 0%,
    hsl(220 20% 6%) 50%,
    hsl(220 20% 6%) 100%
  );
}

.social-proof-wrap {
  position: relative;
  z-index: 1;
}

.social-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}

.social-stat-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  background: hsla(220 18% 10% / 0.5);
  border: 1px solid hsla(220 15% 18% / 0.5);
  backdrop-filter: blur(6px);
}

.social-stat-icon {
  color: var(--primary);
  margin-bottom: 12px;
}

.social-stat-icon svg {
  width: 24px;
  height: 24px;
}

.social-stat-value {
  margin-bottom: 4px;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.social-stat-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

.social-proof-heading {
  text-align: center;
  margin-bottom: 48px;
}

.social-proof-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.15;
}

.social-proof-heading p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted-foreground);
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial-card {
  position: relative;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid hsla(220 15% 18% / 0.6);
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  transition: border-color 0.2s ease;
}

.testimonial-card:hover {
  border-color: hsla(32 95% 55% / 0.3);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  color: hsla(32 95% 55% / 0.2);
}

.stars-row {
  margin-bottom: 14px;
  color: var(--primary);
  letter-spacing: 1px;
  font-size: 14px;
}

.testimonial-text {
  margin: 0 0 18px;
  color: hsla(0 0% 98% / 0.9);
  font-size: 14px;
  line-height: 1.65;
  padding-right: 24px;
}

.testimonial-highlight {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 16px;
  background: hsla(142 71% 45% / 0.15);
  border: 1px solid hsla(142 71% 45% / 0.3);
  color: hsl(142 71% 55%);
  font-size: 12px;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid hsla(220 15% 18% / 0.4);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(32 95% 55% / 0.15);
  border: 1px solid hsla(32 95% 55% / 0.25);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted-foreground);
}

.social-platforms {
  text-align: center;
}

.social-platforms p {
  margin: 0 0 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-foreground);
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.platform-badges span {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid hsla(220 15% 18% / 0.4);
  background: hsla(220 15% 15% / 0.6);
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 600;
}

.avatars-section {
  padding: 96px 0;
  background: hsla(220 15% 18% / 0.3);
}

.avatars-heading {
  text-align: center;
  margin-bottom: 64px;
}

.avatars-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.avatars-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

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

.avatar-card {
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 48px -12px rgba(0, 0, 0, 0.5);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.avatar-card:hover {
  border-color: hsla(32 95% 55% / 0.35);
  transform: translateY(-2px);
}

.avatar-card-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.avatar-subtitle {
  margin: 8px 0 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

.avatar-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsla(32 95% 55% / 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background-color 0.2s ease;
}

.avatar-card:hover .avatar-icon-wrap {
  background: hsla(32 95% 55% / 0.2);
}

.avatar-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.avatar-card-body {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.avatar-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: hsla(0 0% 98% / 0.82);
}

.avatar-fear {
  padding: 12px;
  border-radius: 10px;
  background: hsla(0 72% 51% / 0.1);
  border: 1px solid hsla(0 72% 51% / 0.2);
}

.avatar-fear p {
  margin: 0;
  color: var(--destructive);
  font-size: 14px;
  font-weight: 500;
}

.avatar-want {
  margin: 0;
  font-size: 14px;
  color: var(--muted-foreground);
  font-style: italic;
}

.mechanism-section {
  padding: 96px 0;
  background: hsla(220 15% 18% / 0.3);
}

.mechanism-heading {
  text-align: center;
  margin-bottom: 64px;
}

.mechanism-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: hsla(32 95% 55% / 0.1);
  border: 1px solid hsla(32 95% 55% / 0.2);
  margin-bottom: 16px;
  color: var(--primary);
}

.mechanism-badge svg {
  width: 16px;
  height: 16px;
}

.mechanism-badge span {
  font-size: 14px;
  font-weight: 500;
}

.mechanism-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.mechanism-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

.mechanism-cards {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}

.mechanism-card {
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 48px -12px rgba(0, 0, 0, 0.5);
}

.mechanism-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.mechanism-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.mechanism-emoji-wrap,
.mechanism-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mechanism-emoji-wrap {
  background: hsla(0 72% 51% / 0.2);
}

.mechanism-emoji-wrap span {
  font-size: 24px;
}

.mechanism-icon-wrap {
  background: hsla(142 71% 45% / 0.2);
}

.mechanism-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.stop-points-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.stop-points-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.stop-points-title h3 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 34px;
  line-height: 1.2;
}

.stop-points-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--destructive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stop-points-badge svg {
  width: 20px;
  height: 20px;
  color: var(--foreground);
}

.stop-points-list {
  display: grid;
  gap: 16px;
}

.stop-point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  transition: border-color 0.2s ease;
}

.stop-point-item:hover {
  border-color: hsla(32 95% 55% / 0.3);
}

.stop-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: hsla(0 72% 51% / 0.1);
  color: var(--destructive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.stop-point-item p {
  margin: 0;
  color: var(--foreground);
  font-weight: 500;
  line-height: 1.6;
}

.gif-icon-wrap.gif-primary {
  background: hsla(32 95% 55% / 0.2);
}

.gif-icon-wrap.gif-primary svg {
  color: var(--primary);
}

.modules-section {
  padding: 96px 0;
}

.modules-heading {
  text-align: center;
  margin-bottom: 64px;
}

.modules-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.modules-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

.modules-timeline {
  position: relative;
  display: grid;
  gap: 48px;
}

.timeline-line {
  display: none;
}

.module-phase {
  position: relative;
}

.module-marker {
  display: none;
}

.module-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  box-shadow: 0 12px 48px -12px rgba(0, 0, 0, 0.5);
  padding: 24px;
}

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

.module-mobile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsla(32 95% 55% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-mobile-icon svg {
  width: 24px;
  height: 24px;
}

.module-timeline-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.module-head h3 {
  margin: 4px 0 0;
  font-size: 32px;
  line-height: 1.15;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.module-items {
  display: grid;
  gap: 12px;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: hsla(220 15% 18% / 0.5);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.module-item:hover {
  background: hsla(220 15% 18% / 0.85);
  border-color: hsla(32 95% 55% / 0.25);
}

.module-check {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: inset 0 0 0 3px hsl(220 20% 6%);
  flex-shrink: 0;
}

.module-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.module-item span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.modules-newsletter {
  max-width: 840px;
  margin: 64px auto 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  box-shadow: 0 0 60px -12px hsla(32 95% 55% / 0.3);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsla(32 95% 55% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-icon svg {
  width: 28px;
  height: 28px;
}

.modules-newsletter h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.modules-newsletter p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.case-studies-section {
  padding: 96px 0;
  background: hsla(220 15% 18% / 0.3);
}

.case-heading {
  text-align: center;
  margin-bottom: 64px;
}

.case-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.case-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

.case-list {
  display: grid;
  gap: 32px;
}

.case-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  box-shadow: 0 12px 48px -12px rgba(0, 0, 0, 0.5);
}

.case-card-head {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-card-head h3 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 30px;
  line-height: 1.2;
}

.case-type {
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  background: hsla(32 95% 55% / 0.1);
  border-radius: 999px;
  padding: 6px 12px;
}

.case-card-body {
  padding: 24px;
}

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

.case-col-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--foreground);
}

.case-col-title h4 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.case-col-title svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.case-col-title.danger,
.case-col-title.danger svg {
  color: var(--destructive);
}

.case-col-title.success,
.case-col-title.success svg {
  color: var(--success);
}

.case-text {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.65;
}

.case-after {
  color: var(--foreground);
}

.case-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.case-bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.55;
}

.case-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.danger-bullets li::before {
  background: hsla(0 72% 51% / 0.6);
}

.success-bullets li {
  padding-left: 22px;
}

.success-bullets li::before {
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: inset 0 0 0 2.5px hsl(220 20% 6%);
}

.gif-holder-wrap {
  margin-top: 64px;
}

.gif-holder {
  max-width: 840px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: 2px dashed hsla(220 10% 55% / 0.5);
  background: hsl(220 18% 8%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.gif-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsla(142 71% 45% / 0.2);
}

.gif-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--success);
}

.gif-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
}

.gif-subtitle {
  margin: 0;
  font-size: 12px;
  color: hsla(220 10% 55% / 0.7);
}

.value-stack-section {
  padding: 96px 0;
}

.value-stack-heading {
  text-align: center;
  margin-bottom: 64px;
}

.value-stack-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.value-stack-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

.value-stack-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  box-shadow: 0 12px 48px -12px rgba(0, 0, 0, 0.5);
  padding: 24px;
}

.value-stack-list {
  display: grid;
}

.value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.value-row:last-child {
  border-bottom: 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.value-item span:last-child {
  font-weight: 600;
}

.value-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: inset 0 0 0 3px hsl(220 20% 6%);
  flex-shrink: 0;
}

.value-price {
  color: var(--muted-foreground);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 14px;
  white-space: nowrap;
}

.value-summary {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 14px;
}

.value-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.value-summary-row span {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.value-old-price {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 34px;
  color: var(--destructive);
  text-decoration: line-through;
}

.value-new-price {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 42px;
  background-image: linear-gradient(135deg, hsl(32 95% 55%) 0%, hsl(25 95% 50%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-section {
  padding: 96px 0;
  background: hsla(220 15% 18% / 0.3);
}

.pricing-heading {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.pricing-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  box-shadow: 0 12px 48px -12px rgba(0, 0, 0, 0.5);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: hsla(32 95% 55% / 0.45);
}

.pricing-popular {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px 16px 0 0;
}

.pricing-popular svg {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  margin-right: 4px;
}

.pricing-head {
  margin-bottom: 18px;
}

.pricing-card-featured .pricing-head {
  padding-top: 28px;
}

.pricing-head h3 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.15;
}

.pricing-desc {
  margin: 8px 0 0;
  color: var(--muted-foreground);
}

.pricing-price-wrap {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  color: var(--muted-foreground);
}

.price-sm {
  font-size: 36px;
}

.pricing-annual {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.pricing-savings {
  margin-left: 8px;
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: inset 0 0 0 3px hsl(220 20% 6%);
}

.plan-btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 12px;
  gap: 8px;
}

.plan-btn svg {
  width: 16px;
  height: 16px;
}

.plan-btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
}

.plan-btn-outline:hover {
  border-color: hsla(32 95% 55% / 0.35);
  background: hsla(220 15% 18% / 0.45);
}

.plan-btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
}

.plan-btn-hero:hover {
  filter: brightness(1.06);
}

.pricing-trust {
  margin-top: 48px;
  text-align: center;
}

.pricing-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
}

.pricing-trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.pricing-trust-badge span {
  font-size: 14px;
  color: var(--muted-foreground);
}

.faq-section {
  padding: 96px 0;
}

.faq-heading {
  text-align: center;
  margin-bottom: 64px;
}

.faq-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.faq-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted-foreground);
  font-size: 20px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(180deg, hsl(220 18% 12%) 0%, hsl(220 18% 10%) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 24px;
  transition: border-color 0.2s ease;
}

.faq-item.is-open {
  border-color: hsla(32 95% 55% / 0.3);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
}

.faq-plus {
  font-size: 26px;
  line-height: 1;
  color: var(--muted-foreground);
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-content {
  color: var(--muted-foreground);
  font-size: 16px;
  line-height: 1.7;
  padding: 0 0 20px;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: hsla(220 15% 18% / 0.3);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(800px, 96vw);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: hsla(32 95% 55% / 0.05);
  filter: blur(60px);
}

.final-cta-content-wrap {
  position: relative;
  z-index: 1;
}

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

.final-note {
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 48px;
}

.final-note p {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--foreground);
}

.final-note span {
  display: inline;
  margin-left: 6px;
}

.final-note-danger {
  background: hsla(0 72% 51% / 0.1);
  border: 1px solid hsla(0 72% 51% / 0.2);
}

.final-note-danger span {
  color: var(--destructive);
}

.final-note-success {
  background: hsla(142 71% 45% / 0.1);
  border: 1px solid hsla(142 71% 45% / 0.2);
}

.final-note-success span {
  color: var(--success);
}

.final-cta-content h2 {
  margin: 0 0 24px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
}

.final-cta-subtitle {
  margin: 0 auto 40px;
  max-width: 740px;
  font-size: 20px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-cta-large {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 12px;
  padding: 12px 20px;
  gap: 8px;
}

.btn-cta-large svg {
  width: 20px;
  height: 20px;
}

.btn-cta-large:hover {
  filter: brightness(1.06);
}

.final-cta-guarantee {
  margin: 32px 0 0;
  font-size: 14px;
  color: var(--muted-foreground);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.footer-copy {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
  text-align: center;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 768px) {
  .header-row {
    min-height: 80px;
  }

  .desktop-nav {
    display: inline-flex;
    align-items: center;
    gap: 32px;
  }

  .header-lang-switcher {
    display: inline-flex;
  }

  .desktop-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

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

  .section-container {
    padding: 0 24px;
  }

  .footer-row {
    flex-direction: row;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-cta {
    flex-direction: row;
    gap: 16px;
  }

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

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

  .social-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

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

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

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

  .pricing-card-featured {
    margin-top: -16px;
    margin-bottom: 16px;
  }

  .value-row {
    padding: 14px 0;
  }

  .modules-timeline {
    gap: 64px;
  }

  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, var(--primary), hsl(220 15% 25%), var(--success));
  }

  .module-marker {
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 2px solid hsla(32 95% 55% / 0.4);
    background: hsl(220 18% 10%);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .module-marker svg {
    width: 32px;
    height: 32px;
  }

  .module-card {
    width: calc(50% - 48px);
  }

  .module-phase:nth-of-type(odd) .module-card {
    margin-right: auto;
  }

  .module-phase:nth-of-type(even) .module-card {
    margin-left: auto;
  }

  .module-mobile-icon {
    display: none;
  }

  .case-card-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .final-cta-actions {
    flex-direction: row;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .case-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
