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

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

:root {
  --bg: #0f1117;
  --surface: #f7f5f0;
  --surface-2: #1a1d26;
  --surface-3: #232733;
  --text: #1a1d26;
  --text-light: #f0ede8;
  --text-muted: #6b7280;
  --text-muted-light: #9ca3af;
  --accent: #e8552d;
  --accent-hover: #d4441f;
  --accent-2: #1a9e8f;
  --border: #2d3242;
  --border-light: #e2ddd5;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-display: clamp(2.4rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.1rem, 1.8vw, 1.4rem);
  --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;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
}

* {
  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);
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-light {
  background: var(--surface);
  padding-top: 0;
}

.section-dark {
  background: var(--bg);
  color: var(--text-light);
}

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

.section-dark h2 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--text-muted-light);
}

.section-accent {
  background: var(--surface-2);
  color: var(--text-light);
}

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

.section-accent h2 {
  color: var(--text-light);
}

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

.section-head-center {
  text-align: center;
}

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

.prompt-prefix {
  color: var(--accent-2);
  font-weight: 800;
  margin-right: 0.3em;
}

.section-head h2 {
  font-size: var(--fs-h2);
  max-width: 700px;
}

.section-head-center h2 {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-body);
  padding: 0.8em 1.8em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
}

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

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 85, 45, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.btn-lg {
  padding: 1em 2.2em;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.btn-full {
  width: 100%;
}

.btn-ghost.btn-full {
  color: var(--text);
}

.btn-ghost.btn-full:hover {
  color: var(--accent-2);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

html.show-cookie-banner .cookie-overlay {
  display: flex;
}

.cookie-modal {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cookie-icon {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.cookie-modal h3 {
  font-size: var(--fs-h3);
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.cookie-modal p {
  font-size: var(--fs-small);
  color: var(--text-muted-light);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.cookie-reject {
  color: var(--text-muted-light);
  border-color: var(--border);
}

.cookie-reject:hover {
  color: var(--text-light);
  border-color: var(--text-muted-light);
}

.cookie-link {
  font-size: 0.8rem;
  color: var(--accent-2);
  text-decoration: underline;
}

.cookie-link:hover {
  color: var(--text-light);
}

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

.ad-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.6em;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted-light);
}

.header-nav {
  display: flex;
  gap: var(--space-sm);
  margin-left: auto;
}

.header-nav a {
  font-size: var(--fs-small);
  color: var(--text-muted-light);
  padding: 0.4em 0;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  margin-left: var(--space-sm);
  padding: 0.6em 1.4em;
  font-size: var(--fs-small);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

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

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-md);
  gap: var(--space-sm);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a {
  color: var(--text-muted-light);
  font-size: var(--fs-body);
  padding: 0.5em 0;
}

.mobile-nav a:hover {
  color: var(--text-light);
}

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

.hero {
  background: var(--bg);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 50, 66, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 50, 66, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner > * {
  min-width: 0;
  max-width: 100%;
}

.hero-overline {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

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

.accent-word {
  color: var(--accent);
}

.cursor-blink {
  animation: blink 1s step-end infinite;
  color: var(--accent-2);
  font-weight: 400;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted-light);
  margin-bottom: var(--space-md);
  max-width: 520px;
}

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

.hero-badge {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

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

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.35;
  z-index: 0;
}

.terminal-window {
  position: relative;
  z-index: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 1rem;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.terminal-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted-light);
  font-family: var(--font-display);
}

.terminal-body {
  padding: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.8;
}

.term-line {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--border);
}

.term-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.1em 0.5em;
  border-radius: 3px;
  margin-right: 0.5em;
}

.term-q .term-tag {
  background: rgba(232, 85, 45, 0.15);
  color: var(--accent);
}

.term-a .term-tag {
  background: rgba(26, 158, 143, 0.15);
  color: var(--accent-2);
}

.term-feedback .term-tag {
  background: rgba(254, 188, 46, 0.15);
  color: #febc2e;
}

.term-q {
  color: var(--text-light);
}

.term-a {
  color: var(--text-muted-light);
}

.term-feedback {
  color: var(--accent-2);
}

.hero-thread {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

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

.problem-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

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

.problem-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.problem-stat {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--accent);
  background: rgba(232, 85, 45, 0.08);
  padding: 0.3em 0.8em;
  border-radius: 3px;
}

.advantages-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.advantage-item {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  transition: border-color 0.3s ease;
}

.advantage-item:hover {
  border-color: var(--accent-2);
}

.adv-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  margin-bottom: var(--space-sm);
}

.advantage-item h3 {
  font-size: var(--fs-h3);
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.advantage-item p {
  color: var(--text-muted-light);
  font-size: var(--fs-small);
}

.advantage-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-md);
  background: var(--surface-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.terminal-compact {
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--accent-2);
  word-break: break-all;
}

.highlight-text h3 {
  color: var(--text-light);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.highlight-text p {
  color: var(--text-muted-light);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.module-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.module-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(232, 85, 45, 0.12);
}

.module-flag {
  position: absolute;
  top: -1px;
  right: var(--space-md);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3em 0.8em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.module-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.module-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  background: rgba(232, 85, 45, 0.1);
  padding: 0.2em 0.5em;
  border-radius: var(--radius-sm);
}

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

.module-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.6rem;
}

.module-card > p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

.module-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.module-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.module-specs i {
  color: var(--accent-2);
  font-size: 1rem;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
  position: relative;
  margin-bottom: var(--space-lg);
}

.phase-track {
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 0;
}

.phase-card {
  position: relative;
  z-index: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.phase-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-3px);
}

