/* ============================================
   Re:career - AI実践×案件獲得伴走プログラム
   株式会社Relis
   メインスタイルシート
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0d1b3e;
  --navy-mid: #152a5c;
  --navy-light: #1e3a7b;
  --blue: #1a56db;
  --blue-light: #3b7ee9;
  --blue-pale: #e8f0fe;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f4f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-primary);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-label--gold {
  color: var(--gold);
  background: #fdf8ee;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
}

strong, b {
  font-weight: 700;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark .section-title,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark .section-subtitle,
.section--dark p {
  color: rgba(255,255,255,0.78);
}

.section--navy-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.section--navy-gradient .section-title,
.section--navy-gradient h2 {
  color: var(--white);
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,86,219,0.35);
}

.btn--primary:hover {
  background: var(--blue-light);
  box-shadow: 0 8px 28px rgba(26,86,219,0.45);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.btn--gold:hover {
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}

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

.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.navbar__logo-name span {
  color: var(--blue);
}

.navbar__logo-sub {
  font-size: 0.6rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.navbar__nav a:hover {
  color: var(--navy);
}

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

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

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,0.92) 0%,
    rgba(13,27,62,0.80) 50%,
    rgba(26,86,219,0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.hero__title span {
  color: var(--blue-light);
}

.hero__tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.hero__catch {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.hero__catch br {
  display: block;
}

.hero__desc {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255,255,255,0.75);
  line-height: 2;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

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

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Section: What is Re:career ---------- */
.what-is {
  background: var(--white);
}

.what-is__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-is__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.what-is__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.what-is__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,86,219,0.15);
  pointer-events: none;
}

.what-is__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.8rem 0;
}

.what-is__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.what-is__list-item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ---------- Section: Why Skills Alone ---------- */
.why-skills {
  background: var(--navy);
  color: var(--white);
}

.why-skills .section-title {
  color: var(--white);
}

.why-skills__highlight {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--gold-light);
  text-align: center;
  margin: 3rem 0;
  padding: 2rem 3rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.06);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 2rem 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.flow-step__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  min-width: 90px;
}

.flow-step__item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.flow-step__item strong {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 700;
}

.flow-step__arrow {
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0 4px;
  flex-shrink: 0;
}

.why-skills__needs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 2rem 0;
}

.why-skills__need-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue-light);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.why-skills__need-item::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Section: Analogy (Beauty/Nurse) ---------- */
.analogy {
  background: var(--off-white);
}

.analogy__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  border-left: 4px solid var(--blue);
}

.analogy__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.analogy__card h3 .icon {
  font-size: 1.5rem;
}

.analogy__conclusion {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.analogy__conclusion .big-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

/* ---------- Section: No License Needed ---------- */
.no-license {
  background: var(--white);
}

.no-license__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0;
}

.tag-cloud__item {
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.no-license__factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 1.5rem 0;
}

.no-license__factor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.no-license__factor::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.65rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

/* ---------- Section: Case Experience ---------- */
.case-exp {
  background: var(--off-white);
}

.case-exp__quote {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  padding: 2rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 3rem;
}

.case-exp__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 2rem 0;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--blue);
  transition: var(--transition);
}

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

.benefit-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.benefit-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.benefit-card__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.case-exp__closing {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  margin-top: 3rem;
}

.case-exp__closing p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

/* ---------- Section: Comparison ---------- */
.comparison {
  background: var(--white);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 3rem 0;
}

.comp-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comp-col--general .comp-col__header {
  background: var(--gray-200);
  color: var(--gray-800);
}

.comp-col--recareer .comp-col__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.comp-col__header {
  padding: 20px 28px;
  text-align: center;
}

.comp-col__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.comp-col__header span {
  font-size: 0.78rem;
  opacity: 0.7;
}

.comp-col__body {
  background: var(--white);
  padding: 0;
}

.comp-col--general .comp-item {
  border-left: 3px solid var(--gray-400);
}

.comp-col--recareer .comp-item {
  border-left: 3px solid var(--blue);
}

.comp-item {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: background 0.2s;
}

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

.comp-item:hover {
  background: var(--gray-100);
}

.comp-col--general .comp-item::before {
  content: '•';
  color: var(--gray-400);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.comp-col--recareer .comp-item::before {
  content: '✓';
  color: var(--blue);
  flex-shrink: 0;
  font-weight: 700;
}

.comparison__footer {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  text-align: center;
  margin-top: 2rem;
}

.comparison__footer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

.comparison__footer strong {
  color: var(--gold-light);
  font-size: 1.15rem;
}

/* ---------- Section: Skills (Sales/Proposal/Price) ---------- */
.skills-section {
  background: var(--off-white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}

.skill-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--navy-light) 100%);
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.skill-card__number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.skill-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.skill-card__subtitle {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.skill-list li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Section: Problem Solution ---------- */
.problem-solution {
  background: var(--navy);
  color: var(--white);
}

.problem-solution .section-title {
  color: var(--white);
}

.problem-solution__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 2rem 0;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.solution-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.solution-item__icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.solution-item__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.solution-note {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 2.5rem;
}

.solution-note p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
}

