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

:root {
  /* Blue/White system — matching KAGAYAKI INTERNATIONAL logo */
  --blue-deep:  #0B3D6E;   /* dark navy blue (logo text color) */
  --navy-deep:  #0B3D6E;
  --navy:       #0B3D6E;
  --gold:       #C8952A;
  --gold-light: #E8B84B;
  --gold-bg:    #FDF6E3;
  --blue:       #1A6BAF;   /* mid blue */
  --blue-sky:   #4A9FD4;   /* sky blue (logo gradient) */
  --blue-light: #C8E4F5;   /* very light blue tint */
  --blue-pale:  #EEF6FC;   /* near-white blue bg */
  --white:      #FFFFFF;
  --slate:      #FAF9F6;   /* off-white with warm tint */
  --border:     #E2DDD6;
  --text:       #0B2440;
  --muted:      #4A6070;
  --dim:        #8AA4B8;
  --emerald:    #1A8C5A;
  --emerald-bg: #D4F0E2;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 2px 12px rgba(11,61,110,0.08);
  --shadow-lg:  0 8px 32px rgba(11,61,110,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  gap: 8px;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 4px 16px rgba(200,149,42,0.35);
  letter-spacing: 0.04em;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(200,149,42,0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--blue-deep);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { background: var(--blue-pale); }

.btn-block { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(11,61,110,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
.logo-text { display: none; }
.logo-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: 0.1em;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  color: var(--blue-sky);
  letter-spacing: 0.08em;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0;
  white-space: nowrap;
}
.header-phone-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  display: block;
  line-height: 1;
}
.header-phone-wrap { text-align: center; flex-shrink: 0; }

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.global-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.global-nav a:hover { color: var(--blue-deep); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--blue-deep) !important; }

.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: var(--blue-deep);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--blue-deep);
  padding: 100px 0 88px;
  overflow: hidden;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: saturate(0.5);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(11,61,110,0.82) 30%, rgba(11,61,110,0.48) 100%),
    radial-gradient(ellipse at 80% 100%, rgba(200,149,42,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 40%, rgba(74,159,212,0.1) 0%, transparent 55%);
}
/* Bridge arch — signature diagonal gold line */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 8%;
  width: 2px;
  height: 130%;
  background: linear-gradient(to top, rgba(200,149,42,0.6) 0%, rgba(232,184,75,0.25) 60%, transparent 100%);
  transform: rotate(-28deg);
  transform-origin: bottom center;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 14%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, rgba(200,149,42,0.3) 0%, transparent 70%);
  transform: rotate(-22deg);
  transform-origin: bottom center;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-sky);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-sky);
}
.hero-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 8px;
}
.hero-title-accent {
  color: var(--blue-sky);
}
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-family: Georgia, serif;
}
.hero-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}
.hero-actions .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 0;
  backdrop-filter: blur(4px);
}
.hero-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 4px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border: none; }
.hero-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  font-family: Georgia, serif;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--slate);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.trust-items {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.trust-item:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(200,149,42,0.12);
}
.trust-icon { font-size: 16px; }

/* ===== SECTION BASE ===== */
.section { padding: 88px 0; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.3;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 52px;
}

/* ===== CURRICULUM PHOTO ===== */
.curriculum-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}
.curriculum-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ===== INDUSTRY SECTION ===== */
.industry-section { background: var(--white); }

.industry-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 48px;
}
.industry-tab {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}
.industry-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.industry-tab:hover { color: var(--blue); }

.industry-panel { display: none; }
.industry-panel.active { display: block; }

.industry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.industry-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-pale);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--blue-light);
  position: relative;
}
.industry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--blue-sky);
}
.industry-photo-placeholder span:first-child { font-size: 72px; }
.industry-photo-placeholder span:last-child { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; }

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.industry-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-deep);
  font-family: Georgia, serif;
  line-height: 1.3;
  margin-bottom: 16px;
}
.industry-text .lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.strength-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.strength-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 20px;
}
.voice-card {
  background: var(--slate);
  border-left: 4px solid var(--blue-sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 20px 20px 24px;
  margin-bottom: 16px;
}
.voice-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 10px;
}
.voice-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ===== CURRICULUM SECTION ===== */
.curriculum-section { background: var(--slate); }

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.curriculum-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.curriculum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}
.curriculum-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.curriculum-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.4;
}
.curriculum-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.curriculum-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--blue-deep);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 10px;
  letter-spacing: 0.06em;
}