.phase-card-accent {
  border-color: var(--accent);
  background: rgba(232, 85, 45, 0.06);
}

.phase-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.phase-weeks {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-2);
  background: rgba(26, 158, 143, 0.12);
  padding: 0.15em 0.6em;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.phase-card h3 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.phase-card p {
  font-size: 0.78rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.program-cta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-md);
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.program-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.program-cta-text h3 {
  color: var(--text-light);
  font-size: var(--fs-h3);
  margin-bottom: 0.6rem;
}

.program-cta-text p {
  color: var(--text-muted-light);
  margin-bottom: var(--space-sm);
}

.program-cta-text .btn {
  margin-right: var(--space-sm);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-3px);
}

.audience-icon {
  font-size: 2rem;
  color: var(--accent-2);
  margin-bottom: var(--space-sm);
}

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

.audience-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

.audience-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(26, 158, 143, 0.1);
  padding: 0.2em 0.7em;
  border-radius: 3px;
}

.interview-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.interview-type {
  padding: var(--space-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.interview-type:hover {
  border-color: var(--accent);
}

.type-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.interview-type h3 {
  color: var(--text-light);
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.interview-type p {
  color: var(--text-muted-light);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

.type-freq {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 500;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.proof-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.proof-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.proof-card p {
  font-size: var(--fs-small);
  color: var(--text-muted-light);
}

.proof-note {
  text-align: center;
}

.proof-note p {
  font-size: var(--fs-small);
  color: var(--text-muted-light);
  font-style: italic;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-img-wrap {
  height: 180px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-body {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  flex: 1;
}

.blog-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(232, 85, 45, 0.08);
  padding: 0.2em 0.6em;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.blog-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--text);
}

.blog-body p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 0.8rem;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-readmore {
  margin-top: auto;
  padding-top: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s ease;
}

.blog-card:hover .blog-readmore {
  gap: 0.7rem;
}

.article-hero {
  background: var(--bg);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.article-hero .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 50, 66, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 50, 66, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 75%);
}

.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  color: var(--accent-2);
  margin-bottom: var(--space-md);
  transition: gap 0.25s ease;
}

.article-back:hover {
  gap: 0.7rem;
  color: var(--text-light);
}

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

.article-meta-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: var(--fs-small);
  color: var(--text-muted-light);
}

.article-meta-row .blog-tag {
  margin-bottom: 0;
}

.article-meta-sep {
  color: var(--border);
}

.article-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-top: var(--space-lg);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.article-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
  padding-left: var(--space-md);
  border-left: 3px solid var(--accent);
  margin-bottom: var(--space-lg);
}

.article-body h2 {
  font-size: var(--fs-h2);
  color: var(--text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 1.4rem;
}

.article-body h2::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 800;
}

.article-body h3 {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.article-body p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  color: var(--text);
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-sm);
  padding-left: 1.4rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-callout {
  background: rgba(26, 158, 143, 0.07);
  border-left: 4px solid var(--accent-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md);
  margin: var(--space-md) 0;
}

.article-callout p {
  margin-bottom: 0;
}

.article-example {
  background: var(--surface-2);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border: 1px solid var(--border);
}

.article-example-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.7em;
  border-radius: 3px;
  margin-bottom: var(--space-sm);
}

