@import url('https://cdn.jsdelivr.net/gh/ButTaiwan/genjyuugothic@master/genjyuu.css');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');
/* ===== Reset ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "GenJyuu Gothic",
    "源柔ゴシック",
    sans-serif;
  background: #F7FAFC;
  color: #003D55;
  padding-top: 130px;
}

/* ===== Nav ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0.5rem 0.5rem;

    background: #fff;
    border-bottom: 2px solid #00BFFF;
}

.nav-logo{
    display:flex;
    align-items:center;
    padding:10px 0;
}

.nav-logo img{
    height:40px;
    display:block;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #0099CC;
  font-weight: 500;
}

.nav-links span {
  cursor: pointer;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #003D55;
  border-radius: 2px;
  transition: 0.3s;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* ===== Monitor banner ===== */
.monitor-banner {
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.monitor-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.monitor-badge {
  background: #fff;
  color: #0077AA;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.monitor-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.monitor-text__sub {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  margin-left: 0.5em;
}

.monitor-btn {
  background: #fff;
  color: #0077AA;
  border: none;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.monitor-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===== Hero ===== */
.hero {
  background: #F0FAFF;
  padding: 3rem 2rem 2.5rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 975px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero h1 {
  font-size: 26px;
  font-weight: 700;
  color: #003D55;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.hero-img {
  flex-shrink: 0;
  max-width: 460px;
}

.hero-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.hero p {
  font-size: 15px;
  color: #005F80;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.hero-text p strong {
  font-size: 18px;
}

.hero-em {
  font-size: 17px;
  text-decoration: wavy underline #00BFFF;
  text-underline-offset: 4px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.mvv-message,
.mvv-origin {
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #005F80;
  text-align: left;
  margin-top: 2rem;
  line-height: 1.7;
  font-weight: 700;
  background: #F0FAFF;
  border-radius: 14px;
  padding: 1.5rem;
}

.mvv-origin h3 {
  text-decoration: underline;
}

.hero-form {
  text-align: center;
}
.hero-form h1 {
  text-align: center;
}
.hero-form p {
  text-align: center;
}

.btn-primary,
.btn-cta {
  background: #00BFFF;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover,
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.35);
}

.btn-outline {
  background: #fff;
  color: #00BFFF;
  border: 2px solid #00BFFF;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-outline:hover {
  background: #E0F7FF;
  transform: translateY(-2px);
}

/* ===== Page layout ===== */
.page {
  max-width: 975px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.section {
  margin-bottom: 2.5rem;
}

#features,
#programs,
#faq,
#news,
#contact,
#strengths {
  scroll-margin-top: 140px;
}

.section-title {
  font-size: 21px;
  font-weight: 700;
  color: #003D55;
  text-align: center;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 15px;
  color: #005F80;
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* ===== Compare table ===== */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  font-size: 13px;
}

.compare-table thead tr th {
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 700;
}

.compare-table th.col-no {
  background: #E8E6DF;
  color: #555;
  width: 50%;
}

.compare-table th.col-yes {
  background: #00BFFF;
  color: #fff;
  width: 50%;
}

.compare-table tbody tr td {
  padding: 0.7rem 1rem;
  vertical-align: top;
  border-top: 1px solid #eee;
  line-height: 1.6;
}

.compare-table tbody tr:nth-child(odd) td.col-no-cell {
  background: #F5F3ED;
  color: #666;
}

.compare-table tbody tr:nth-child(even) td.col-no-cell {
  background: #EDEAE2;
  color: #666;
}

.compare-table tbody tr:nth-child(odd) td.col-yes-cell {
  background: #E6F9FF;
  color: #004D6E;
}

.compare-table tbody tr:nth-child(even) td.col-yes-cell {
  background: #D6F4FF;
  color: #004D6E;
}

.compare-table td s {
  color: #bbb;
}

.compare-table td .tag {
  display: inline-block;
  background: #00BFFF;
  color: #fff;
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 999px;
  margin-bottom: 4px;
}

.note {
  font-size: 11px;
  color: #999;
}

.note-yes {
  font-size: 11px;
  color: #0077AA;
}

/* ===== Feature blocks ===== */
.feature-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 975px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-text {
  flex: 1;
}

.feature-img {
  flex-shrink: 0;
  max-width: 360px;
}

.feature-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.feature-headline {
  font-size: 22px;
  font-weight: 700;
  color: #003D55;
  margin-bottom: 0.25rem;
}

.feature-number {
  font-size: 22px;
  font-weight: 700;
  color: #003D55;
}

.feature-sub {
  font-size: 14px;
  color: #0077AA;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #00BFFF;
  margin-bottom: 0.75rem;
}

.feature-body {
  font-size: 15px;
  color: #005F80;
  line-height: 1.9;
}

.feature-body p {
  margin-bottom: 0.75rem;
}

.feature-body p:last-child {
  margin-bottom: 0;
}

/* ===== Benefits grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 975px;
  margin: 0 auto;
  padding: 0 1rem;
}

.benefit-card {
  background: #F0FAFF;
  border-radius: 14px;
  padding: 1.5rem;
}

.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: #003D55;
  text-align: center;
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 14px;
  color: #005F80;
  line-height: 1.8;
  text-align: left;
}

/* ===== Compare img ===== */
.compare-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.compare-img--top {
  transform: scale(1.25);
  margin: 0 0 3rem;
}

/* ===== Curriculum example box ===== */
.task-box {
  background: #fff;
  border: 2px solid #00BFFF;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.task-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: #003D55;
  margin-bottom: 1rem;
}

.task-scene {
  background: #F0FAFF;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.task-scene .scene-label {
  font-size: 11px;
  font-weight: 700;
  color: #0077AA;
  margin-bottom: 0.4rem;
  display: block;
}

.task-scene p {
  font-size: 13px;
  color: #004D6E;
  line-height: 1.8;
}

/* Speech bubble */
.bubble-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 0.75rem 0 0;
}

.bubble-avatar {
  font-size: 28px;
  flex-shrink: 0;
}

.bubble {
  background: #fff;
  border: 2px solid #00BFFF;
  border-radius: 16px 16px 16px 4px;
  padding: 0.75rem 1rem;
  font-size: 13px;
  color: #003D55;
  line-height: 1.7;
  position: relative;
  max-width: 85%;
}

.bubble::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -12px;
  border: 6px solid transparent;
  border-right-color: #00BFFF;
  border-bottom-color: #00BFFF;
}

.task-chips-label {
  font-size: 12px;
  color: #005F80;
  margin: 1rem 0 8px;
}

.task-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  background: #E0F7FF;
  color: #005F80;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.chip.grammar {
  background: #FFF3CC;
  color: #7A5A00;
}