.curriculum-flow {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 40px 40px 32px;
  color: var(--white);
}
.curriculum-flow h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  font-family: Georgia, serif;
}
.flow-timeline {
  display: flex;
  gap: 0;
  position: relative;
}
.flow-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255,255,255,0.15);
}
.flow-node {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 52px;
}
.flow-node-dot {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-sky);
  border: 3px solid var(--blue-deep);
  z-index: 1;
}
.flow-node-period {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-sky);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.flow-node-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ===== REASON SECTION ===== */
.reason-section { background: var(--white); }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.reason-card {
  padding: 32px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.reason-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-sky);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.reason-card:hover::after { transform: scaleX(1); }
.reason-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 14px;
}
.reason-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.4;
}
.reason-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ===== FLOW SECTION ===== */
.flow-section { background: var(--blue-pale); }
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 160px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.flow-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}
.flow-step h3 { font-size: 14px; font-weight: 700; color: var(--blue-deep); margin-bottom: 6px; line-height: 1.4; }
.flow-step p { font-size: 12px; color: var(--muted); line-height: 1.65; }
.flow-step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--emerald);
  background: var(--emerald-bg);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
}
.flow-arrow { font-size: 18px; color: var(--blue-sky); font-weight: 700; padding-top: 20px; flex-shrink: 0; align-self: flex-start; margin-top: 30px; }

/* ===== PRICE SECTION ===== */
.price-section { background: var(--white); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.price-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.price-card--main {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}
.price-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; color: var(--blue-sky); }
.price-card:not(.price-card--main) .price-card-label { color: var(--muted); }
.price-card-fee { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.price-card--main .price-card-fee { color: var(--white); }
.price-big { font-size: 52px; font-weight: 800; font-family: Georgia, serif; color: var(--blue-sky); line-height: 1; }
.price-card:not(.price-card--main) .price-big { color: var(--blue); }
.price-unit { font-size: 22px; font-weight: 700; color: var(--blue-sky); }
.price-card:not(.price-card--main) .price-unit { color: var(--blue); }
.price-note { font-size: 13px; margin-bottom: 24px; color: rgba(255,255,255,0.5); }
.price-card:not(.price-card--main) .price-note { color: var(--muted); }
.price-list { margin-bottom: 28px; }
.price-list li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.price-card:not(.price-card--main) .price-list li { border-bottom-color: var(--border); color: var(--text); }
.price-card .btn-outline { border-color: var(--blue); color: var(--blue); }
.price-disclaimer { font-size: 13px; color: var(--muted); text-align: center; }

/* ===== FAQ ===== */
.faq-section { background: var(--slate); }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.4;
}
.faq-q-text::before {
  content: 'Q. ';
  color: var(--blue);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--blue-sky);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-answer::before {
  content: 'A. ';
  font-weight: 700;
  color: var(--blue-sky);
}
.faq-item.open .faq-answer { display: block; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1458A0 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  font-family: Georgia, serif;
  margin-bottom: 10px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ===== FOOTER ===== */
.site-footer {
  background: #091F3A;
  padding: 64px 0 0;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-img { height: 44px; width: auto; max-width: 200px; object-fit: contain; background: white; border-radius: 6px; padding: 4px 10px; }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--white); font-family: Georgia, serif; letter-spacing: 0.08em; }
.footer-tagline { font-size: 12px; color: var(--blue-sky); letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-brand address { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-nav ul { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--blue-deep); padding: 72px 0 64px; }
.page-hero-eyebrow { font-size: 11px; font-weight: 700; color: var(--blue-sky); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue-sky); }
.page-hero-title { font-size: clamp(26px,4vw,42px); font-weight: 800; color: var(--white); font-family: Georgia,serif; line-height: 1.25; }
.page-hero-lead { font-size: 16px; color: rgba(255,255,255,0.65); margin-top: 14px; max-width: 540px; line-height: 1.8; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-phone-wrap { display: none; }
}