.example-before {
  background: rgba(232, 85, 45, 0.15);
  color: var(--accent);
}

.example-after {
  background: rgba(26, 158, 143, 0.15);
  color: var(--accent-2);
}

.article-example p {
  color: var(--text-muted-light);
  font-size: var(--fs-small);
  margin-bottom: 0;
  line-height: 1.7;
}

.article-cta {
  background: var(--surface-2);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
  border: 1px solid var(--border);
}

.article-cta h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.article-cta p {
  color: var(--text-muted-light);
  margin-bottom: var(--space-md);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.article-related {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: var(--space-lg) 0;
}

.article-related h2 {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-bottom: var(--space-md);
}

.related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.related-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.related-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.related-item .blog-tag {
  margin-bottom: 0.5rem;
}

.related-item h3 {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.price-hero {
  background: var(--bg);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.price-hero .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 50, 66, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 50, 66, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 75%);
}

.price-hero-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.price-hero h1 {
  font-size: var(--fs-display);
  font-weight: 800;
  margin-bottom: var(--space-md);
  word-break: break-all;
}

.price-hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted-light);
  margin-bottom: var(--space-md);
  max-width: 640px;
}

.price-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-light);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5em 1em;
}

.trust-chip i {
  color: var(--accent-2);
  font-size: 1.1rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.package-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(232, 85, 45, 0.15);
}

.package-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35em 1em;
  border-radius: 20px;
  white-space: nowrap;
}

.package-head h3 {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-bottom: 0.3rem;
}

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

.package-price {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-md);
}

.price-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
}

.package-featured .price-main {
  color: var(--accent);
}

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

.package-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  flex: 1;
}

.package-specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--text);
  line-height: 1.5;
}

.package-specs li i {
  color: var(--accent-2);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.package-specs li.spec-off {
  color: var(--text-muted);
  opacity: 0.7;
}

.package-specs li.spec-off i {
  color: var(--text-muted);
}

.packages-footnote {
  margin-top: var(--space-md);
  text-align: center;
}

.packages-footnote p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.packages-footnote a {
  color: var(--accent-2);
  text-decoration: underline;
}

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

.breakdown-text h3 {
  color: var(--text-light);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.breakdown-text > p {
  color: var(--text-muted-light);
  margin-bottom: var(--space-sm);
}

.breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: var(--space-md);
}

.breakdown-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text-muted-light);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.breakdown-list li i {
  color: var(--accent-2);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.breakdown-list li strong {
  color: var(--text-light);
}

.breakdown-note {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-sm) var(--space-md);
}

.breakdown-note p {
  font-size: var(--fs-small);
  color: var(--text-muted-light);
  margin-bottom: 0;
}

.breakdown-note strong {
  color: var(--text-light);
}

.raten-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.raten-icon {
  font-size: 2.2rem;
  color: var(--accent);
}

.raten-text h3 {
  color: var(--text-light);
  font-size: var(--fs-h3);
  margin-bottom: 0.4rem;
}

.raten-text p {
  color: var(--text-muted-light);
  font-size: var(--fs-small);
}

.raten-sum {
  text-align: right;
  border-left: 1px solid var(--border);
  padding-left: var(--space-md);
}

.raten-total {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

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

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

.payment-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.payment-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.payment-card h3 {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.payment-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

.payment-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(26, 158, 143, 0.1);
  padding: 0.2em 0.7em;
  border-radius: 3px;
}

.payment-faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-light {
  background: #fff;
  border: 1px solid var(--border-light);
}

.faq-light summary {
  color: var(--text);
}

.faq-light p {
  color: var(--text-muted);
}

.price-cta-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.price-cta-text h3 {
  color: var(--text-light);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.price-cta-text p {
  color: var(--text-muted-light);
}

.price-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  background: var(--surface-2);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--text-light);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-muted-light);
  font-size: var(--fs-small);
}

.form-panel {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: sticky;
  top: 100px;
}

.form-panel-inner h3 {
  color: var(--text-light);
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.form-panel-inner > p {
  color: var(--text-muted-light);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted-light);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.7em 1em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: border-color 0.2s ease;
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-2);
}

.form-group input::placeholder {
  color: var(--text-muted-light);
  opacity: 0.6;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

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

.form-check label {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-bottom: 0;
}

.site-footer {
  background: var(--bg);
  color: var(--text-muted-light);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

.footer-contacts {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

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

.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted-light);
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.85rem;
}

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

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal-content p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-sm);
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-callout {
  background: rgba(232, 85, 45, 0.06);
  border-left: 4px solid var(--accent);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-md) 0;
}