/* ===== CLIL pillars ===== */
.clil-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 1rem;
}

.pillar {
  background: #F0FAFF;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.pillar .p-label {
  font-size: 11px;
  font-weight: 700;
  color: #0077AA;
  margin-bottom: 0.3rem;
  display: block;
}

.pillar p {
  font-size: 12px;
  color: #004D6E;
  line-height: 1.6;
}

/* ===== Program cards ===== */
.program-card {
  background: #fff;
  border: 1.5px solid #B3E8FF;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.program-name {
  font-size: 18px;
  font-weight: 700;
  color: #003D55;
  margin-bottom: 0.5rem;
}

.program-note {
  font-size: 15px;
  color: #0077AA;
  margin-top: 0.5rem;
}

.price-table s {
  color: #999;
}

.program-card--row {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.program-card__col {
  flex: 1;
}

.program-card__monitor {
  background: linear-gradient(135deg, #00BFFF 0%, #0077AA 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  min-width: 200px;
}

.monitor-label {
  color: #CCF0FF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.monitor-price {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.monitor-apply {
  padding: 10px 24px;
  font-size: 16px;
}

@media (max-width: 600px) {
  .program-card--row {
    flex-direction: column;
  }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.price-table th,
.price-table td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #E8ECF0;
  text-align: left;
}

.price-table th {
  font-weight: 700;
  color: #003D55;
  background: #F0FAFF;
}

.price-table td {
  color: #005F80;
}

.price-table tr:last-child td,
.price-table tr:last-child th {
  border-bottom: none;
}

/* ===== Values ===== */
.values-grid-top,
.values-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.values-grid-top {
  margin-bottom: 10px;
}

.value-card {
  background: #fff;
  border: 1.5px solid #B3E8FF;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.value-card .icon {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto 0.5rem;
}

.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #003D55;
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 13px;
  color: #556;
  line-height: 1.6;
}

/* ===== Mission / Vision ===== */
.mvv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mvv-card {
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.mvv-mission {
  background: #E0F7FF;
}

.mvv-vision {
  background: #CCF0FF;
}

.mvv-label {
  font-size: 11px;
  font-weight: 700;
  color: #0077AA;
  margin-bottom: 0.4rem;
  display: block;
  letter-spacing: 0.05em;
}

.mvv-card p {
  font-size: 18px;
  color: #003D55;
  line-height: 1.7;
  font-weight: 600;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, #00BFFF 0%, #0077AA 100%);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.cta h2 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta p {
  font-size: 13px;
  color: #CCF0FF;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.btn-cta {
  padding: 13px 32px;
  background: #fff;
  color: #0077AA;
}

.btn-cta:hover {
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.35);
}

/* ===== Form conditions ===== */
.form-conditions {
  background: #FFF8E1;
  border: 1.5px solid #FFD54F;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.form-conditions__title {
  font-size: 16px;
  font-weight: 700;
  color: #E65100;
  margin-bottom: 0.5rem;
  text-align: center;
}
.form-conditions__list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.form-conditions__list li {
  font-size: 15px;
  color: #003D55;
  line-height: 2;
  margin-bottom: 0.5rem;
  padding-left: 1.4rem;
  position: relative;
  text-align: left;
}
.form-conditions__list li::before {
  content: "□";
  position: absolute;
  left: 0;
}

/* ===== Conditions row ===== */
.conditions-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.conditions-row > * {
  flex: 1;
  max-width: 420px;
}

/* ===== Service content ===== */
.service-content {
  background: #E0F7FF;
  border: 1.5px solid #00BFFF;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.service-content__title {
  font-size: 16px;
  font-weight: 700;
  color: #003D55;
  margin-bottom: 0.5rem;
  text-align: center;
}

.service-content__list {
  padding-left: 1.2rem;
  margin: 0;
}

.service-content__list li {
  font-size: 15px;
  color: #003D55;
  line-height: 1.8;
  margin-bottom: 0.25rem;
  text-align: left;
}

.service-note {
  font-size: 13px;
  color: #005F80;
}

.service-enrollment {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #00BFFF;
  font-size: 13px;
  color: #003D55;
  font-weight: 600;
  text-align: center;
}

/* ===== Price table wrap (apply page) ===== */
.price-table-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1.5px solid #B3E8FF;
}

