/* ==============================
   CSS Variables
   ============================== */
:root {
  --color-primary: #1a2744;
  --color-primary-dark: #0d1b3e;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f8fafc;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-border: #e2e8f0;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Inter", sans-serif;
  --header-height: 70px;
  --section-padding: 80px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ==============================
   Utility
   ============================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 800px;
}

.pc-only { display: inline; }
.sp-only { display: none; }

.text-green { color: var(--color-success); font-weight: 700; }

/* ==============================
   Buttons
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

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

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

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

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--outline:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--outline-white:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 17px;
}

/* ==============================
   Header
   ============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-primary);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: var(--color-primary-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.header__logo:hover { color: #fff; }

.header__logo-img {
  height: 36px;
  width: auto;
}

.header__logo-text {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.header__nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header__nav-link--cta {
  background: var(--color-accent);
  color: #fff;
  margin-left: 8px;
}

.header__nav-link--cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==============================
   Section common
   ============================== */
.section {
  padding: var(--section-padding) 0;
}

.section--white { background: var(--color-bg-white); }
.section--gray { background: var(--color-bg-gray); }
.section--dark { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); }

.section__heading {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.section__heading--white {
  color: #fff;
}

.section__sub {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 48px;
  font-size: 15px;
}

.section__lead {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}

/* ==============================
   Hero
   ============================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 60px) 20px 80px;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2744 40%, #1e3a5f 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero__title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title span {
  display: block;
  font-size: 32px;
  margin-top: 8px;
}

.hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__badge {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__badge i {
  color: var(--color-success);
}

/* ==============================
   Problems
   ============================== */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.problem-card {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--color-border);
}

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

.problem-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.problem-card__text {
  font-size: 15px;
  line-height: 1.7;
}

.problem-card__text strong {
  color: var(--color-accent);
}

.problems__banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, #1d4ed8 100%);
  color: #fff;
  text-align: center;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 700;
}

.problems__banner i {
  color: var(--color-warning);
  margin-right: 8px;
}

/* ==============================
   About
   ============================== */
.about__targets {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow);
}

.about__targets-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-align: center;
}

.about__targets-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__targets-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.about__targets-list li i {
  color: var(--color-accent);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* ==============================
   Features
   ============================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ==============================
   Instructor
   ============================== */
.instructor {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.instructor__photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-bg-white);
}

.instructor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.instructor__name-reading {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
  margin-left: 8px;
}