.legal-callout p {
  margin-bottom: 0;
}

.legal-section-alt {
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.legal-update,
.last-updated {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

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

.thanks-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 680px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  font-size: 3rem;
  color: var(--accent-2);
  margin-bottom: var(--space-sm);
}

.thanks-card h1 {
  font-size: var(--fs-h2);
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

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

.thanks-steps {
  margin-bottom: var(--space-md);
}

.thanks-step {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.thanks-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.3rem;
  min-width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 85, 45, 0.1);
  border-radius: var(--radius-sm);
}

.thanks-step-content h3 {
  color: var(--text-light);
  font-size: var(--fs-body);
  margin-bottom: 0.3rem;
}

.thanks-step-content p {
  color: var(--text-muted-light);
  font-size: var(--fs-small);
}

.thanks-tips {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.thanks-tips h3 {
  color: var(--accent-2);
  font-size: var(--fs-body);
  margin-bottom: var(--space-sm);
}

.thanks-tips ul {
  list-style: none;
  padding: 0;
}

.thanks-tips li {
  color: var(--text-muted-light);
  font-size: var(--fs-small);
  padding: 0.3em 0;
  padding-left: 1.2em;
  position: relative;
}

.thanks-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

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

.thanks-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

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

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

  .hero-visual {
    display: none;
  }

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

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

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

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

  .form-panel {
    position: static;
  }

  .advantage-highlight {
    grid-template-columns: 1fr;
  }

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

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

  .phase-track {
    display: none;
  }

  .related-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .price-cta-box {
    grid-template-columns: 1fr;
  }
}

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

  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: var(--space-sm);
  }

  .burger {
    display: flex;
    margin-left: 0;
  }

  .form-panel {
    padding: var(--space-sm);
  }

  .form-panel-inner > p {
    margin-bottom: var(--space-sm);
  }

  .form-group {
    margin-bottom: 0.65rem;
  }

  .problems-grid,
  .advantages-row,
  .audience-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid,
  .interview-types-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .raten-box {
    grid-template-columns: 1fr;
  }

  .raten-sum {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: var(--space-sm);
    text-align: left;
  }

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

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

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

  .thanks-card {
    padding: var(--space-md);
  }

  .thanks-actions {
    flex-direction: column;
  }

  .cookie-modal {
    padding: var(--space-md);
  }

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

  .article-hero {
    padding: var(--space-md) 0 var(--space-sm);
  }

  .article-hero-inner {
    padding: 0 var(--space-sm);
  }

  .article-back {
    margin-bottom: var(--space-sm);
  }

  .article-hero h1 {
    margin-bottom: var(--space-sm);
  }

  .article-meta-row {
    gap: 0.35rem;
    margin-bottom: 0;
  }

  .article-hero-img {
    height: 200px;
    margin-top: var(--space-sm);
  }

  .article-cta {
    padding: var(--space-md);
    margin-top: var(--space-md);
  }

  .article-cta p {
    margin-bottom: var(--space-sm);
  }
}

.lead-form input,
.lead-form select,
.lead-form button {
  width: 100%;
  max-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 > *,
  .faq-layout > *,
  .breakdown-layout > *,
  .price-hero-inner,
  .packages-grid > *,
  .breakdown-terminal,
  .breakdown-text {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: nowrap;
  }

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

  .ad-badge,
  .logo-name,
  .footer-col,
  .footer-legal-name {
    word-break: break-all;
  }

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

  .container {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.8rem var(--space-sm);
  }

  .form-panel {
    padding: 0.75rem;
  }

  .form-panel-inner {
    padding: 0;
  }

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

  .article-hero-inner {
    padding: 0;
  }

  .article-back {
    margin-bottom: 0.75rem;
  }

  .article-hero h1 {
    margin-bottom: 0.75rem;
  }

  .article-hero-img {
    height: 180px;
    margin-top: 0.75rem;
  }

  .article-body {
    padding: var(--space-md) var(--space-sm) var(--space-lg);
  }

  .article-cta {
    padding: var(--space-sm);
    margin-top: var(--space-sm);
  }

  .article-cta h3 {
    margin-bottom: 0.5rem;
  }

  .article-cta p {
    margin-bottom: 0.75rem;
  }

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

  .thanks-card {
    padding: var(--space-sm);
  }

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

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

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

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

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

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