.price-table-wrap__title {
  font-size: 16px;
  font-weight: 700;
  color: #003D55;
  margin-bottom: 0.75rem;
  text-align: center;
}

.price-table-wrap__note {
  margin-top: 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.price-arrow {
  font-size: 28px;
  color: #00BFFF;
  font-weight: 700;
  line-height: 1;
}

.price-label {
  font-size: 23px;
  color: #0077AA;
  font-weight: 700;
  text-decoration: double underline #00BFFF;
}

/* ===== Form (freer-style) ===== */
.form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-header__title {
  font-size: 22px;
  font-weight: 700;
  color: #003D55;
  margin-bottom: 0.3rem;
}

.form-header__text {
  font-size: 15px;
  color: #005F80;
}

.form-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #E8ECF0;
}

.form-row:last-of-type {
  border-bottom: none;
}

.form-row__label {
  width: 180px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  color: #003D55;
  padding-top: 0.5rem;
}

.required-mark {
  display: inline-block;
  background: #E53935;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.optional-mark {
  display: inline-block;
  background: #999;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-row__input {
  flex: 1;
}

.form-row__input input,
.form-row__input select,
.form-row__input textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #D0D7DE;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #003D55;
  background: #F7FAFC;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.form-row__input input:focus,
.form-row__input select:focus,
.form-row__input textarea:focus {
  outline: none;
  border-color: #00BFFF;
  box-shadow: 0 0 0 3px rgba(0,191,255,0.15);
  background: #fff;
}

.form-row__input textarea {
  resize: vertical;
  min-height: 100px;
}

.form-agree {
  padding: 1.25rem 0 0.5rem;
  text-align: center;
}

.form-agree__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #003D55;
}

.form-agree__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00BFFF;
  cursor: pointer;
}

.form-submit {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 1.5rem auto 0;
  background: #00BFFF;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,191,255,0.35);
}

.form-success {
  display: none;
  text-align: center;
  color: #00BFFF;
  font-weight: 600;
  font-size: 16px;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 6px;
  }

  .form-row__label {
    width: auto;
  }

  .form-wrap {
    padding: 1.5rem 1rem;
  }

  .conditions-row {
    flex-direction: column;
    gap: 8px;
  }

  .service-content,
  .form-conditions {
    padding: 0.75rem 1rem;
  }
}

/* ===== FAQ accordion ===== */
.faq-list {
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #D0D7DE;
}

.faq-checkbox {
  display: none;
}

.faq-q label {
  display: block;
  padding: 1rem 0;
  font-size: 17px;
  font-weight: 600;
  color: #003D55;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
}

.faq-q label::after {
  content: 'く';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 18px;
  color: #00BFFF;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.faq-checkbox:checked + .faq-q label::after {
  transform: translateY(-50%) rotate(0deg);
}

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

.faq-checkbox:checked ~ .faq-a {
  max-height: 300px;
  padding-bottom: 1rem;
}

.faq-a p {
  font-size: 16px;
  color: #005F80;
  line-height: 1.8;
}

/* ===== Grade score table ===== */
.grade-score-table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
  font-size: 16px;
  margin: 0.75rem auto 1.25rem;
}

.grade-score-table th,
.grade-score-table td {
  padding: 0.4rem 0.8rem;
  border-bottom: 1px solid #E8ECF0;
  text-align: center;
}