.solution-note strong {
  color: var(--gold-light);
}

/* ---------- Section: Case Supply ---------- */
.case-supply {
  background: var(--off-white);
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.supply-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.supply-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.supply-effects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 2rem 0;
}

.effect-item {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
}

.effect-item strong {
  display: block;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.supply-note {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.supply-note strong {
  color: var(--navy);
}

/* ---------- Section: How It Works (Steps) ---------- */
.how-it-works {
  background: var(--white);
}

.steps-container {
  position: relative;
  margin: 3rem 0;
}

.steps-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--navy-light) 100%);
  z-index: 0;
}

.step-item {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}

.step-number span {
  font-size: 0.6rem;
  opacity: 0.8;
}

.step-content {
  flex: 1;
  padding-top: 10px;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-note {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.step-note strong {
  color: var(--gold-light);
}

/* ---------- Section: Course Comparison ---------- */
.courses {
  background: var(--off-white);
}

.courses__intro {
  text-align: center;
  margin-bottom: 3rem;
}

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

.course-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.course-card--recommended {
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
  z-index: 2;
  border: 2px solid var(--blue);
}

.course-card--recommended:hover {
  transform: scale(1.04) translateY(-6px);
}

.course-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

.course-card__header {
  padding: 32px 28px 24px;
  text-align: center;
}

.course-card--entry .course-card__header {
  background: linear-gradient(135deg, #f8faff 0%, #eef3fd 100%);
}

.course-card--recommended .course-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.course-card--premium .course-card__header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
}

.course-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.course-card--entry .course-label {
  background: var(--gray-200);
  color: var(--gray-600);
}

.course-card--recommended .course-label {
  background: var(--gold);
  color: var(--navy);
}

.course-card--premium .course-label {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.course-card__name {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.course-card--entry .course-card__name {
  color: var(--navy);
}

.course-card--recommended .course-card__name,
.course-card--premium .course-card__name {
  color: var(--white);
}

.course-card__price-monthly {
  font-size: 0.8rem;
  margin-bottom: 4px;
  opacity: 0.7;
}

.course-card__price-monthly strong {
  font-size: 2rem;
  font-weight: 900;
}

.course-card--recommended .course-card__price-monthly,
.course-card--premium .course-card__price-monthly {
  color: var(--gold-light);
}

.course-card__price-monthly strong {
  font-size: 2.2rem;
}

.course-card__price-total {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-bottom: 12px;
}

.course-card__period {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

.course-card--entry .course-card__period {
  background: var(--blue-pale);
  color: var(--blue);
}

.course-card--recommended .course-card__period {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.course-card--premium .course-card__period {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
}

.course-card__body {
  padding: 24px 28px 32px;
}

.course-card__tagline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.course-card--recommended .course-card__tagline {
  color: var(--blue);
}

.course-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.course-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.course-feature::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.course-card--recommended .course-feature::before {
  color: var(--blue);
}

.course-card__cta {
  display: block;
  text-align: center;
}

/* ---------- Section: Course Details ---------- */
.course-detail {
  padding: 100px 0;
}

.course-detail--entry {
  background: var(--white);
}

.course-detail--recommend {
  background: var(--navy);
}

.course-detail--premium {
  background: #0f0f1a;
}

.course-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.course-detail__header {
  margin-bottom: 2rem;
}

.course-detail__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.course-detail--entry .course-detail__tag {
  background: var(--gray-200);
  color: var(--gray-600);
}

.course-detail--recommend .course-detail__tag {
  background: var(--gold);
  color: var(--navy);
}

.course-detail--premium .course-detail__tag {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.course-detail__price-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.course-detail--recommend .course-detail__price-label,
.course-detail--premium .course-detail__price-label {
  color: rgba(255,255,255,0.6);
}

.course-detail__price {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.course-detail--recommend .course-detail__price,
.course-detail--premium .course-detail__price {
  color: var(--white);
}

.course-detail--recommend .course-detail__price span,
.course-detail--premium .course-detail__price span {
  color: var(--gold-light);
}

.course-detail__installment {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.course-detail--recommend .course-detail__installment,
.course-detail--premium .course-detail__installment {
  color: rgba(255,255,255,0.6);
}

.course-detail__oneliner {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}

.course-detail--entry .course-detail__oneliner {
  background: var(--blue-pale);
  color: var(--navy);
}

.course-detail--recommend .course-detail__oneliner {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

.course-detail--premium .course-detail__oneliner {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.2);
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.course-detail--entry .detail-list li {
  color: var(--text-primary);
  background: var(--gray-100);
}

.course-detail--recommend .detail-list li {
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
}

.course-detail--premium .detail-list li {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.detail-list li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.course-detail--entry .detail-list li::before {
  color: var(--blue);
}

.course-detail--recommend .detail-list li::before {
  color: var(--gold-light);
}

.course-detail--premium .detail-list li::before {
  color: var(--gold);
}

.support-box {
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 0;
}

.course-detail--entry .support-box {
  background: var(--gray-100);
  border: 1px solid var(--border);
}

.course-detail--recommend .support-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.course-detail--premium .support-box {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
}

.support-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}

.course-detail--entry .support-box h4 {
  color: var(--navy);
  border-color: var(--border);
}

.course-detail--recommend .support-box h4 {
  color: var(--gold-light);
  border-color: rgba(255,255,255,0.1);
}

.course-detail--premium .support-box h4 {
  color: var(--gold);
  border-color: rgba(201,168,76,0.2);
}

.support-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.6;
}

.course-detail--entry .support-item {
  color: var(--text-secondary);
}

.course-detail--recommend .support-item {
  color: rgba(255,255,255,0.75);
}

.course-detail--premium .support-item {
  color: rgba(255,255,255,0.7);
}

.support-item::before {
  content: '—';
  flex-shrink: 0;
  opacity: 0.5;
}

.course-closing {
  margin-top: 2.5rem;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.course-detail--recommend .course-closing {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
}

.course-detail--premium .course-closing {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Section: Support Comparison ---------- */
.support-comparison {
  background: var(--off-white);
}

.support-table-wrapper {
  overflow-x: auto;
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.support-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}

.support-table thead {
  background: var(--navy);
  color: var(--white);
}

.support-table thead th {
  padding: 18px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

.support-table thead th:first-child {
  text-align: left;
}

.support-table thead th.recommended-col {
  background: var(--blue);
}

.support-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

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

.support-table tbody tr:hover {
  background: var(--gray-100);
}

.support-table tbody td {
  padding: 16px 20px;
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-secondary);
}

.support-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.support-table tbody td.recommended-col {
  background: rgba(26,86,219,0.04);
  font-weight: 600;
  color: var(--navy);
}

.support-table .check {
  color: var(--blue);
  font-size: 1.1rem;
}

.support-table .check-gold {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- Section: Pricing ---------- */
.pricing {
  background: var(--navy);
  color: var(--white);
}

.pricing .section-title {
  color: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 3rem 0;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}

.pricing-card--highlight {
  background: rgba(26,86,219,0.2);
  border: 2px solid var(--blue-light);
}

.pricing-card--highlight:hover {
  background: rgba(26,86,219,0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-card__monthly-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.pricing-card__monthly {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}

.pricing-card--highlight .pricing-card__monthly {
  color: var(--gold-light);
}

.pricing-card__monthly-unit {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-card__total {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.pricing-card__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 16px 0;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

/* ---------- Section: FAQ ---------- */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question.active {
  background: var(--blue-pale);
}

.faq-question__text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
}

.faq-question__q {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--blue);
  flex-shrink: 0;
  margin-right: 4px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  transition: transform 0.3s;
}

.faq-question.active .faq-icon {
  background: var(--blue);
}

.faq-question.active .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

.faq-answer__inner strong {
  color: var(--navy);
}

/* ---------- Section: Company Info ---------- */
.company {
  background: var(--off-white);
}

.company__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.company-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.company-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue);
}

.company-table {
  width: 100%;
}

.company-table tr {
  border-bottom: 1px solid var(--border);
}

.company-table tr:last-child {
  border-bottom: none;
}

.company-table th,
.company-table td {
  padding: 14px 0;
  font-size: 0.9rem;
  vertical-align: top;
}

.company-table th {
  width: 110px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}

.company-table td {
  color: var(--text-primary);
}

.company-table a {
  color: var(--blue);
  text-decoration: underline;
}

.contact-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-link:hover {
  background: rgba(255,255,255,0.14);
}

.contact-link__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Section: Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--blue) 100%);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(26,86,219,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.final-cta__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.final-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 2;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.final-cta__contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.final-cta__contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
  background: #080c1a;
  color: var(--white);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer__logo span {
  color: var(--blue-light);
}

.footer__tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

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

.footer__nav-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__nav-col ul li a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__company-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__company-info span,
.footer__company-info a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer__company-info a:hover {
  color: rgba(255,255,255,0.7);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ---------- Utility Classes ---------- */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }

  .course-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .course-card--recommended {
    transform: scale(1.02);
    order: -1;
  }

  .course-card--recommended:hover {
    transform: scale(1.02) translateY(-6px);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .course-detail__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__cta .btn {
    display: none;
  }

  .what-is__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .what-is__image img {
    height: 300px;
  }

  .no-license__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .no-license__factors {
    grid-template-columns: 1fr;
  }

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

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

  .company__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .flow-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-step {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-step__arrow {
    transform: rotate(90deg);
    text-align: center;
    padding: 4px 0;
  }

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

  .analogy__card {
    padding: 28px 24px;
  }

  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
    justify-content: center;
  }

  .hero__cta {
    flex-direction: column;
    max-width: 340px;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .section {
    padding: 56px 0;
  }

  .hero__content {
    padding: 100px 0 60px;
  }

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

  .company-info-card,
  .contact-card {
    padding: 28px 22px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer__inner {
    padding: 0 20px 18px;
  }
}

/* ---------- Mobile Nav Open State ---------- */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .btn {
  margin-top: 8px;
}