@media (max-width: 768px) {
  .global-nav { display: none; }
  .hamburger { display: flex; }
  .global-nav.open {
    display: flex;
    position: fixed;
    inset: 68px 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    z-index: 99;
    border-top: 1px solid var(--border);
  }
  .global-nav.open ul { flex-direction: column; gap: 24px; }
  .global-nav.open a { font-size: 18px; color: var(--text); }

  .hero { padding: 64px 0 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 20px; }
  .hero-stat:last-child { border: none; }

  .industry-layout { grid-template-columns: 1fr; gap: 28px; }
  .industry-tabs { gap: 0; overflow-x: auto; }
  .industry-tab { padding: 12px 20px; white-space: nowrap; font-size: 14px; }

  .flow-steps { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); align-self: center; margin: 0; padding: 0; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn { width: 100%; }

  .footer-inner { flex-direction: column; gap: 36px; }
  .section { padding: 64px 0; }

  .flow-timeline { flex-direction: column; gap: 0; }
  .flow-timeline::before { top: 0; bottom: 0; left: 11px; right: auto; width: 2px; height: auto; }
  .flow-node { text-align: left; padding: 0 0 24px 44px; }
  .flow-node-dot { top: 0; left: 0; transform: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .section-title { font-size: 22px; }
}

/* ===== STUDENT VOICES SECTION ===== */
.voices-section { background: var(--slate); }

.voices-banner {
  margin: 40px 0 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 360px;
}
.voices-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

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

.voice-portrait-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.voice-portrait-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--blue-pale);
}
.voice-portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.voice-portrait-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.voice-portrait-quote {
  font-size: 56px;
  line-height: 1;
  color: var(--blue-light);
  font-family: Georgia, serif;
  margin-bottom: 4px;
  margin-top: -8px;
}

.voice-portrait-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 20px;
}

.voice-portrait-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.voice-portrait-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
}

.voice-portrait-course {
  font-size: 12px;
  color: var(--blue-sky);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .voices-grid { grid-template-columns: 1fr; }
  .voices-banner { max-height: 240px; }
}

/* ===== CURRICULUM DETAIL BOX (industry panels) ===== */
.curriculum-detail-box {
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 20px;
}
.curriculum-detail-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.curriculum-detail-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.curriculum-detail-tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.curriculum-detail-tags span {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}

/* ===== CARE VALUES (介護パネル) ===== */
.care-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 20px;
}
.care-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.care-value-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.care-value-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.care-value-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
}
.care-value-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: saturate(0.5);
  display: block;
}