.grade-score-table th {
  font-weight: 700;
  color: #003D55;
  background: #F0FAFF;
}

.grade-score-table td {
  color: #005F80;
}

/* ===== Flowchart ===== */
.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.flow-start {
  background: #003D55;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
}

.flow-arrow {
  color: #00BFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

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

.flow-question > p {
  background: #F0FAFF;
  border: 2px solid #00BFFF;
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-weight: 600;
  color: #003D55;
  margin-bottom: 0.3rem;
}

.flow-branches {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

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

.branch-label {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.branch-yes {
  background: #E8F5E9;
  color: #2E7D32;
}

.branch-no {
  background: #FBE9E7;
  color: #C62828;
}

.flow-results {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.flow-result {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.flow-result-ok {
  background: #E8F5E9;
  color: #2E7D32;
  border: 2px solid #4CAF50;
}

.flow-result-down {
  background: #FFF8E1;
  color: #E65100;
  border: 2px solid #FF9800;
}

/* ===== Step list ===== */
.step-list {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.step-list li {
  font-size: 16px;
  color: #005F80;
  line-height: 2;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 12px;
  color: #889;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-img {
    max-width: 300px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .program-card--row {
    flex-direction: column;
  }

  .program-card__monitor {
    min-width: auto;
  }

  .monitor-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .monitor-left {
    flex-wrap: wrap;
  }

  .monitor-text {
    font-size: 15px;
  }

  .monitor-text__sub {
    font-size: 13px;
    display: block;
    margin-left: 0;
  }

  .monitor-btn {
    width: 100%;
    text-align: center;
  }

  .feature-block {
    flex-direction: column;
    padding: 0 0.75rem;
  }

  .feature-img {
    max-width: 280px;
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 0.75rem;
  }
}

@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
    border-bottom: 2px solid #00BFFF;
    padding: 1rem;
    gap: 12px;
  }

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

  #features,
  #programs,
  #faq,
  #news,
  #contact,
  #strengths {
    scroll-margin-top: 60px;
  }

  body {
    padding-top: 58px;
  }

  .monitor-banner {
    position: static;
    padding: 0.75rem 1rem;
    gap: 8px;
  }

  .monitor-text {
    font-size: 13px;
  }

  .monitor-text__sub {
    font-size: 11px;
    display: block;
    margin-left: 0;
  }

  .monitor-badge {
    font-size: 10px;
    padding: 2px 8px;
  }

  .monitor-btn {
    font-size: 11px;
    padding: 8px 14px;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 2rem 1rem 1.5rem;
  }

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

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

  .hero-img {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero p {
    font-size: 14px;
  }

  .compare-table {
    font-size: 12px;
  }

  .compare-table thead tr th,
  .compare-table tbody tr td {
    padding: 0.5rem;
  }

  .clil-pillars,
  .mvv {
    grid-template-columns: 1fr;
  }

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

  .value-card {
    padding: 0.75rem;
  }

  .cta {
    padding: 1.5rem 1rem;
  }

  .cta h2 {
    font-size: 16px;
  }

  .cta p {
    font-size: 12px;
  }

  .program-card {
    padding: 1rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.4rem 0.6rem;
    font-size: 13px;
  }

  .monitor-price {
    font-size: 26px;
  }

  .form-wrap {
    padding: 1.25rem 0.75rem;
  }

  .form-row {
    flex-direction: column;
    gap: 4px;
  }

  .form-row__label {
    width: auto;
  }

  .flowchart {
    gap: 0.5rem;
  }

  .flow-question > p {
    font-size: 12px;
    padding: 0.4rem 0.8rem;
  }

  .flow-branches {
    gap: 1rem;
  }

  .flow-result {
    font-size: 12px;
    padding: 0.4rem 0.8rem;
  }

  .grade-score-table {
    font-size: 12px;
  }

  .grade-score-table th,
  .grade-score-table td {
    padding: 0.3rem 0.5rem;
  }

  .section-title {
  font-size: 16px;
  }

  .page {
    padding: 1.5rem 0.75rem;
  }

  .nav {
    padding: 0.3rem 0.5rem;
  }

  .nav-logo img {
    height: 32px;
  }

  .compare-img--top {
    transform: none;
    margin: 0 0 1.5rem;
  }

  .floating-btns {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
  }
  .float-btn svg {
    width: 22px;
    height: 22px;
  }

  .feature-block {
    flex-direction: column;
    padding: 0 0.75rem;
  }

  .feature-img {
    max-width: 280px;
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 0.75rem;
  }
}

/* ===== Floating Buttons ===== */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.float-btn svg {
  width: 28px;
  height: 28px;
}
.float-btn--line {
  background: #06C755;
}
.float-btn--contact {
  background: #003D55;
}