.instructor__role {
  font-size: 15px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.instructor__bio {
  font-size: 14px;
  line-height: 1.9;
}

.instructor--no-photo {
  justify-content: center;
  text-align: center;
}

.instructor--no-photo .instructor__info {
  max-width: 700px;
}

/* ==============================
   Courses
   ============================== */
.course-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.course-tab {
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border: 2px solid var(--color-border);
  border-radius: 40px;
  background: var(--color-bg-white);
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.course-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.course-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.course-content {
  display: none;
}

.course-content.active {
  display: block;
}

.course-header {
  margin-bottom: 16px;
}

.course-header__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-header__title i {
  color: var(--color-accent);
}

.course-header__recommend {
  font-size: 14px;
  color: var(--color-accent);
  background: rgba(37, 99, 235, 0.08);
  padding: 10px 16px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.course-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.course-table-wrap {
  overflow-x: auto;
}

.course-table {
  width: 100%;
  font-size: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.course-table thead {
  background: var(--color-primary);
  color: #fff;
}

.course-table th,
.course-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.course-table th {
  font-weight: 700;
  white-space: nowrap;
}

.course-table tbody tr:nth-child(even) {
  background: var(--color-bg-gray);
}

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

.course-table td:first-child {
  white-space: nowrap;
  font-weight: 700;
  color: var(--color-accent);
}

/* ==============================
   Pricing
   ============================== */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-bg-white);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.pricing-card__label {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.pricing-card__price {
  margin-bottom: 32px;
}

.pricing-card__amount {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.pricing-card__unit {
  font-size: 16px;
  color: var(--color-text);
  margin-left: 4px;
}

.pricing-card__details {
  text-align: left;
}

.pricing-card__details li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__details li:last-child {
  border-bottom: none;
}

.pricing-card__details li i {
  color: var(--color-accent);
  width: 18px;
  text-align: center;
}

/* ==============================
   Subsidy
   ============================== */
.subsidy-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.subsidy-table {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.subsidy-table thead {
  background: var(--color-primary);
  color: #fff;
}

.subsidy-table th,
.subsidy-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.subsidy-table th {
  font-weight: 700;
}

.subsidy-table td.highlight {
  color: var(--color-accent);
  font-size: 18px;
}

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

.subsidy-example {
  max-width: 700px;
  margin: 0 auto 40px;
  background: var(--color-bg-gray);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.subsidy-example__title {
  background: var(--color-accent);
  color: #fff;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subsidy-example__body {
  padding: 24px;
}

.subsidy-example__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
}

.subsidy-example__row:last-child {
  border-bottom: none;
}

.subsidy-example__row small {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
}

.subsidy-example__row--total {
  border-top: 2px solid var(--color-primary);
  border-bottom: none;
  padding-top: 16px;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.subsidy-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.subsidy-badge {
  background: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.subsidy-badge i {
  color: var(--color-success);
}

/* ==============================
   Flow
   ============================== */
.flow-steps {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.flow-step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.flow-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.flow-step__text {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==============================
   FAQ
   ============================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-bg-white);
  border: none;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-item__question:hover {
  background: var(--color-bg-gray);
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-accent);
  transition: transform 0.3s;
}

.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}

/* ==============================
   CTA / Contact
   ============================== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 32px;
}

.cta-email {
  text-align: center;
  font-size: 15px;
}

.cta-email a {
  color: rgba(255, 255, 255, 0.9);
}

.cta-email a:hover {
  color: #fff;
}

.cta-email i {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 6px;
}

/* ==============================
   Footer
   ============================== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 24px;
}

.footer__inner {
  margin-bottom: 32px;
}

.footer__table {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
}

.footer__table th,
.footer__table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.footer__table th {
  width: 100px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.footer__table td {
  color: rgba(255, 255, 255, 0.85);
}

.footer__table a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__table a:hover {
  color: #fff;
}

.footer__copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==============================
   Responsive — Tablet (≤ 1024px)
   ============================== */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-steps {
    flex-wrap: wrap;
  }

  .flow-steps::before {
    display: none;
  }

  .flow-step {
    max-width: 45%;
    flex: 0 0 45%;
  }
}

/* ==============================
   Responsive — Mobile (≤ 768px)
   ============================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px;
    --header-height: 60px;
  }

  .pc-only { display: none; }
  .sp-only { display: inline; }

  /* Header mobile */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-primary-dark);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
  }

  .header__nav-link {
    display: block;
    padding: 16px 12px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__nav-link--cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    border-radius: 6px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 20px 60px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__title span {
    font-size: 22px;
  }

  .hero__sub {
    font-size: 14px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* Section headings */
  .section__heading {
    font-size: 22px;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
  }

  /* Instructor */
  .instructor {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .instructor__photo {
    width: 160px;
    height: 160px;
  }

  /* About targets */
  .about__targets-list {
    grid-template-columns: 1fr;
  }

  .about__targets {
    padding: 24px;
  }

  /* Course tabs */
  .course-tab {
    font-size: 13px;
    padding: 10px 16px;
  }

  .course-header__title {
    font-size: 17px;
    flex-wrap: wrap;
  }

  /* Pricing */
  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card__amount {
    font-size: 36px;
  }

  /* Subsidy */
  .subsidy-example__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* Flow */
  .flow-step {
    max-width: 100%;
    flex: 0 0 100%;
  }

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

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer__table th {
    display: block;
    border-bottom: none;
    padding-bottom: 2px;
  }

  .footer__table td {
    display: block;
    padding-top: 0;
    padding-bottom: 12px;
  }
}
