@charset "UTF-8";

/* =========================================================
   ALPROS Goal Achievement LP
   Common Design System
========================================================= */

:root {
  /* Colors */
  --ga-color-black: #484848;
  --ga-color-text: #484848;
  --ga-color-gold: #CCAA5E;
  --ga-color-red: #c90012;
  --ga-color-white: #ffffff;
  --ga-color-bg: #ffffff;
  --ga-color-bg-light: #f8f7f3;
  --ga-color-border: #e5e1d8;

  /* Fonts */
  --ga-font-heading: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ga-font-body: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;

  /* Layout */
  --ga-container-width: 1200px;
  --ga-side-padding: 32px;
  --ga-section-space: 120px;

  /* Typography */
  --ga-font-body-size: 16px;
  --ga-line-height-body: 1.9;
  --ga-font-h1: 54px;
  --ga-line-height-h1: 1.45;
  --ga-font-h2: 48px;
  --ga-line-height-h2: 1.5;
  --ga-font-h3: 28px;
  --ga-line-height-h3: 1.6;

  /* UI */
  --ga-radius: 4px;
  --ga-transition: 0.3s ease;
}

/* =========================================================
   Reset / Base
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.ga-page {
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ga-color-text);
  font-family: var(--ga-font-body);
  font-size: var(--ga-font-body-size);
  font-weight: 400;
  line-height: var(--ga-line-height-body);
  background: var(--ga-color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ga-page.is-menu-open {
  overflow: hidden;
}

.ga-page h1,
.ga-page h2,
.ga-page h3,
.ga-page h4,
.ga-page h5,
.ga-page h6 {
  margin: 0;
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-weight: 600;
}

.ga-page h1 {
  font-size: var(--ga-font-h1);
  line-height: var(--ga-line-height-h1);
}

.ga-page h2 {
  font-size: var(--ga-font-h2);
  line-height: var(--ga-line-height-h2);
}

.ga-page h3 {
  font-size: var(--ga-font-h3);
  line-height: var(--ga-line-height-h3);
}

.ga-page p {
  margin: 0;
}

/* =========================================================
   Common Container
========================================================= */

.ga-container {
  width: min(calc(100% - (var(--ga-side-padding) * 2)), var(--ga-container-width));
  margin-inline: auto;
}

/* =========================================================
   Common Section
========================================================= */

.ga-section {
  padding-block: var(--ga-section-space);
}

.ga-section + .ga-section {
  padding-top: 0;
}

/* =========================================================
   Common Heading
========================================================= */

.ga-section-heading {
  margin-bottom: 56px;
  text-align: center;
}

.ga-section-heading__en {
  display: block;
  margin-bottom: 12px;
  color: var(--ga-color-gold);
  font-family: var(--ga-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ga-section-heading__title {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: var(--ga-font-h2);
  font-weight: 600;
  line-height: var(--ga-line-height-h2);
}

/* =========================================================
   Common Button
========================================================= */

.ga-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 36px;
  border: 0;
  border-radius: var(--ga-radius);
  font-family: var(--ga-font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: opacity var(--ga-transition), transform var(--ga-transition);
}

.ga-button--primary {
  color: var(--ga-color-white);
  background: var(--ga-color-red);
}

@media (hover: hover) {
  .ga-button:hover {
    opacity: 0.86;
    transform: translateY(-1px);
  }
}

/* =========================================================
   Global Header
========================================================= */

.ga-header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 88px;
  background: var(--ga-color-white);
  border-bottom: 1px solid rgba(72, 72, 72, 0.06);
}

.ga-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.ga-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.ga-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ga-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 216px;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--ga-color-white);
  background: var(--ga-color-red);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  box-shadow: 0 4px 14px rgba(201, 0, 18, 0.18);
  transition: opacity var(--ga-transition), transform var(--ga-transition);
}

.ga-header__menu-button {
  position: relative;
  display: grid;
  align-content: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ga-header__menu-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: rgba(72, 72, 72, 0.22);
}

.ga-header__menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  margin-left: auto;
  background: var(--ga-color-black);
}

@media (hover: hover) {
  .ga-header__cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }

  .ga-header__menu-button:hover span {
    background: var(--ga-color-gold);
  }
}

/* =========================================================
   Global Menu
========================================================= */

.ga-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.38);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.ga-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.ga-global-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: min(420px, 88vw);
  height: 100dvh;
  padding: 34px 34px 40px;
  background: var(--ga-color-white);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.32s ease, visibility 0.32s ease;
}

.ga-global-menu.is-open {
  visibility: visible;
  transform: translateX(0);
}

.ga-global-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ga-color-border);
}

.ga-global-menu__label {
  color: var(--ga-color-gold);
  font-family: var(--ga-font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.ga-global-menu__close {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ga-global-menu__close span {
  position: absolute;
  left: 8px;
  top: 21px;
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ga-color-black);
}

.ga-global-menu__close span:first-child {
  transform: rotate(45deg);
}

.ga-global-menu__close span:last-child {
  transform: rotate(-45deg);
}

.ga-global-menu__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ga-global-menu__list li {
  border-bottom: 1px solid var(--ga-color-border);
}

.ga-global-menu__list a {
  position: relative;
  display: block;
  padding: 20px 28px 20px 4px;
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.ga-global-menu__list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--ga-color-gold);
  border-right: 1px solid var(--ga-color-gold);
  transform: translateY(-50%) rotate(45deg);
}

.ga-global-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 5px;
  color: var(--ga-color-white);
  background: var(--ga-color-red);
  font-family: var(--ga-font-heading);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* =========================================================
   Section 01 : FV
========================================================= */

.ga-fv-wrap {
  width: 100%;
  background: linear-gradient(to top, #F9F7F5 10%, #FFF 60%)
}

.ga-fv {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 720px;
  margin-inline: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 23%, rgba(222, 235, 244, 0.72) 0, rgba(222, 235, 244, 0) 28%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #f3f8fb 72%, #eaf2f7 100%);
}

.ga-fv__photo {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
}

.ga-fv__photo img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
}

.ga-fv__photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.93) 30%, rgba(255, 255, 255, 0) 100%);
}

.ga-fv__photo-fade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 45%, rgba(255,255,255,0.05) 60%, rgba(255,255,255,0) 100%);
}

.ga-fv__inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 720px;
}

.ga-fv__copy {
  width: 58%;
  max-width: 620px;
  padding-block: 48px;
}

.ga-page .ga-fv__title {
  margin-bottom: 22px;
  color: var(--ga-color-black);
  font-size: clamp(48px, 5.4vw, 68px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.28;
}

.ga-fv__subcopy {
  margin-bottom: 18px;
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.55;
}

.ga-fv__guarantee {
  position: relative;
  width: min(100%, 430px);
  margin-bottom: 24px;
  padding: 12px 26px 14px;
  color: #986e10;
  font-family: var(--ga-font-heading);
  font-size: clamp(24px, 2.55vw, 31px);
  font-weight: 500;
  line-height: 1.42;
  text-align: center;
}

.ga-fv__guarantee::before,
.ga-fv__guarantee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  border-top: 3px solid var(--ga-color-gold);
  border-bottom: 3px solid var(--ga-color-gold);
}

.ga-fv__guarantee::before {
  left: 0;
  border-left: 3px solid var(--ga-color-gold);
}

.ga-fv__guarantee::after {
  right: 0;
  border-right: 3px solid var(--ga-color-gold);
}

.ga-fv__guarantee strong {
  font-weight: 600;
}