/* ===== GROUP PHOTO BANNER ===== */
.group-photo-section { width: 100%; overflow: hidden; }
.group-photo-inner { position: relative; }
.group-photo-inner img { width: 100%; max-height: 600px; object-fit: cover; object-position: center 20%; display: block; }
.group-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 48px; background: linear-gradient(to top, rgba(11,61,110,0.75) 0%, transparent 100%); color: #fff; }
.group-photo-label { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: #E8B84B; margin-bottom: 6px; }
.group-photo-caption { font-size: clamp(20px, 2.5vw, 32px); font-weight: 800; font-family: Georgia, serif; margin-bottom: 4px; }
.group-photo-sub { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ===== BRIDGE BAR ===== */
.bridge-bar { background: var(--blue-deep); padding: 16px 0; }
.bridge-bar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.bridge-flag { font-size: 24px; }
.bridge-line { height: 1px; width: 80px; background: rgba(255,255,255,0.3); }
.bridge-text { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; }

/* ===== FLOW STEPS ===== */
.flow-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 48px; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 160px; text-align: center; padding: 0 8px; }
.flow-step-num { width: 48px; height: 48px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; margin: 0 auto 16px; font-family: Georgia, serif; }
.flow-step h3 { font-size: 15px; font-weight: 700; color: var(--blue-deep); margin-bottom: 8px; line-height: 1.4; }
.flow-step p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.flow-arrow { flex-shrink: 0; font-size: 20px; color: #E8B84B; margin-top: 12px; padding: 0 4px; }

/* ===== COLUMN PREVIEW ===== */
.column-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.column-preview-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-decoration: none; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.column-preview-card:hover { box-shadow: 0 8px 32px rgba(11,61,110,0.14); transform: translateY(-2px); }
.column-preview-tag { font-size: 11px; font-weight: 700; color: var(--blue); background: var(--blue-pale); padding: 3px 10px; border-radius: 12px; display: inline-block; margin-bottom: 12px; }
.column-preview-card h3 { font-size: 15px; font-weight: 700; color: var(--blue-deep); line-height: 1.5; margin-bottom: 10px; }
.column-preview-card p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.column-preview-more { font-size: 13px; font-weight: 600; color: var(--blue); }

/* ===== INTEGRATED FLOW ===== */
.integrated-flow { display: flex; align-items: stretch; gap: 0; margin-top: 48px; flex-wrap: wrap; justify-content: center; }
.integrated-step { flex: 1; min-width: 200px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: 0 2px 12px rgba(11,61,110,0.08); }
.integrated-step-icon { font-size: 40px; margin-bottom: 16px; }
.integrated-step h3 { font-size: 16px; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px; }
.integrated-step p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.integrated-arrow { display: flex; align-items: center; padding: 0 12px; font-size: 24px; color: #E8B84B; flex-shrink: 0; }

/* ===== PAGE-HERO EYEBROW GOLD ===== */
.page-hero-eyebrow { font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold-light); flex-shrink: 0; }

@media (max-width: 768px) {
  .flow-steps { flex-direction: column; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); margin: 0 auto; }
  .column-preview-grid { grid-template-columns: 1fr; }
  .integrated-flow { flex-direction: column; }
  .integrated-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ===== REASON GRID ===== */
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.reason-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: box-shadow 0.2s, transform 0.2s; }
.reason-card:hover { box-shadow: 0 8px 32px rgba(11,61,110,0.1); transform: translateY(-2px); }
.reason-icon { font-size: 36px; margin-bottom: 16px; }
.reason-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px; }
.reason-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== INDUSTRY GRID ===== */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.industry-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: box-shadow 0.2s; }
.industry-card:hover { box-shadow: 0 4px 24px rgba(11,61,110,0.1); }
.industry-icon { font-size: 40px; margin-bottom: 16px; }
.industry-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px; }
.industry-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }

@media (max-width: 768px) {
  .reason-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
}

/* ===== WHY SRILANKA LAYOUT ===== */
.why-srilanka-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.reason-grid-2col { grid-template-columns: repeat(2, 1fr); }

/* ===== STUDENTS GALLERY ===== */
.students-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.student-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.student-card-body { padding: 14px 16px; }
.student-card-tag { font-size: 12px; font-weight: 700; color: var(--blue); background: var(--blue-pale); padding: 3px 10px; border-radius: 12px; display: inline-block; margin-bottom: 6px; }
.student-card-desc { font-size: 13px; color: var(--muted); }

@media (max-width: 1024px) {
  .why-srilanka-layout { grid-template-columns: 1fr; }
  .students-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .students-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ===== STATS DASHBOARD ===== */
.stats-section { background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border-top: 3px solid var(--gold); transition: box-shadow 0.2s, transform 0.2s; }
.stat-card:hover { box-shadow: 0 6px 24px rgba(200,149,42,0.15); transform: translateY(-2px); }
.stat-num { font-size: 36px; font-weight: 800; color: var(--blue-deep); font-family: Georgia, serif; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 14px; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
.stat-sub { font-size: 12px; color: var(--muted); }

/* ===== CREDENTIAL BAR ===== */
.credential-bar { background: #F5F3EE; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.credential-bar .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.credential-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; white-space: nowrap; }
.credential-items { display: flex; gap: 12px; flex-wrap: wrap; }
.credential-item { padding: 8px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; font-weight: 700; color: var(--blue-deep); line-height: 1.5; }
.credential-item span { font-weight: 400; color: var(--muted); }

/* ===== VOICE / TESTIMONIALS ===== */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.voice-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; }
.voice-quote { font-size: 48px; font-family: Georgia, serif; color: var(--gold); line-height: 0.8; margin-bottom: 12px; }
.voice-text { font-size: 14px; color: var(--text); line-height: 1.8; flex: 1; margin-bottom: 20px; }
.voice-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.voice-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--slate); border: 1px solid var(--border); flex-shrink: 0; }
.voice-name { font-size: 13px; font-weight: 700; color: var(--blue-deep); }
.voice-company { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-bar .container { flex-direction: column; align-items: flex-start; }
}
