@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/IBMPlexSans-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #F7F8FC;
  --surface: #FFFFFF;
  --surface-2: #EEF0F8;
  --dark: #141726;
  --dark-2: #1C2035;
  --text: #1A1D2E;
  --text-muted: #5A5F7A;
  --text-light: #C8CCE0;
  --accent: #5B4FE9;
  --accent-hover: #4A3FD6;
  --accent-2: #00C9A7;
  --spectrum: linear-gradient(90deg, #5B4FE9, #8B5CF6, #00C9A7);
  --border: #E2E5F0;
  --font-display: 'Sora', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --fs-display: clamp(2.4rem, 5vw, 3.6rem);
  --fs-h1: clamp(2rem, 4.2vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.1rem, 1.8vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(20, 23, 38, 0.06);
  --shadow-md: 0 8px 32px rgba(20, 23, 38, 0.1);
  --shadow-lg: 0 16px 48px rgba(20, 23, 38, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.spectrum-line {
  width: 80px;
  height: 4px;
  background: var(--spectrum);
  border-radius: 2px;
  margin-top: var(--space-sm);
}

.spectrum-line-hero {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
}

.spectrum-line-footer {
  width: 100%;
  height: 3px;
  margin: 0;
  border-radius: 0;
}

.spectrum-text {
  background: var(--spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.overline-light {
  color: var(--accent-2);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header h1,
.section-header h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  max-width: 700px;
}

.section-header-light h1,
.section-header-light h2 {
  color: var(--surface);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn.btn-accent.btn-sm {
  color: #fff;
}

.btn.btn-accent.btn-sm:hover {
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  color: var(--surface);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
  background: var(--surface);
  color: var(--dark);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: var(--fs-small);
  font-weight: 500;
}

.chip-accent {
  background: var(--accent);
  color: #fff;
}

.chip-outline {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
}

.chip-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

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

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ad-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  gap: 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--surface);
  overflow: hidden;
}

.hero-dark {
  background: var(--dark);
  color: var(--surface);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 79, 233, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 79, 233, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-sub {
  font-size: var(--fs-body);
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: var(--space-lg);
}

.hero-stats {
  display: flex;
  gap: var(--space-md);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-2);
}

.hero-stat-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-ui-mockup {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #27C93F; }

.mockup-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-question {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(91, 79, 233, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.mockup-question i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 2px;
}

.mockup-question p {
  font-size: 0.95rem;
  color: var(--surface);
  font-weight: 500;
  line-height: 1.5;
}

.mockup-analysis {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.analysis-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.analysis-bar span:first-child {
  width: 120px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--spectrum);
  border-radius: 4px;
}

.analysis-feedback {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 201, 167, 0.2);
}

.analysis-feedback i {
  color: var(--accent-2);
  margin-top: 2px;
}

.analysis-feedback p {
  font-size: 0.85rem;
  color: var(--surface);
  line-height: 1.5;
}

.problems {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 4px solid transparent;
  border-image: var(--spectrum) 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--accent);
}

.problem-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: 14px;
}

.problem-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.advantages {
  padding: var(--space-xl) 0;
  background: var(--dark);
}

.advantages-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advantage-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-item:last-child {
  border-bottom: none;
}

.advantage-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantage-body h3 {
  font-size: var(--fs-h3);
  color: var(--surface);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantage-body h3 i {
  color: var(--accent-2);
  font-size: 1rem;
}

.advantage-body p {
  color: var(--text-light);
  font-size: var(--fs-small);
  line-height: 1.7;
  max-width: 640px;
}

.included {
  padding: var(--space-xl) 0;
  background: var(--surface);
  position: relative;
}

.included::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(91, 79, 233, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.included-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: start;
  position: relative;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.included-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  transition: box-shadow 0.3s;
}

.included-item:hover {
  box-shadow: var(--shadow-sm);
}

.included-item > i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.included-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.included-item p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.included-visual {
  position: relative;
}

.included-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.included-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--dark);
  color: var(--surface);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.included-badge-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.included-badge-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.program {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.program-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.program-phase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.phase-label {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phase-num {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.phase-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.phase-weeks {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.phase-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  border-image: var(--spectrum) 1;
  border-image-slice: 1 0 0 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.module-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--surface-2);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.module-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.module-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.module-meta {
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 600;
}

.audience {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audience-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: var(--radius-sm);
  color: var(--accent-2);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.audience-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-tags span {
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.formats {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

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

.format-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.format-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.format-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.format-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.format-chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

.results {
  padding: var(--space-xl) 0;
  background: var(--dark);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--space-md);
}

.result-card {
  background: var(--dark-2);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.result-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.result-label {
  font-size: var(--fs-small);
  color: var(--text-light);
  line-height: 1.5;
}

.results-note {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: italic;
}

.blog {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

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

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-body {
  padding: 22px;
}

.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--surface-2);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.blog-link:hover {
  gap: 10px;
}

.faq-form {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.faq-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.faq-col h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.faq-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list-centered {
  max-width: 800px;
  margin: var(--space-md) auto 0;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  border: 1px solid var(--border);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 12px;
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid transparent;
  border-image: var(--spectrum) 1;
  border-image-slice: 1 0 0 0;
}

.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-sub {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background: var(--bg);
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 79, 233, 0.1);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}

.radio-label:hover {
  border-color: var(--accent);
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.radio-label input[type="radio"]:checked + span {
  color: var(--accent);
  font-weight: 600;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-check label {
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.form-check a {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  background: var(--dark);
  color: var(--text-light);
  margin-top: auto;
}

.footer-inner {
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: var(--space-md);
}

.logo-footer .logo-name {
  color: var(--surface);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-mid {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact p {
  font-size: var(--fs-small);
  margin-bottom: 4px;
}

.footer-legal-name {
  font-weight: 600;
  color: var(--surface);
}

.footer-bottom {
  padding-top: var(--space-md);
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: var(--space-sm);
}

.footer-copy {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}

.last-updated {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 24px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 18px 24px;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-callout {
  background: var(--surface-2);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

.legal-callout p {
  margin: 0;
  color: var(--text);
}

.legal-date {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}

.legal-section-alt {
  background: var(--surface);
  padding: 32px 20px;
  margin: 32px -20px;
  border-radius: var(--radius-md);
}

.thanks-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 0;
  background: var(--bg);
  position: relative;
}

.thanks-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(91, 79, 233, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.thanks-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 650px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid transparent;
  border-image: var(--spectrum) 1;
  border-image-slice: 1 0 0 0;
  position: relative;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--accent-2);
}

.thanks-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.thanks-card .thanks-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.thanks-steps {
  text-align: left;
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thanks-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.thanks-step-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.thanks-step p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}

.thanks-privacy {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: var(--space-md) 0;
  text-align: left;
  border: 1px solid var(--border);
}

.thanks-privacy h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.thanks-privacy h4 i {
  color: var(--accent);
}

.thanks-privacy p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.thanks-contact {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.blog-article {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.blog-article-header {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.blog-article-header .blog-tag {
  margin-bottom: var(--space-sm);
}

.blog-article-header h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.blog-article-meta {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.blog-article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--text);
}

.blog-article-content h2 {
  font-size: var(--fs-h2);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--text);
}

.blog-article-content p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

.blog-article-content ul {
  margin-bottom: var(--space-md);
  padding-left: 24px;
  color: var(--text-muted);
}

.blog-article-content li {
  margin-bottom: 8px;
}

.blog-article-cta {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--surface);
}

.blog-article-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.blog-article-cta p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.services-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--surface);
}

.services-hero-sub {
  font-size: var(--fs-body);
  color: var(--text-muted);
  max-width: 640px;
  margin-top: var(--space-sm);
  line-height: 1.7;
}

.pricing {
  padding: 0 0 var(--space-xl);
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  background: var(--dark);
  color: var(--surface);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card-header {
  margin-bottom: 20px;
}

.pricing-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-tagline {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.pricing-card-featured .pricing-tagline {
  color: var(--text-light);
}

.pricing-price {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.pricing-card-featured .pricing-price {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-note {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.pricing-card-featured .pricing-note {
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-small);
  line-height: 1.5;
}

.pricing-features li i {
  color: var(--accent-2);
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-feature-disabled {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-feature-disabled i {
  color: var(--text-muted) !important;
}

.comparison {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 600px;
}

.comparison-table thead {
  background: var(--dark);
  color: var(--surface);
}

.comparison-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table th span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent-2);
  margin-top: 2px;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-small);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.comparison-table td i {
  color: var(--accent-2);
}

.table-no {
  color: var(--text-muted);
  opacity: 0.4;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.price-transparency {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.transparency-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 4px solid transparent;
  border-image: var(--spectrum) 1;
}

.transparency-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--accent);
}

.transparency-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.transparency-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.payment-methods {
  padding: var(--space-xl) 0;
  background: var(--dark);
  color: var(--surface);
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.payment-info h2 {
  color: var(--surface);
}

.payment-info p {
  color: var(--text-light);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-top: var(--space-sm);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-method {
  background: var(--dark-2);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-method > i {
  font-size: 1.4rem;
  color: var(--accent-2);
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.payment-method h4 {
  font-size: 0.95rem;
  color: var(--surface);
  margin-bottom: 4px;
}

.payment-method p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.pricing-faq {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.services-cta {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}

.services-cta-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--surface);
}

.services-cta-card h2 {
  font-size: var(--fs-h2);
  margin-bottom: 12px;
  color: var(--surface);
}

.services-cta-card p {
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(20, 23, 38, 0.12);
  z-index: 1000;
  padding: 20px 0;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-text h4 i {
  color: var(--accent);
}

.cookie-banner-text p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-config-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cookie-config-panel.visible {
  display: flex;
}

.cookie-config-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.cookie-config-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.cookie-config-option strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.cookie-config-option span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-config-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .included-layout {
    grid-template-columns: 1fr;
  }

  .program-phase {
    grid-template-columns: 1fr;
  }

  .phase-label {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .phase-modules {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .faq-form-inner {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

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

  .payment-layout {
    grid-template-columns: 1fr;
  }
}

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

  .header-actions .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    padding: var(--space-lg) 0;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .phase-modules {
    grid-template-columns: 1fr;
  }

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

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

  .advantage-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .form-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
  }

  .radio-label {
    width: 100%;
  }

  .thanks-card {
    padding: 32px 24px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .services-cta-card {
    padding: 32px 24px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-inner > *,
  .included-layout > *,
  .faq-form-inner > *,
  .payment-layout > *,
  .blog-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .comparison-table-wrap {
    overflow-x: visible;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
  }

  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
  }

  .comparison-table td:first-child {
    display: block;
    font-weight: 600;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
  }

  .comparison-table td:nth-child(2)::before {
    content: "Esencial";
    font-weight: 500;
    color: var(--text-muted);
  }

  .comparison-table td:nth-child(3)::before {
    content: "Profesional";
    font-weight: 500;
    color: var(--text-muted);
  }

  .comparison-table td:nth-child(4)::before {
    content: "Personalizado";
    font-weight: 500;
    color: var(--text-muted);
  }

  .comparison-table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .ad-badge {
    word-break: break-all;
  }

  .logo a,
  .logo {
    flex-direction: column;
  }

  .logo-name {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col,
  .footer-links,
  .footer-contact {
    word-break: break-all;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .form-card,
  .thanks-card,
  .services-cta-card {
    padding: 20px 16px;
  }

  .legal-content {
    padding: 24px 12px;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}