.ga-fv__meta {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.ga-fv__decor {
  position: absolute;
  z-index: 3;
  width: 86px;
  height: 86px;
  pointer-events: none;
  background: linear-gradient(135deg, #e7d19a 0%, var(--ga-color-gold) 52%, #a98436 100%);
}

.ga-fv__decor--top-left {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* =========================================================
   Sections 02 - 08 placeholders
========================================================= */

.ga-voice {}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 900px) {
  .ga-header__logo img {
    width: 150px;
  }

  .ga-fv__copy {
    width: 62%;
  }

  .ga-fv__photo {
    right: -62px;
  }
}

@media (max-width: 767px) {
  :root {
    --ga-side-padding: 18px;
    --ga-section-space: 72px;
    --ga-font-body-size: 15px;
    --ga-font-h1: 34px;
    --ga-line-height-h1: 1.45;
    --ga-font-h2: 30px;
    --ga-line-height-h2: 1.55;
    --ga-font-h3: 22px;
    --ga-line-height-h3: 1.6;
  }

  .ga-section-heading {
    margin-bottom: 36px;
  }

  .ga-button {
    width: 100%;
    min-height: 58px;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Header */
  .ga-header {
    height: 66px;
  }

  .ga-header__logo img {
    width: 118px;
  }

  .ga-header__actions {
    gap: 8px;
  }

  .ga-header__cta {
    min-width: 0;
    width: 146px;
    min-height: 40px;
    padding: 7px 9px;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
  }

  .ga-header__menu-button {
    width: 40px;
    height: 40px;
    gap: 5px;
    padding: 7px 4px 7px 9px;
  }

  .ga-header__menu-button::before {
    top: 4px;
    bottom: 4px;
  }

  .ga-header__menu-button span {
    width: 24px;
  }

  /* Menu */
  .ga-global-menu {
    width: min(360px, 92vw);
    padding: 24px 22px 28px;
  }

  .ga-global-menu__label {
    font-size: 18px;
  }

  .ga-global-menu__list a {
    padding-block: 18px;
    font-size: 16px;
  }

  /* FV */
  .ga-fv {
    min-height: 620px;
    background: #ffffff;
  }

  .ga-fv__inner {
    min-height: 620px;
  }

  /* 人物写真をFV上部中央に配置 */
  .ga-fv__photo {
    top: 0;
    right: auto;
    bottom: auto;
    left: 20%;
    width: 160%;
    height: auto;
    transform: translateX(-50%);
  }

  .ga-fv__photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: initial;
  }

  /* PC用の左→右フェードはSPでは使わない */
  .ga-fv__photo::before {
    content: none;
  }

  /* テキスト背面に、下から上へ白くぼかす */
  .ga-fv__photo-fade {
    z-index: 4;
    background: linear-gradient(
      to top,
      #ffffff 0%,
      rgba(255, 255, 255, 0.99) 32%,
      rgba(255, 255, 255, 0.92) 50%,
      rgba(255, 255, 255, 0.55) 66%,
      rgba(255, 255, 255, 0) 82%
    );
  }

  /* テキストを中央下部に配置 */
  .ga-fv__copy {
    position: absolute;
    z-index: 6;
    bottom: 22px;
    left: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .ga-page .ga-fv__title {
    margin-bottom: 12px;
    font-size: clamp(28px, 8vw, 43px);
    line-height: 1.33;
  }

  .ga-fv__subcopy {
    margin-bottom: 10px;
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .ga-fv__guarantee {
    width: min(100%, 340px);
    margin: 0 auto 12px;
    padding: 8px 20px 10px;
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.42;
  }

  .ga-fv__guarantee::before,
  .ga-fv__guarantee::after {
    width: 13px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .ga-fv__guarantee::before {
    border-left-width: 2px;
  }

  .ga-fv__guarantee::after {
    border-right-width: 2px;
  }

  .ga-fv__meta {
    position: relative;
    z-index: 8;
    font-size: clamp(12px, 3.3vw, 14px);
    line-height: 1.55;
    text-align: center;
  }

  .ga-fv__decor {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 390px) {
  .ga-header__logo img {
    width: 104px;
  }

  .ga-header__cta {
    width: 130px;
    font-size: 10px;
  }


  .ga-fv__guarantee {
    max-width: 100%;
    font-size: 18px;
  }
}

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

  .ga-menu-overlay,
  .ga-global-menu,
  .ga-button,
  .ga-header__cta {
    transition: none;
  }
}
/* =========================================================
   Section 02 : Voice
   Scoped under #voice / .ga-voice so other sections are not affected.
========================================================= */
.ga-voice {
  --ga-voice-gold: #CCAA5E;
  --ga-voice-red: #c90012;
  --ga-voice-text: #484848;
  --ga-voice-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ga-voice-sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  overflow: hidden;
  color: var(--ga-voice-text);
  background: #f9f7f5;
}

.ga-voice *,
.ga-voice *::before,
.ga-voice *::after { box-sizing: border-box; }

.ga-voice__heading,
.ga-voice-results__heading { text-align: center; }

.ga-voice__eyebrow {
  margin: 0 0 12px;
  color: var(--ga-voice-gold);
  font-family: var(--ga-voice-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
}

.ga-voice__title,
.ga-voice-results__title {
  margin: 0;
  color: #202020;
  font-family: var(--ga-voice-serif);
  font-weight: 500;
  letter-spacing: .02em;
}

.ga-voice__title {
  font-size: clamp(38px, 4.25vw, 54px);
  line-height: 1.35;
}

/* ---------- Carousel ---------- */
.ga-voice-carousel {
  position: relative;
  margin-top: clamp(36px, 4.3vw, 52px);
  padding: 0 1px 48px;
}

.ga-voice-carousel__viewport { overflow: hidden; }

.ga-voice-carousel__track {
  display: flex;
  gap: 14px;
  will-change: transform;
  touch-action: pan-y;
}

.ga-voice-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  padding: 15px 14px 24px;
  background: #fff;
  border: 1px solid #e9e7e2;
  border-radius: 3px;
  box-shadow: 0 7px 22px rgba(39, 34, 27, .08);
  font-family: var(--ga-voice-serif);
}

.ga-voice-card__head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  min-height: 34px;
  padding: 0 6px 8px;
}

.ga-voice-card__case,
.ga-voice-card__category { margin: 0; }

.ga-voice-card__case {
  color: #80662f;
  font-size: 16px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.ga-voice-card__case strong { font-size: 22px; font-weight: 500; }
.ga-voice-card__category { color: #303030; font-size: 17px; font-weight: 600; }

.ga-voice-card__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
}

.ga-voice-card__score {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 61px;
  padding: 8px 4px 6px;
}

.ga-voice-card__score-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

.ga-voice-card__score-main { min-width: 0; }
.ga-voice-card__score-name {
  margin: 0 0 2px;
  color: #444;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .015em;
  line-height: 1.1;
  white-space: nowrap;
}

.ga-voice-card__score-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  color: #373737;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1;
  white-space: nowrap;
}
.ga-voice-card__score-value i { font-style: normal; font-size: .7em; }
.ga-voice-card__score-value strong { color: var(--ga-voice-red); font-weight: 500; }
.ga-voice-card__score-value--cefr { gap: 5px; }

.ga-voice-card__before {
  min-height: 58px;
  padding: 8px 9px 9px;
  background: linear-gradient(110deg, #f8f8f7, #fbfbfb);
  border-radius: 4px;
}
.ga-voice-card__before p { margin: 0; }
.ga-voice-card__before > p:last-child {
  margin-top: 2px;
  color: #444;
  font-size: 15px;
  line-height: 1.45;
}

.ga-voice-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.1;
}
.ga-voice-card__label--before { color: #9a7a39; }
.ga-voice-card__label--after { color: var(--ga-voice-red); }

.ga-voice-card__after { padding: 17px 8px 0; }
.ga-voice-card__after h3 {
  margin: 5px 0 13px;
  color: var(--ga-voice-red);
  font-family: var(--ga-voice-serif);
  font-size: clamp(18px, 1.75vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}
.ga-voice-card__text {
  margin: 0;
  color: #555;
  font-family: var(--ga-voice-serif);
  font-size: 14px;
  line-height: 1.75;
}

.ga-voice-carousel__arrow {
  position: absolute;
  z-index: 5;
  top: calc(50% - 30px);
  width: 42px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.ga-voice-carousel__arrow--prev { left: -38px; }
.ga-voice-carousel__arrow--next { right: -38px; }
.ga-voice-carousel__arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-top: 2px solid #1f1f1f;
  border-right: 2px solid #1f1f1f;
}
.ga-voice-carousel__arrow--prev span { transform: translate(-35%, -50%) rotate(-135deg); }
.ga-voice-carousel__arrow--next span { transform: translate(-65%, -50%) rotate(45deg); }
.ga-voice-carousel__arrow:focus-visible { outline: 2px solid var(--ga-voice-gold); outline-offset: 2px; }

.ga-voice-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  display: flex;
  gap: 13px;
  transform: translateX(-50%);
}
.ga-voice-carousel__dot {
  width: 11px;
  height: 11px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
}
.ga-voice-carousel__dot.is-active { background: #ae8b3f; }
.ga-voice-carousel__dot:focus-visible { outline: 2px solid var(--ga-voice-gold); outline-offset: 3px; }

/* ---------- Results ---------- */
.ga-voice-results {
  position: relative;
  isolation: isolate;
  margin-top: clamp(66px, 7vw, 90px);
  padding: clamp(44px, 5vw, 66px) 0 clamp(42px, 5vw, 64px);
  background: #f7f5ef url("../img/voice-results-bg.png") center bottom / cover no-repeat;
}

.ga-voice-results::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.38) 0%, rgba(255,255,255,.13) 60%, rgba(255,255,255,.06) 100%);
  pointer-events: none;
}

.ga-voice-results__title {
  font-size: clamp(38px, 4.1vw, 52px);
  line-height: 1.27;
}

.ga-voice-results__line {
  display: block;
  width: 58px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--ga-voice-gold);
}

.ga-voice-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(42px, 6vw, 76px);
  max-width: 980px;
  margin: clamp(30px, 3.5vw, 46px) auto 0;
}

.ga-voice-result {
  padding: 18px 16px 20px;
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  text-align: center;
  font-family: var(--ga-voice-serif);
}

.ga-voice-result__icon-wrap {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  margin: 0 auto 8px;
  border: 1.5px solid rgba(204,170,94,.88);
  border-right-color: rgba(204,170,94,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.79);
}
.ga-voice-result__icon-wrap img { width: 54px; height: 54px; }

.ga-voice-result__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0;
  white-space: nowrap;
}
.ga-voice-result__number strong {
  color: #b58d3d;
  font-size: clamp(41px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
}
.ga-voice-result__number span {
  color: #282828;
  font-size: 16px;
  font-weight: 600;
}

.ga-voice-result h3 {
  width: fit-content;
  margin: 8px auto 11px;
  padding: 0 0 9px;
  border-bottom: 1px solid #595959;
  color: #222;
  font-family: var(--ga-voice-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.ga-voice-result > p:not(.ga-voice-result__number):not(.ga-voice-result__companies) {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.ga-voice-result > .ga-voice-result__companies {
  margin-top: 14px;
  color: #666;
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .ga-voice-carousel { margin-inline: 28px; }
  .ga-voice-carousel__arrow--prev { left: -38px; }
  .ga-voice-carousel__arrow--next { right: -38px; }
  .ga-voice-card__head { gap: 14px; }
  .ga-voice-card__after h3 { font-size: 18px; }
  .ga-voice-card__text { font-size: 13px; }
}

@media (max-width: 767px) {
  .ga-voice__eyebrow { margin-bottom: 9px; font-size: 11px; }
  .ga-voice__title { font-size: clamp(27px, 8vw, 34px); line-height: 1.48; }
  .ga-voice__title br { display: none; }

  .ga-voice-carousel {
    margin-top: 28px;
    margin-inline: 0;
    padding-bottom: 43px;
  }
  .ga-voice-carousel__track { gap: 12px; }
  .ga-voice-card {
    flex-basis: 100%;
    padding: 13px 12px 22px;
  }
  .ga-voice-card__head { min-height: 31px; gap: 18px; padding-inline: 4px; }
  .ga-voice-card__case { font-size: 14px; }
  .ga-voice-card__case strong { font-size: 19px; }
  .ga-voice-card__category { font-size: 15px; }
  .ga-voice-card__score { min-height: 57px; }
  .ga-voice-card__score-value { font-size: 24px; }
  .ga-voice-card__before > p:last-child { font-size: 14px; }
  .ga-voice-card__after { padding-top: 15px; }
  .ga-voice-card__after h3 { font-size: 20px; }
  .ga-voice-card__text { font-size: 14px; }

  .ga-voice-carousel__arrow {
    top: calc(50% - 27px);
    width: 38px;
    height: 54px;
    background: rgba(255,255,255,.76);
    border-radius: 2px;
  }
  .ga-voice-carousel__arrow--prev { left: -7px; }
  .ga-voice-carousel__arrow--next { right: -7px; }

  .ga-voice-results {
    margin-top: 52px;
    padding: 44px 0 52px;
    background-position: 52% bottom;
  }
  .ga-voice-results__title { font-size: clamp(29px, 8.2vw, 36px); line-height: 1.35; }
  .ga-voice-results__line { width: 46px; margin-top: 14px; }
  .ga-voice-results__grid {
    grid-template-columns: 1fr;
    gap: 39px;
    max-width: 390px;
    margin-top: 34px;
  }
  .ga-voice-result {
    padding: 10px 16px 18px;
  }
  .ga-voice-result__icon-wrap { width: 94px; height: 94px; }
  .ga-voice-result__icon-wrap img { width: 48px; height: 48px; }
  .ga-voice-result__number strong { font-size: 43px; }
  .ga-voice-result h3 { font-size: 18px; }
  .ga-voice-result > .ga-voice-result__companies { margin-top: 12px; font-size: 10px; }
}

/* =========================================================
   Section 03 : Feature
   Scoped under #feature / .ga-feature.
========================================================= */

.ga-feature {
  overflow: hidden;
  padding-bottom: calc(var(--ga-section-space) / 2);
  background: #f9f7f5;
}

.ga-feature__heading {
  margin-bottom: 42px;
  text-align: center;
}

.ga-feature__eyebrow {
  margin-bottom: 12px;
  color: var(--ga-color-gold);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.ga-feature__title {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: var(--ga-font-h2);
  font-weight: 600;
  line-height: var(--ga-line-height-h2);
}

/* ---------- Problems ---------- */

.ga-feature__problems {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 1100px;
  margin-inline: auto;
}

.ga-feature-problem {
  display: grid;
  grid-template-columns: 41% minmax(0, 1fr);
  min-width: 0;
  min-height: 162px;
  padding: 4px 8px 4px 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e7e3dc;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(55, 47, 37, 0.07);
}

.ga-feature-problem__photo {
  width: 100%;
  height: 100%;
  min-height: 152px;
  object-fit: cover;
}

.ga-feature-problem__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 12px 14px 12px 22px;
  background: linear-gradient(110deg, rgba(248, 248, 247, 0.82), rgba(255, 255, 255, 0.92));
}

.ga-feature-problem__label {
  margin-bottom: 8px;
  color: #9a7a39;
  font-family: var(--ga-font-heading);
  font-size: 15px;
  line-height: 1.2;
}

.ga-feature-problem__label strong {
  margin-left: 4px;
  font-size: 22px;
  font-weight: 500;
}

.ga-feature-problem__text {
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 16px;
  line-height: 1.65;
}

.ga-feature__cross {
  width: 42px;
  height: 42px;
  margin-inline: auto;
}

/* ---------- W system bridge ---------- */

.ga-feature__bridge {
  padding: 28px 0 0;
  text-align: center;
}

.ga-feature__bridge-arrow {
  width: 36px;
  height: 38px;
  margin: 0 auto 34px;
}

.ga-feature-system {
  --ga-feature-system-gold: #b8892e;
  --ga-feature-system-gold-light: #d6b158;
  max-width: 1020px;
  margin-inline: auto;
  font-family: var(--ga-font-heading);
}

.ga-feature-system__groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.ga-feature-system__group {
  position: relative;
  padding: 34px 24px 20px;
  border: 1px solid rgba(184, 137, 46, 0.62);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
}

.ga-feature-system__badge {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 186px;
  padding: 8px 28px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(110deg, #c99b3c 0%, #d8b85f 50%, #b78324 100%);
  font-family: var(--ga-font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.ga-feature-system__pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.ga-feature-system__node {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(100%, 160px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  padding: 18px 12px 14px;
  border: 1px solid rgba(184, 137, 46, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.ga-feature-system__node img {
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
}

.ga-feature-system__node span {
  color: #292929;
  font-family: var(--ga-font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.ga-feature-system__operator,
.ga-feature-system__plus {
  color: var(--ga-feature-system-gold);
  font-family: var(--ga-font-heading);
  font-weight: 400;
  line-height: 1;
}

.ga-feature-system__operator {
  font-size: 38px;
}

.ga-feature-system__plus {
  font-size: 36px;
}

.ga-feature-system__connector {
  position: relative;
  height: 64px;
}

.ga-feature-system__branch {
  position: absolute;
  top: 0;
  display: block;
  width: 25%;
  height: 30px;
  border-bottom: 2px solid var(--ga-feature-system-gold);
}

.ga-feature-system__branch--left {
  left: 25%;
  border-left: 2px solid var(--ga-feature-system-gold);
  border-bottom-left-radius: 18px;
}

.ga-feature-system__branch--right {
  left: 50%;
  border-right: 2px solid var(--ga-feature-system-gold);
  border-bottom-right-radius: 18px;
}

.ga-feature-system__connector-arrow {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 36px;
  height: 38px;
  transform: translateX(-50%);
}

.ga-feature-system__results {
  display: grid;
  grid-template-columns: 136px 78px minmax(154px, 190px) 78px 136px;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.ga-feature-system__result {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 136px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  color: #ffffff;
  background: radial-gradient(circle at 34% 28%, #ddbf70 0%, #c79b3d 48%, #ab7922 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.ga-feature-system__result img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}

.ga-feature-system__result span {
  font-family: var(--ga-font-heading);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.ga-feature-system__result-arrow {
  position: relative;
  display: block;
  height: 24px;
  margin-inline: 8px;
}

.ga-feature-system__result-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  border-top: 2px solid var(--ga-feature-system-gold);
  transform: translateY(-50%);
}

.ga-feature-system__result-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--ga-feature-system-gold);
  border-right: 2px solid var(--ga-feature-system-gold);
}

.ga-feature-system__result-arrow--left::after {
  left: 4px;
  transform: translateY(-50%) rotate(-135deg);
}

.ga-feature-system__result-arrow--right::after {
  right: 4px;
  transform: translateY(-50%) rotate(45deg);
}

.ga-feature-system__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  color: #404040;
}

.ga-feature-system__link img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

.ga-feature-system__link span {
  font-family: var(--ga-font-heading);
  font-size: 16px;
  line-height: 1.45;
}

.ga-feature__heading--coordination {
  margin-top: 56px;
}

/* ---------- Feature Cards ---------- */

.ga-feature__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  max-width: 1140px;
  margin-inline: auto;
}

.ga-feature-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px 20px 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #ebe7df;
  border-radius: 3px;
  box-shadow: 0 7px 22px rgba(54, 45, 35, 0.055);
}

.ga-feature-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  margin-bottom: 10px;
}

.ga-feature-card__index {
  flex: 0 0 50px;
  text-align: center;
}

.ga-feature-card__index strong,
.ga-feature-card__index span {
  display: block;
  font-family: var(--ga-font-heading);
}

.ga-feature-card__index strong {
  color: #a47d2f;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.ga-feature-card__index span {
  position: relative;
  margin-top: 7px;
  color: #b48b3d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

.ga-feature-card__index span::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 45px;
  height: 1px;
  background: #c8aa69;
  transform: translateX(-50%);
}

.ga-feature-card__head h3 {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.45;
}

.ga-feature-card__photo {
  width: 100%;
  aspect-ratio: 1.76 / 1;
  object-fit: cover;
}

.ga-feature-card__intro {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.ga-feature-card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, #b98e3a, #d0b265);
  font-family: var(--ga-font-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.ga-feature-card__intro p {
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 13px;
  line-height: 1.7;
}

/* Five-step skill flow */
.ga-feature-skills {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ga-feature-skills li {
  position: relative;
  min-width: 0;
  text-align: center;
}

.ga-feature-skills li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -11px;
  width: 22px;
  height: 12px;
  background: url("../img/feature-skill-arrow.svg") center / contain no-repeat;
}

.ga-feature-skills__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 8px;
  border: 1px solid rgba(184, 137, 46, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.ga-feature-skills__icon img {
  width: 44px;
  height: 44px;
}

.ga-feature-skills li > span:last-child {
  display: block;
  color: #393939;
  font-family: var(--ga-font-heading);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

.ga-feature-card__closing {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

/* ---------- Tablet ---------- */

@media (max-width: 1000px) {
  .ga-feature__problems {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: 12px;
  }

  .ga-feature-problem {
    grid-template-columns: 38% minmax(0, 1fr);
  }

  .ga-feature-problem__body {
    padding-inline: 16px 10px;
  }

  .ga-feature-problem__text {
    font-size: 14px;
  }

  .ga-feature-system {
    max-width: 900px;
  }

  .ga-feature-system__groups {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: 12px;
  }

  .ga-feature-system__group {
    padding: 30px 14px 16px;
  }

  .ga-feature-system__badge {
    min-width: 158px;
    padding: 7px 20px 8px;
    font-size: 19px;
  }

  .ga-feature-system__pair {
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
    gap: 5px;
  }

  .ga-feature-system__node {
    width: min(100%, 122px);
    padding: 14px 8px 10px;
  }

  .ga-feature-system__node img {
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
  }

  .ga-feature-system__node span {
    font-size: 13px;
  }

  .ga-feature-system__operator {
    font-size: 30px;
  }

  .ga-feature-system__plus {
    font-size: 30px;
  }

  .ga-feature-system__results {
    grid-template-columns: 118px 58px minmax(130px, 166px) 58px 118px;
  }

  .ga-feature-system__result {
    width: 118px;
  }

  .ga-feature-system__result span {
    font-size: 23px;
  }

  .ga-feature-system__link span {
    font-size: 14px;
  }

  .ga-feature__cards {
    gap: 18px;
  }

  .ga-feature-card {
    padding: 18px 16px 24px;
  }

  .ga-feature-card__head h3 {
    font-size: 21px;
  }

  .ga-feature-card__intro p {
    font-size: 12px;
  }

  .ga-feature-skills__icon {
    width: 54px;
    height: 54px;
  }

  .ga-feature-skills__icon img {
    width: 34px;
    height: 34px;
  }

  .ga-feature-skills li:not(:last-child)::after {
    top: 23px;
    right: -9px;
    width: 18px;
    height: 10px;
  }

  .ga-feature-skills li > span:last-child {
    font-size: 12px;
  }
}

/* ---------- Smartphone ---------- */

@media (max-width: 767px) {
  .ga-feature__heading {
    margin-bottom: 30px;
  }

  .ga-feature__eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .ga-feature__title {
    font-size: var(--ga-font-h2);
    line-height: var(--ga-line-height-h2);
  }

  .ga-feature__problems {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
  }

  .ga-feature-problem {
    grid-template-columns: 38% minmax(0, 1fr);
    min-height: 128px;
  }

  .ga-feature-problem__photo {
    min-height: 120px;
  }

  .ga-feature-problem__body {
    padding: 10px 10px 10px 14px;
  }

  .ga-feature-problem__label {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .ga-feature-problem__label strong {
    font-size: 18px;
  }

  .ga-feature-problem__text {
    font-size: 12px;
    line-height: 1.65;
  }

  .ga-feature__cross {
    width: 32px;
    height: 32px;
    transform: rotate(0deg);
  }

  .ga-feature__bridge {
    padding-top: 24px;
  }

  .ga-feature__bridge-arrow {
    width: 30px;
    height: 32px;
    margin-bottom: 28px;
  }

  .ga-feature-system {
    max-width: 520px;
  }

  .ga-feature-system__groups {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ga-feature-system__group {
    padding: 30px 12px 16px;
  }

  .ga-feature-system__plus {
    font-size: 26px;
    transform: translateY(-10px);
  }

  .ga-feature-system__pair {
    grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
    gap: 4px;
  }

  .ga-feature-system__node {
    width: min(100%, 116px);
    padding: 13px 7px 10px;
  }

  .ga-feature-system__node img {
    width: 43px;
    height: 43px;
    margin-bottom: 7px;
  }

  .ga-feature-system__node span {
    font-size: 12px;
  }

  .ga-feature-system__operator {
    font-size: 27px;
  }

  .ga-feature-system__connector {
    height: 40px;
  }

  .ga-feature-system__branch--left,
  .ga-feature-system__branch--right {
    display: none;
  }

  .ga-feature-system__connector-arrow {
    top: 0;
    width: 30px;
    height: 32px;
  }

  .ga-feature-system__results {
    grid-template-columns: 88px minmax(18px, 28px) 88px minmax(18px, 28px) 88px;
  }

  .ga-feature-system__result {
    width: 88px;
  }

  .ga-feature-system__result img {
    width: 30px;
    height: 30px;
    margin-bottom: 3px;
  }

  .ga-feature-system__result span {
    font-size: 19px;
  }

  .ga-feature-system__result-arrow {
    margin-inline: 3px;
  }

  .ga-feature-system__result-arrow::before {
    left: 2px;
    right: 2px;
    border-top-width: 1.5px;
  }

  .ga-feature-system__result-arrow::after {
    width: 7px;
    height: 7px;
    border-top-width: 1.5px;
    border-right-width: 1.5px;
  }

  .ga-feature-system__link img {
    width: 35px;
    height: 35px;
    margin-bottom: 3px;
  }

  .ga-feature-system__link span {
    font-size: 10px;
    line-height: 1.4;
  }

  .ga-feature__heading--coordination {
    margin-top: 36px;
  }

  .ga-feature__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 20px;
  }

  .ga-feature-card {
    padding: 16px 14px 22px;
  }

  .ga-feature-card__head {
    gap: 10px;
    min-height: 48px;
  }

  .ga-feature-card__index {
    flex-basis: 46px;
  }

  .ga-feature-card__index strong {
    font-size: 24px;
  }

  .ga-feature-card__head h3 {
    font-size: 20px;
  }

  .ga-feature-card__intro {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }

  .ga-feature-card__tag {
    min-height: 38px;
    font-size: 16px;
  }

  .ga-feature-card__intro p {
    font-size: 12px;
  }

  .ga-feature-skills {
    margin-top: 18px;
  }

  .ga-feature-skills__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
  }

  .ga-feature-skills__icon img {
    width: 30px;
    height: 30px;
  }

  .ga-feature-skills li:not(:last-child)::after {
    top: 20px;
    right: -8px;
    width: 16px;
    height: 9px;
  }

  .ga-feature-skills li > span:last-child {
    font-size: 10px;
  }

  .ga-feature-card__closing {
    padding-top: 18px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .ga-feature-problem {
    grid-template-columns: 36% minmax(0, 1fr);
  }

  .ga-feature-problem__text {
    font-size: 11px;
  }

  .ga-feature-system__badge {
    min-width: 146px;
    font-size: 17px;
  }

  .ga-feature-system__node {
    width: min(100%, 104px);
  }

  .ga-feature-system__node img {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
  }

  .ga-feature-system__node span {
    font-size: 11px;
  }

  .ga-feature-system__results {
    grid-template-columns: 82px minmax(18px, 24px) 78px minmax(18px, 24px) 82px;
  }

  .ga-feature-system__result {
    width: 82px;
  }

  .ga-feature-system__link span {
    font-size: 9px;
  }

  .ga-feature-skills__icon {
    width: 43px;
    height: 43px;
  }

  .ga-feature-skills__icon img {
    width: 27px;
    height: 27px;
  }

  .ga-feature-skills li:not(:last-child)::after {
    top: 18px;
    width: 14px;
  }

  .ga-feature-skills li > span:last-child {
    font-size: 9px;
  }
}

/* =========================================================
   Section 04 : Flow
   Scoped under #flow / .ga-flow.
========================================================= */

.ga-feature + .ga-flow {
  padding-top: calc(var(--ga-section-space) / 2);
}

.ga-flow {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.ga-flow::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: 0.75;
  background: linear-gradient(135deg, #eae1ce 0 16%, rgba(234, 225, 206, 0.38) 16% 31%, transparent 31%);
}

.ga-flow__inner {
  position: relative;
  z-index: 1;
}

.ga-flow__heading {
  margin-bottom: 42px;
  text-align: center;
}

.ga-flow__eyebrow {
  margin-bottom: 12px;
  color: var(--ga-color-gold);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.ga-flow__title {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: var(--ga-font-h2);
  font-weight: 600;
  line-height: 1.46;
}

.ga-flow__heading > .ga-flow__lead {
  max-width: 920px;
  margin: 20px auto 0;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: var(--ga-font-body-size);
  line-height: var(--ga-line-height-body);
  text-align: center;
}

/* ---------- Teacher headers / framed panels ---------- */

.ga-flow-practice-panel,
.ga-flow-versant-panel {
  max-width: 1160px;
  margin-inline: auto;
  padding: 10px 8px 8px;
  border: 1px solid rgba(204, 170, 94, 0.78);
  background: rgba(255, 255, 255, 0.78);
}

.ga-flow-teacher-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 285px;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  margin-bottom: 8px;
  padding: 8px 24px;
  background: linear-gradient(90deg, rgba(249, 247, 241, 0.88) 0%, #ffffff 50%, rgba(249, 247, 241, 0.88) 100%);
}

.ga-flow-teacher-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.ga-flow-teacher-head__icon img {
  width: 104px;
  height: 78px;
  object-fit: contain;
}

.ga-flow-teacher-head__title-wrap {
  display: grid;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.ga-flow-teacher-head__line {
  display: block;
  height: 1px;
  background: rgba(184, 137, 46, 0.82);
}

.ga-flow-teacher-head__title-wrap h3 {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: clamp(25px, 2.65vw, 31px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.ga-flow-teacher-head__title-wrap h3 span {
  color: rgba(72, 72, 72, 0.55);
  font-weight: 400;
}

.ga-flow-teacher-head__copy {
  color: var(--ga-color-text);
  font-family: var(--ga-font-body);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- 5 Step Flow ---------- */

.ga-flow-carousel {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.ga-flow-carousel__viewport {
  overflow: visible;
}

.ga-flow-carousel__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.ga-flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 10px 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #e7e4df;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(50, 42, 32, 0.05);
}

.ga-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 136px;
  right: -18px;
  width: 28px;
  height: 42px;
  background: url("../img/flow-arrow-right.svg") center / contain no-repeat;
}

.ga-flow-step__head {
  text-align: center;
}

.ga-flow-step__number {
  color: #a87828;
  font-family: var(--ga-font-heading);
  line-height: 1;
}

.ga-flow-step__number span {
  margin-right: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ga-flow-step__number strong {
  font-size: 25px;
  font-weight: 500;
}

.ga-flow-step__head h3 {
  margin-top: 8px;
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.ga-flow-step__visual {
  width: 100%;
  height: 145px;
  margin-top: 10px;
  object-fit: contain;
  background: #fff;
}

.ga-flow-step__visual--tall {
  height: 190px;
}

.ga-flow-step__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 4px 0;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 12px;
  line-height: 1.65;
}

.ga-flow-step__divider {
  display: block;
  width: 28px;
  height: 1px;
  margin: 32px auto;
  background: #c69b45;
}

.ga-flow-step__summary {
  margin-top: auto;
}

.ga-flow-step__quote {
  margin-bottom: 8px;
  font-size: 11px;
  white-space: nowrap;
}

/* carousel controls are mobile-only */
.ga-flow-carousel__arrow,
.ga-flow-carousel__dots {
  display: none;
}

/* ---------- Linkage ---------- */

.ga-flow-linkage {
  position: relative;
  width: min(86%, 890px);
  height: 102px;
  margin: 0 auto 24px;
}

.ga-flow-linkage__curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 62px;
  border-right: 2px solid rgba(184, 137, 46, 0.9);
  border-bottom: 2px solid rgba(184, 137, 46, 0.9);
  border-left: 2px solid rgba(184, 137, 46, 0.9);
  border-radius: 0 0 24px 24px;
}

.ga-flow-linkage__label {
  position: absolute;
  top: 42px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 52px;
  padding: 8px 30px;
  color: #7d5514;
  background: #ffffff;
  border: 1.5px solid rgba(184, 137, 46, 0.9);
  font-family: var(--ga-font-heading);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(82, 61, 26, 0.05);
}

.ga-flow-linkage__label::before,
.ga-flow-linkage__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-top: 1.5px solid rgba(184, 137, 46, 0.9);
  border-right: 1.5px solid rgba(184, 137, 46, 0.9);
}

.ga-flow-linkage__label::before {
  left: -10px;
  transform: translateY(-50%) rotate(-135deg);
}

.ga-flow-linkage__label::after {
  right: -10px;
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- VERSANT question-type training ---------- */

.ga-flow-versant__heading {
  display: grid;
  grid-template-columns: minmax(32px, 1fr) auto minmax(32px, 1fr);
  align-items: center;
  gap: 18px;
  margin: 4px 58px 8px;
}

.ga-flow-versant__heading span {
  display: block;
  height: 1px;
  background: rgba(184, 137, 46, 0.78);
}

.ga-flow-versant__heading p {
  color: #9b6e20;
  font-family: var(--ga-font-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.ga-flow-versant__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.ga-flow-versant-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 188px;
  padding: 14px 10px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e7e4df;
  box-shadow: 0 4px 14px rgba(50, 42, 32, 0.035);
  text-align: center;
}

.ga-flow-versant-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 7px;
  object-fit: contain;
}

.ga-flow-versant-card h4 {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.ga-flow-versant-card__text {
  margin-top: 7px;
  color: var(--ga-color-text);
  font-family: var(--ga-font-body);
  font-size: 12px;
  line-height: 1.55;
}

.ga-flow-versant-card__focus {
  width: 100%;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(204, 170, 94, 0.7);
  color: #9a6b1f;
  font-family: var(--ga-font-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- Closing ---------- */

.ga-flow__closing {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 36px;
  padding: 56px 0 64px;
  overflow: hidden;
  background: #f8fafb url("../img/flow-closing-bg.png") center bottom / 100% auto no-repeat;
}

.ga-flow__closing::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: 0.75;
  background: linear-gradient(315deg, #eee6d5 0 14%, rgba(238, 230, 213, 0.35) 14% 28%, transparent 28%);
}

.ga-flow__closing-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ga-flow__closing-lead {
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 15px;
}

.ga-flow__closing-line {
  display: block;
  width: 38px;
  height: 1px;
  margin: 9px auto 8px;
  background: #c69b45;
}

.ga-flow__closing-main {
  color: #202020;
  font-family: var(--ga-font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
}

.ga-flow__closing-main strong {
  font-weight: 600;
}

/* ---------- Tablet ---------- */

@media (max-width: 1000px) {
  .ga-flow-teacher-head {
    grid-template-columns: 116px minmax(0, 1fr) 235px;
    gap: 14px;
    padding-inline: 14px;
  }

  .ga-flow-teacher-head__icon img {
    width: 88px;
    height: 66px;
  }

  .ga-flow-teacher-head__title-wrap {
    gap: 14px;
  }

  .ga-flow-teacher-head__title-wrap h3 {
    font-size: 22px;
  }

  .ga-flow-teacher-head__copy {
    font-size: 11px;
  }

  .ga-flow-carousel__track,
  .ga-flow-versant__grid {
    gap: 6px;
  }

  .ga-flow-step {
    padding-inline: 8px;
  }

  .ga-flow-step__head h3 {
    font-size: 16px;
  }

  .ga-flow-step__body {
    font-size: 11px;
  }

  .ga-flow-step:not(:last-child)::after {
    right: -17px;
  }

  .ga-flow-versant__heading {
    margin-inline: 34px;
  }

  .ga-flow-versant-card {
    padding-inline: 7px;
  }

  .ga-flow-versant-card h4 {
    font-size: 14px;
  }

  .ga-flow-versant-card__text,
  .ga-flow-versant-card__focus {
    font-size: 11px;
  }
}

/* ---------- Smartphone: upper flow stays a 2-card carousel ---------- */

@media (max-width: 767px) {
  .ga-flow::before,
  .ga-flow__closing::after {
    width: 180px;
    height: 180px;
  }

  .ga-flow__heading {
    margin-bottom: 34px;
  }

  .ga-flow__eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .ga-flow__title {
    font-size: var(--ga-font-h2);
    line-height: var(--ga-line-height-h2);
  }

  .ga-flow__heading > .ga-flow__lead {
    margin-top: 16px;
    font-size: var(--ga-font-body-size);
    line-height: var(--ga-line-height-body);
  }

  .ga-flow-practice-panel,
  .ga-flow-versant-panel {
    padding: 8px 7px 7px;
  }

  .ga-flow-teacher-head {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 0;
    margin-bottom: 8px;
    padding: 12px 10px 14px;
  }

  .ga-flow-teacher-head__icon {
    grid-row: 1 / span 2;
  }

  .ga-flow-teacher-head__icon img {
    width: 64px;
    height: 52px;
  }

  .ga-flow-teacher-head__title-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ga-flow-teacher-head__line {
    display: none;
  }

  .ga-flow-teacher-head__title-wrap h3 {
    font-size: 18px;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
  }

  .ga-flow-teacher-head__copy {
    font-size: 10px;
    line-height: 1.65;
  }

  .ga-flow-carousel {
    padding-bottom: 42px;
  }

  .ga-flow-carousel__viewport {
    overflow: hidden;
  }

  .ga-flow-carousel__track {
    display: flex;
    gap: 10px;
    transition: transform 0.35s ease;
    will-change: transform;
    touch-action: pan-y;
  }

  .ga-flow-step {
    flex: 0 0 calc((100% - 10px) / 2);
    padding: 10px 7px 14px;
  }

  .ga-flow-step:not(:last-child)::after {
    content: none;
  }

  .ga-flow-step__number span {
    margin-right: 3px;
    font-size: 9px;
  }

  .ga-flow-step__number strong {
    font-size: 20px;
  }

  .ga-flow-step__head h3 {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
  }

  .ga-flow-step__visual {
    height: 120px;
    margin-top: 8px;
  }

  .ga-flow-step__visual--tall {
    height: 154px;
  }

  .ga-flow-step__body {
    padding-inline: 1px;
    font-size: 10px;
    line-height: 1.6;
  }

  .ga-flow-step__quote {
    font-size: 9px;
    white-space: normal;
  }

  .ga-flow-carousel__arrow {
    position: absolute;
    z-index: 6;
    top: calc(50% - 54px);
    display: grid;
    place-items: center;
    width: 34px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
  }

  .ga-flow-carousel__arrow img {
    width: 17px;
    height: 30px;
  }

  .ga-flow-carousel__arrow--prev {
    left: -8px;
  }

  .ga-flow-carousel__arrow--next {
    right: -8px;
  }

  .ga-flow-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 7px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
  }

  .ga-flow-carousel__dot {
    width: 9px;
    height: 9px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d2d2d2;
    cursor: pointer;
  }

  .ga-flow-carousel__dot.is-active {
    background: #ae8739;
  }

  .ga-flow-linkage {
    width: 82%;
    height: 88px;
    margin: 0 auto 22px;
  }

  .ga-flow-linkage__curve {
    height: 54px;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
    border-left-width: 1.5px;
  }

  .ga-flow-linkage__label {
    top: 36px;
    min-width: 126px;
    min-height: 46px;
    padding: 7px 24px;
    font-size: 20px;
  }

  .ga-flow-linkage__label::before,
  .ga-flow-linkage__label::after {
    width: 15px;
    height: 15px;
  }

  .ga-flow-linkage__label::before {
    left: -8px;
  }

  .ga-flow-linkage__label::after {
    right: -8px;
  }

  .ga-flow-versant__heading {
    grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
    gap: 10px;
    margin: 8px 8px 10px;
  }

  .ga-flow-versant__heading p {
    font-size: 13px;
    white-space: normal;
  }

  .ga-flow-versant__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ga-flow-versant-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon text"
      "focus focus";
    align-items: center;
    min-height: 0;
    padding: 12px 14px 10px;
    text-align: left;
  }

  .ga-flow-versant-card__icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .ga-flow-versant-card h4 {
    grid-area: title;
    font-size: 15px;
  }

  .ga-flow-versant-card__text {
    grid-area: text;
    margin-top: 2px;
    font-size: 11px;
  }

  .ga-flow-versant-card__focus {
    grid-area: focus;
    margin-top: 9px;
    padding-top: 7px;
    font-size: 11px;
    text-align: center;
  }

  .ga-flow__closing {
    margin-top: 30px;
    padding: 42px 0 46px;
    background-position: center bottom;
    background-size: cover;
  }

  .ga-flow__closing-lead {
    font-size: 11px;
  }

  .ga-flow__closing-main {
    font-size: 21px;
  }
}

@media (max-width: 390px) {
  .ga-flow-step__head h3 {
    font-size: 13px;
  }

  .ga-flow-step__body {
    font-size: 9px;
  }

  .ga-flow-teacher-head {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .ga-flow-teacher-head__icon img {
    width: 56px;
    height: 46px;
  }

  .ga-flow-teacher-head__title-wrap h3 {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ga-flow-carousel__track {
    transition: none;
  }
}

/* =========================================================
   Section 05 : Course
   Scoped under #course / .ga-course.
========================================================= */

.ga-course {
  overflow: hidden;
  background: #ffffff;
}

.ga-course__heading {
  margin-bottom: 34px;
  text-align: center;
}

.ga-course__eyebrow {
  margin-bottom: 12px;
  color: var(--ga-color-gold);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.ga-course__title {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: var(--ga-font-h2);
  font-weight: 600;
  line-height: var(--ga-line-height-h2);
}

.ga-course__heading > .ga-course__lead {
  max-width: 900px;
  margin: 16px auto 0;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.75;
  text-align: center;
}

/* ---------- Course cards ---------- */

.ga-course__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-inline: auto;
}

.ga-course-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e9e4da;
  box-shadow: 0 4px 16px rgba(58, 48, 36, 0.045);
}

.ga-course-card__photo {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
}

.ga-course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 14px 20px 12px;
  font-family: var(--ga-font-heading);
}

.ga-course-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 28px;
}

.ga-course-card__en {
  color: var(--ga-color-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.ga-course-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 3px 15px 4px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ga-color-gold);
  font-family: var(--ga-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.ga-course-card__body h3 {
  margin-top: 5px;
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: clamp(25px, 2.35vw, 30px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.42;
}

.ga-course-card__lead {
  margin-top: 8px;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

.ga-course-card__lead strong {
  color: var(--ga-color-gold);
  font-weight: 600;
}

.ga-course-card__text {
  min-height: 4.8em;
  margin-top: 5px;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.ga-course-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0 5px;
  background: var(--ga-color-gold);
}

.ga-course-card__skills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ga-course-card__skills li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 50px;
}

.ga-course-card__skills li > img {
  width: 44px;
  height: 44px;
  padding: 3px;
  object-fit: contain;
  background: radial-gradient(circle, rgba(204, 170, 94, 0.11) 0 56%, rgba(204, 170, 94, 0) 58%);
}

.ga-course-skill__label {
  display: block;
  min-width: 0;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  line-height: 1.22;
}

.ga-course-skill__label strong,
.ga-course-skill__label small {
  display: block;
  font-family: inherit;
  font-weight: 400;
}

.ga-course-skill__label strong {
  font-size: 12px;
  letter-spacing: -0.01em;
}

.ga-course-skill__label small {
  margin-top: 1px;
  font-size: 10px;
  line-height: 1.2;
}

.ga-course-card__assessment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  margin-top: 7px;
  padding: 5px 10px;
  background: linear-gradient(90deg, #fbf8f2 0%, #f7f2e9 50%, #fbf8f2 100%);
}

.ga-course-card__assessment img {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

.ga-course-card__assessment p {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.ga-course__inner > .ga-course__note {
  margin-top: 30px;
  color: var(--ga-color-text);
  font-family: var(--ga-font-heading);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

/* ---------- Tablet ---------- */

@media (max-width: 1000px) {
  .ga-course__cards {
    gap: 14px;
  }

  .ga-course-card__body {
    padding-inline: 14px;
  }

  .ga-course-card__body h3 {
    font-size: 23px;
  }

  .ga-course-card__lead {
    font-size: 16px;
  }

  .ga-course-card__text {
    font-size: 11px;
  }

  .ga-course-card__skills li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 4px;
    min-height: 46px;
  }

  .ga-course-card__skills li > img {
    width: 38px;
    height: 38px;
  }

  .ga-course-skill__label strong {
    font-size: 10px;
  }

  .ga-course-skill__label small {
    font-size: 9px;
  }

  .ga-course-card__assessment {
    gap: 8px;
  }

  .ga-course-card__assessment p {
    font-size: 12px;
  }
}

/* ---------- Smartphone ---------- */

@media (max-width: 767px) {
  .ga-course__heading {
    margin-bottom: 28px;
  }

  .ga-course__eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .ga-course__title {
    font-size: var(--ga-font-h2);
    line-height: var(--ga-line-height-h2);
  }

  .ga-course__heading > .ga-course__lead {
    max-width: 520px;
    margin-top: 14px;
    font-size: var(--ga-font-body-size);
    line-height: 1.8;
  }

  .ga-course__heading > .ga-course__lead br {
    display: none;
  }

  .ga-course__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 20px;
  }

  .ga-course-card__photo {
    aspect-ratio: 2.55 / 1;
  }

  .ga-course-card__body {
    padding: 15px 17px 13px;
  }

  .ga-course-card__meta {
    min-height: 26px;
  }

  .ga-course-card__en {
    font-size: 13px;
  }

  .ga-course-card__badge {
    min-height: 25px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .ga-course-card__body h3 {
    margin-top: 5px;
    font-size: 26px;
  }

  .ga-course-card__lead {
    margin-top: 7px;
    font-size: 18px;
  }

  .ga-course-card__text {
    min-height: 0;
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.65;
  }

  .ga-course-card__divider {
    margin: 9px 0 6px;
  }

  .ga-course-card__skills {
    gap: 2px 12px;
  }

  .ga-course-card__skills li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 6px;
    min-height: 50px;
  }

  .ga-course-card__skills li > img {
    width: 44px;
    height: 44px;
  }

  .ga-course-skill__label strong {
    font-size: 12px;
  }

  .ga-course-skill__label small {
    font-size: 10px;
  }

  .ga-course-card__assessment {
    min-height: 42px;
    margin-top: 8px;
  }

  .ga-course-card__assessment img {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }

  .ga-course-card__assessment p {
    font-size: 14px;
  }

  .ga-course__inner > .ga-course__note {
    max-width: 520px;
    margin: 22px auto 0;
    font-size: 10px;
    text-align: right;
  }
}

@media (max-width: 390px) {
  .ga-course-card__body {
    padding-inline: 14px;
  }

  .ga-course-card__skills {
    gap: 2px 7px;
  }

  .ga-course-card__skills li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px;
  }

  .ga-course-card__skills li > img {
    width: 40px;
    height: 40px;
  }

  .ga-course-skill__label strong {
    font-size: 11px;
  }

  .ga-course-skill__label small {
    font-size: 9px;
  }

  .ga-course-card__assessment {
    gap: 7px;
    padding-inline: 6px;
  }

  .ga-course-card__assessment p {
    font-size: 12px;
  }
}

/* =========================================================
   Section 06 : Price
   Scoped under #price / .ga-price.
========================================================= */

.ga-price {
  overflow: hidden;
  padding-bottom: 0;
  background: #ffffff;
}

.ga-price__heading {
  margin-bottom: 34px;
  text-align: center;
}

.ga-price__eyebrow {
  margin-bottom: 12px;
  color: var(--ga-color-gold);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.ga-price__title {
  color: var(--ga-color-black);
  font-family: var(--ga-font-heading);
  font-size: var(--ga-font-h2);
  font-weight: 600;
  line-height: var(--ga-line-height-h2);
}

/* ---------- Plan Cards ---------- */

.ga-price__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1060px;
  margin-inline: auto;
}

.ga-price-plan {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 28px 26px;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid rgba(204, 170, 94, 0.62);
  border-radius: 5px;
  box-shadow: 0 5px 18px rgba(51, 44, 35, 0.08);
  font-family: var(--ga-font-heading);
}

.ga-price-plan__head {
  text-align: center;
}

.ga-price-plan__head h3 {
  color: #2f2f2f;
  font-family: var(--ga-font-heading);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.45;
}

.ga-price-plan__head > span {
  display: block;
  width: 44px;
  height: 2px;
  margin: 12px auto 18px;
  background: #c89939;
}

.ga-price-plan__head p {
  color: var(--ga-color-text);
  font-size: 14px;
  line-height: 1.65;
}

.ga-price-plan__details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.ga-price-plan__detail {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.ga-price-plan__detail > img {
  width: 56px;
  height: 56px;
}

.ga-price-plan__detail h4 {
  color: #303030;
  font-family: var(--ga-font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.ga-price-plan__detail p {
  margin-top: 2px;
  color: var(--ga-color-text);
  font-size: 13px;
  line-height: 1.45;
}

.ga-price-plan__features {
  margin: 18px 0 0;
  padding: 8px 0 6px;
  border-top: 1px solid rgba(169, 130, 54, 0.5);
  border-bottom: 1px solid rgba(169, 130, 54, 0.5);
  list-style: none;
}

.ga-price-plan__features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  border-bottom: 1px solid rgba(72, 72, 72, 0.13);
  color: #3b3b3b;
  font-size: 13px;
  line-height: 1.35;
}

.ga-price-plan__features li:last-child {
  border-bottom: 0;
}

.ga-price-plan__features li > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ga-price-plan__features img {
  width: 24px;
  height: 24px;
}

.ga-price-plan__features strong {
  flex: 0 0 auto;
  font-weight: 500;
}

.ga-price-plan__price {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-top: 26px;
}

.ga-price-plan__price > span {
  flex: 0 0 auto;
  color: #333;
  font-size: 16px;
}

.ga-price-plan__price p {
  display: flex;
  align-items: baseline;
  min-width: 0;
  color: #c90012;
  white-space: nowrap;
}

.ga-price-plan__price strong {
  font-size: clamp(43px, 4.4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.ga-price-plan__price em {
  margin-left: 3px;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

.ga-price-plan__price small {
  margin-left: 7px;
  color: #333;
  font-size: 13px;
}

.ga-price-plan__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 3px;
  color: #ffffff;
  background: linear-gradient(90deg, #c90012, #d50b18, #b90010);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 5px 14px rgba(201, 0, 18, 0.18);
  transition: opacity var(--ga-transition), transform var(--ga-transition);
}

.ga-price-plan__cta img {
  width: 12px;
  height: 20px;
}

@media (hover: hover) {
  .ga-price-plan__cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }
}

/* ---------- Result / Guidance ---------- */

.ga-price-result {
  position: relative;
  margin-top: 54px;
  padding: 34px 0 46px;
  background: #f7f8f8 url("../img/price-result-bg.png") center bottom / cover no-repeat;
}

.ga-price-result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.40) 42%,
    rgba(255,255,255,0.08) 100%
  );
  pointer-events: none;
}

.ga-price-result__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ga-price-result__inner > h3 {
  color: #222;
  font-family: var(--ga-font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.42;
}

.ga-price-result__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 26px auto 0;
}

.ga-price-result-card {
  padding: 14px 28px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(204, 170, 94, 0.62);
  border-radius: 3px;
  font-family: var(--ga-font-heading);
}

.ga-price-result-card p {
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.55;
}

.ga-price-result-card > img {
  width: 24px;
  height: 17px;
  margin: 8px auto;
}

.ga-price-result-card strong {
  display: block;
  padding: 8px 14px;
  color: #333;
  background: linear-gradient(90deg, #f0f0f0, #dedede, #f0f0f0);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.ga-price-result-card--gold strong {
  color: #ffffff;
  background: linear-gradient(90deg, #bd8f34, #d6b354, #bc8c2e);
}

.ga-price-result__inner > .ga-price-result__closing {
  margin-top: 40px;
  color: #242424;
  font-family: var(--ga-font-heading);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 500;
  line-height: 1.55;
}

/* ---------- Tablet ---------- */

@media (max-width: 1000px) {
  .ga-price__plans {
    gap: 20px;
  }

  .ga-price-plan {
    padding-inline: 20px;
  }

  .ga-price-plan__head h3 {
    font-size: 22px;
  }

  .ga-price-plan__price {
    gap: 16px;
  }

  .ga-price-plan__price strong {
    font-size: clamp(37px, 5vw, 50px);
  }
}

/* ---------- Smartphone ---------- */

@media (max-width: 767px) {
  .ga-price__heading {
    margin-bottom: 28px;
  }

  .ga-price__eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .ga-price__title {
    font-size: var(--ga-font-h2);
    line-height: var(--ga-line-height-h2);
  }

  .ga-price__plans {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 18px;
  }

  .ga-price-plan {
    padding: 20px 16px 20px;
  }

  .ga-price-plan__head h3 {
    font-size: 20px;
  }

  .ga-price-plan__head p {
    font-size: 12px;
  }

  .ga-price-plan__details {
    margin-top: 18px;
  }

  .ga-price-plan__detail {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .ga-price-plan__detail > img {
    width: 48px;
    height: 48px;
  }

  .ga-price-plan__detail h4 {
    font-size: 16px;
  }

  .ga-price-plan__detail p {
    font-size: 11px;
  }

  .ga-price-plan__features {
    margin-top: 16px;
  }

  .ga-price-plan__features li {
    min-height: 32px;
    font-size: 11px;
  }

  .ga-price-plan__features img {
    width: 21px;
    height: 21px;
  }

  .ga-price-plan__price {
    gap: 12px;
    margin-top: 22px;
  }

  .ga-price-plan__price > span {
    font-size: 14px;
  }

  .ga-price-plan__price strong {
    font-size: clamp(38px, 12.2vw, 52px);
  }

  .ga-price-plan__price em {
    font-size: 18px;
  }

  .ga-price-plan__price small {
    margin-left: 5px;
    font-size: 11px;
  }

  .ga-price-plan__cta {
    min-height: 56px;
    margin-top: 20px;
    padding: 12px 14px;
    font-size: 12px;
  }

  .ga-price-result {
    margin-top: 42px;
    padding: 42px 0 48px;
    background-position: center bottom;
  }

  .ga-price-result__inner > h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .ga-price-result__choices {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 14px;
    margin-top: 24px;
  }

  .ga-price-result-card {
    padding: 14px 16px;
  }

  .ga-price-result-card p {
    font-size: 12px;
  }

  .ga-price-result-card strong {
    font-size: 14px;
  }

  .ga-price-result__inner > .ga-price-result__closing {
    margin-top: 32px;
    font-size: clamp(22px, 6.8vw, 29px);
  }
}

@media (max-width: 390px) {
  .ga-price-plan__price strong {
    font-size: 38px;
  }

  .ga-price-plan__cta {
    font-size: 11px;
  }
}

/* =========================================================
   Section 07 : CTA
   Scoped under #cta / .ga-cta.
========================================================= */

.ga-cta {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: linear-gradient(to bottom, #E3EFFB 20%, #FFF 40%);
}

/* ---------- Main CTA Hero ---------- */

.ga-cta-hero {
  position: relative;
  width: min(100%, 1200px);
  min-height: 700px;
  margin-inline: auto;
  overflow: hidden;
  background: #f5f8fa url("../img/cta-main-bg.png") 74% center / cover no-repeat;
}

.ga-cta-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-45deg);
}

.ga-cta-hero::before {
  top: -82px;
  left: -64px;
  width: 180px;
  height: 54px;
  background: linear-gradient(90deg, rgba(204,170,94,.22), rgba(204,170,94,.05));
}

.ga-cta-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 700px;
}

.ga-cta-hero__copy {
  width: 52%;
  max-width: 590px;
  padding: 58px 0 42px 26px;
  font-family: var(--ga-font-heading);
  text-align: left;
}

.ga-cta-hero__copy h2 {
  color: #161616;
  font-family: var(--ga-font-heading);
  font-size: clamp(46px, 5.1vw, 64px);
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.26;
}

.ga-cta-hero__badges {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}

.ga-cta-hero__badges span {
  display: block;
  min-width: 212px;
  min-height: 74px;
  padding: 9px 18px;
  border: 2px solid #b87e20;
  color: #a87420;
  background: rgba(255,255,255,.68);
  font-size: 19px;
  line-height: 1.4;
  text-align: center;
}

.ga-cta-hero__badges strong {
  font-weight: 500;
}

.ga-cta-hero__copy > .ga-cta-hero__lead {
  margin-top: 32px;
  color: #252525;
  font-family: var(--ga-font-heading);
  font-size: 20px;
  line-height: 1.72;
}

.ga-cta-hero__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  width: min(100%, 520px);
  min-height: 78px;
  margin-top: 26px;
  padding: 16px 28px;
  border-radius: 4px;
  color: #ffffff;
  background: linear-gradient(90deg, #c90012, #dd111f, #bd0010);
  box-shadow: 0 8px 20px rgba(201,0,18,.18);
  font-family: var(--ga-font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition: opacity var(--ga-transition), transform var(--ga-transition);
}

.ga-cta-hero__button img {
  width: 14px;
  height: 24px;
}

@media (hover: hover) {
  .ga-cta-hero__button:hover {
    opacity: .88;
    transform: translateY(-1px);
  }
}

/* ---------- Consulting Flow ---------- */

.ga-cta-consulting {
  position: relative;
  padding: 50px 0 58px;
  background:
    linear-gradient(135deg, rgba(236,227,210,.28) 0 10%, transparent 10% 100%),
    linear-gradient(315deg, rgba(236,227,210,.22) 0 10%, transparent 10% 100%),
    #ffffff;
}

.ga-cta-consulting__heading {
  margin-bottom: 30px;
  text-align: center;
}

.ga-cta-consulting__eyebrow {
  margin-bottom: 12px;
  color: var(--ga-color-gold);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
}

.ga-cta-consulting__heading h2 {
  color: #171717;
  font-family: var(--ga-font-heading);
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 500;
  line-height: 1.38;
}

.ga-cta-carousel {
  position: relative;
  max-width: 1140px;
  margin-inline: auto;
  padding-bottom: 4px;
}

.ga-cta-carousel__viewport {
  overflow: visible;
}

.ga-cta-carousel__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ga-cta-step-card {
  position: relative;
  min-height: 360px;
  padding: 22px 16px 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid #ece8e0;
  box-shadow: 0 5px 16px rgba(53,45,35,.05);
  font-family: var(--ga-font-heading);
  text-align: center;
}

.ga-cta-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 135px;
  right: -28px;
  width: 22px;
  height: 34px;
  background: url("../img/cta-step-arrow.svg") center / contain no-repeat;
}

.ga-cta-step-card__number {
  color: #ae7927;
  line-height: 1;
}

.ga-cta-step-card__number span {
  margin-right: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}

.ga-cta-step-card__number strong {
  font-size: 25px;
  font-weight: 500;
}

.ga-cta-step-card__icon {
  width: 112px;
  height: 112px;
  margin: 16px auto 18px;
}

.ga-cta-step-card h3 {
  color: #a66e18;
  font-family: var(--ga-font-heading);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
}

.ga-cta-step-card > p:last-child {
  margin-top: 14px;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.65;
}

.ga-cta-carousel__arrow,
.ga-cta-carousel__dots {
  display: none;
}

/* ---------- Tablet ---------- */

@media (max-width: 1000px) {
  .ga-cta-hero__copy {
    width: 56%;
    padding-left: 12px;
  }

  .ga-cta-hero__badges span {
    min-width: 188px;
    font-size: 17px;
  }

  .ga-cta-carousel__track {
    gap: 14px;
  }

  .ga-cta-step-card {
    padding-inline: 12px;
  }

  .ga-cta-step-card h3 {
    font-size: 20px;
  }
}

/* ---------- Smartphone: one card per view carousel ---------- */

@media (max-width: 767px) {
  .ga-cta-hero {
    min-height: 720px;
    background-position: 78% center;
  }

  .ga-cta-hero::before {
    width: 120px;
    height: 40px;
  }

  .ga-cta-hero__inner {
    min-height: 720px;
  }

  .ga-cta-hero__copy {
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;
    max-width: none;
    padding: 220px 0 0;
    text-align: center;
  }

  .ga-cta-hero__copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 120px -18px -22px;
    background: linear-gradient(
      to top,
      #ffffff 0%,
      rgba(255,255,255,.98) 42%,
      rgba(255,255,255,.80) 66%,
      rgba(255,255,255,0) 100%
    );
  }

  .ga-cta-hero__copy h2 {
    font-size: clamp(35px, 10vw, 46px);
    line-height: 1.33;
  }

  .ga-cta-hero__badges {
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .ga-cta-hero__badges span {
    min-width: 0;
    width: calc(50% - 4px);
    min-height: 64px;
    padding: 8px 7px;
    border-width: 1.5px;
    font-size: 14px;
  }

  .ga-cta-hero__copy > .ga-cta-hero__lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
  }

  .ga-cta-hero__button {
    width: 100%;
    min-height: 64px;
    margin-top: 18px;
    padding: 13px 18px;
    font-size: 17px;
  }

  .ga-cta-consulting {
    padding: 44px 0 54px;
  }

  .ga-cta-consulting__heading {
    margin-bottom: 26px;
  }

  .ga-cta-consulting__eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .ga-cta-consulting__heading h2 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.45;
  }

  .ga-cta-carousel {
    padding-bottom: 42px;
  }

  .ga-cta-carousel__viewport {
    overflow: hidden;
  }

  .ga-cta-carousel__track {
    display: flex;
    gap: 12px;
    transition: transform .35s ease;
    will-change: transform;
    touch-action: pan-y;
  }

  .ga-cta-step-card {
    flex: 0 0 100%;
    min-height: 350px;
    padding: 22px 18px 24px;
  }

  .ga-cta-step-card:not(:last-child)::after {
    content: none;
  }

  .ga-cta-step-card__icon {
    width: 108px;
    height: 108px;
  }

  .ga-cta-step-card h3 {
    font-size: 23px;
  }

  .ga-cta-step-card > p:last-child {
    font-size: 14px;
  }

  .ga-cta-carousel__arrow {
    position: absolute;
    z-index: 6;
    top: calc(50% - 54px);
    display: grid;
    place-items: center;
    width: 38px;
    height: 56px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(255,255,255,.82);
    cursor: pointer;
  }

  .ga-cta-carousel__arrow img {
    width: 17px;
    height: 30px;
  }

  .ga-cta-carousel__arrow--prev {
    left: -7px;
  }

  .ga-cta-carousel__arrow--next {
    right: -7px;
  }

  .ga-cta-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 7px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
  }

  .ga-cta-carousel__dot {
    width: 9px;
    height: 9px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
  }

  .ga-cta-carousel__dot.is-active {
    background: #ae8739;
  }
}

@media (max-width: 390px) {
  .ga-cta-hero__badges span {
    font-size: 13px;
  }

  .ga-cta-hero__button {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ga-cta-carousel__track {
    transition: none;
  }
}

/* =========================================================
   Section 08 : Footer
========================================================= */

.ga-footer {
  width: 100%;
  background: #444444;
}

/* ---------- Final Consultation CTA ---------- */

.ga-footer-cta {
  position: relative;
  width: 100%;
  min-height: 370px;
  overflow: hidden;
  background: #f7f9fa url("../img/footer-cta-bg.png") center / cover no-repeat;
}

.ga-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.ga-footer-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 370px;
  padding-block: 38px;
  text-align: center;
}

.ga-footer-cta__inner h2 {
  color: #171717;
  font-family: var(--ga-font-heading);
  font-size: clamp(31px, 3.25vw, 42px);
  font-weight: 600;
  line-height: 1.45;
}

.ga-footer-cta__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  width: min(100%, 500px);
  min-height: 74px;
  margin-top: 32px;
  padding: 15px 26px;
  border-radius: 4px;
  color: #ffffff;
  background: linear-gradient(90deg, #c90012, #dc101d, #bd0010);
  box-shadow: 0 7px 18px rgba(201, 0, 18, 0.18);
  font-family: var(--ga-font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition: opacity var(--ga-transition), transform var(--ga-transition);
}

.ga-footer-cta__button img {
  width: 14px;
  height: 24px;
}

.ga-footer-cta__inner > .ga-footer-cta__text {
  margin-top: 18px;
  color: #333333;
  font-family: var(--ga-font-heading);
  font-size: 14px;
  line-height: 1.7;
}

@media (hover: hover) {
  .ga-footer-cta__button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }
}

/* ---------- Dark Footer ---------- */

.ga-footer-main {
  width: 100%;
  padding: 38px 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c4c4c 0%, #3f3f3f 100%);
}

.ga-footer-main__inner {
  text-align: center;
}

.ga-footer-main__logo {
  display: inline-block;
}

.ga-footer-main__logo img {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.ga-footer-main__inner > .ga-footer-main__lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ga-font-heading);
  font-size: 12px;
  line-height: 1.6;
}

.ga-footer-main__inner > .ga-footer-main__guarantee {
  margin-top: 8px;
  color: #ffffff;
  font-family: var(--ga-font-heading);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.35;
}

.ga-footer-main__inner > .ga-footer-main__program {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  line-height: 1.5;
}

.ga-footer-main__inner > .ga-footer-main__copyright {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--ga-font-heading);
  font-size: 10px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */

@media (max-width: 767px) {
  .ga-footer-cta {
    min-height: 410px;
    background-position: 1% center;
  }

  .ga-footer-cta::before {
    background: rgba(255, 255, 255, 0.24);
  }

  .ga-footer-cta__inner {
    min-height: 410px;
    padding-block: 42px;
  }

  .ga-footer-cta__inner h2 {
    font-size: clamp(26px, 7.7vw, 34px);
    line-height: 1.5;
  }

  .ga-footer-cta__button {
    width: 100%;
    min-height: 64px;
    margin-top: 28px;
    padding: 13px 18px;
    font-size: 16px;
  }

  .ga-footer-cta__inner > .ga-footer-cta__text {
    margin-top: 16px;
    font-size: 12px;
  }

  .ga-footer-main {
    padding: 34px 0 24px;
  }

  .ga-footer-main__logo img {
    width: 160px;
  }

  .ga-footer-main__inner > .ga-footer-main__lead {
    margin-top: 16px;
    font-size: 11px;
  }

  .ga-footer-main__inner > .ga-footer-main__guarantee {
    font-size: 22px;
  }

  .ga-footer-main__inner > .ga-footer-main__program {
    font-size: 12px;
  }

  .ga-footer-main__inner > .ga-footer-main__copyright {
    margin-top: 18px;
    font-size: 9px;
  }
}

@media (max-width: 390px) {
  .ga-footer-cta__button {
    font-size: 15px;
  }

  .ga-footer-main__inner > .ga-footer-main__guarantee {
    font-size: 20px;
  }
}
