/* ======================================================
   RORO PHARMACY — 沖縄薬学生誘致ツアー LP
   Style Sheet
   Updated: 2026-04-26
   ====================================================== */

:root {
  --navy:        #0d2b4e;
  --navy-dark:   #081a32;
  --navy-mid:    #163a66;
  --navy-light:  #1e4d87;
  --accent:      #1a7fd4;
  --accent-light:#2e9fe8;
  --accent-pale: #e8f4fd;
  --teal:        #0ea5c8;
  --teal-light:  #e0f6fb;
  --white:       #ffffff;
  --bg-light:    #f4f8fc;
  --text-dark:   #1a2535;
  --text-mid:    #3d5168;
  --text-muted:  #6b8097;
  --border:      #d0dde8;
  --green:       #0d9e6c;
  --green-bg:    #e6f7f1;
  --orange:      #e07a1a;
  --orange-bg:   #fdf0e0;
  --red:         #d63031;
  --red-bg:      #fde8e8;
  --line-green:  #06c755;
  --line-dark:   #05a849;
  --font-ja:     'Noto Sans JP', sans-serif;
  --font-en:     'Inter', sans-serif;
  --section-pad: 96px;
  --shadow-sm:   0 2px 8px rgba(13,43,78,.08);
  --shadow-md:   0 6px 24px rgba(13,43,78,.12);
  --shadow-lg:   0 16px 48px rgba(13,43,78,.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --trans:       .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ja);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.narrow-container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.bg-light { background: var(--bg-light); }
.bg-navy  { background: var(--navy); }

/* Section Labels */
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-pale);
  padding: 4px 14px; border-radius: 999px; margin-bottom: 16px;
}
.accent-label { color: var(--teal); background: var(--teal-light); }
.light-label  { color: #90c8f0; background: rgba(255,255,255,.12); }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.3; margin-bottom: 16px;
}
.light-title { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 48px; max-width: 640px; }
.light-desc   { color: rgba(255,255,255,.8); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px; border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-white:hover { background: #f0f5fb; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-line { background: var(--line-green); color: var(--white); box-shadow: 0 4px 16px rgba(6,199,85,.35); }
.btn-line:hover { background: var(--line-dark); box-shadow: 0 8px 24px rgba(6,199,85,.45); }
.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-full  { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,26,50,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--trans), box-shadow var(--trans);
}
.site-header.scrolled { background: rgba(8,26,50,.98); box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main { font-family: var(--font-en); font-size: 1.05rem; font-weight: 900; color: var(--white); letter-spacing: .04em; }
.logo-sub  { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .05em; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.75); transition: color var(--trans); }
.header-nav a:hover { color: var(--white); }
.header-nav .nav-cta {
  background: var(--accent); color: var(--white); padding: 8px 20px;
  border-radius: 999px; font-weight: 700; transition: background var(--trans), transform var(--trans);
}
.header-nav .nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--trans), opacity var(--trans); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background:
    linear-gradient(160deg, rgba(8,26,50,.75) 0%, rgba(13,43,78,.60) 40%, rgba(8,26,50,.70) 100%),
    url('../images/hero-bg2.jpg') center 30% / cover no-repeat;
  overflow: hidden; padding-top: 68px;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(8,26,50,.15) 60%, rgba(8,26,50,.55) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(14,165,200,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(26,127,212,.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding: 80px 24px 120px; }
.hero-eyebrow {
  font-family: var(--font-en); font-size: .8rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: 24px;
}
.hero-title { font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: rgba(255,255,255,.55); }
.hero-title strong {
  color: #7dd3fc;
  display: inline;
  text-decoration: underline;
  text-decoration-color: rgba(14,165,200,.7);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
  text-decoration-skip-ink: none;
}
.hero-title strong::after {
  display: none;
}
.hero-sub { font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,.8); margin-bottom: 40px; max-width: 620px; line-height: 1.85; }
.hero-sub strong { color: #fbbf24; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 24px 32px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); max-width: 560px;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 130px; padding: 8px 0; }
.stat-number { font-family: var(--font-en); font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-label  { font-size: .78rem; color: rgba(255,255,255,.6); text-align: center; }
.hero-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ---- Mission ---- */
.mission-section { text-align: center; }
.mission-text { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.9; }
.mission-text strong { color: var(--navy); }
.mission-highlight {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: var(--accent-pale); border: 1.5px solid rgba(26,127,212,.2);
  border-radius: var(--radius-lg); padding: 36px 40px; margin-top: 48px;
}
.mission-highlight .fa-quote-left,
.mission-highlight .fa-quote-right { font-size: 1.8rem; color: var(--accent); opacity: .4; flex-shrink: 0; }
.mission-highlight p { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 700; color: var(--navy); line-height: 1.5; text-align: center; }
.mission-highlight p strong { color: var(--accent); }

/* ---- Okinawa Status ---- */
.status-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 40px; }
.status-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.status-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.status-icon {
  width: 52px; height: 52px; background: var(--accent-pale);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent); margin-bottom: 16px;
}
.status-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.status-card p  { font-size: .88rem; color: var(--text-mid); line-height: 1.75; }
.status-card p strong { color: var(--navy); }
.problem-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: var(--radius-md); padding: 32px 40px; }
.problem-banner-inner { display: flex; align-items: center; gap: 20px; color: var(--white); }
.problem-banner-inner .fa-exclamation-triangle { font-size: 2rem; color: #fbbf24; flex-shrink: 0; }
.problem-banner-inner p { font-size: 1.05rem; line-height: 1.8; }
.problem-banner-inner p strong { color: #fbbf24; }

/* ---- For Students ---- */
.student-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 48px; }
.student-feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 32px 24px; position: relative; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.student-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.student-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}
.feature-num  { font-family: var(--font-en); font-size: 2.5rem; font-weight: 900; color: var(--bg-light); line-height: 1; margin-bottom: 8px; }
.feature-icon { font-size: 1.8rem; color: var(--teal); margin-bottom: 14px; }
.student-feature-card h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.student-feature-card p  { font-size: .87rem; color: var(--text-mid); line-height: 1.75; }
.student-cta-box {
  background: linear-gradient(135deg, #e0f6fb 0%, #dceefb 100%);
  border: 1.5px solid rgba(14,165,200,.25); border-radius: var(--radius-lg); padding: 40px 48px;
}
.student-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.student-cta-inner .btn { flex-shrink: 0; }
.student-cta-text h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.student-cta-text p  { font-size: .95rem; color: var(--text-mid); }

/* ---- Program Timeline ---- */
.program-timeline { position: relative; max-width: 720px; margin: 0 auto 40px; }
.program-timeline::before {
  content: ''; position: absolute; left: 90px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), var(--teal));
}
.timeline-item { display: flex; gap: 0; margin-bottom: 40px; align-items: flex-start; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-time { width: 80px; font-family: var(--font-en); font-size: .85rem; font-weight: 700; color: var(--accent); padding-top: 16px; flex-shrink: 0; text-align: right; }
.timeline-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--accent); flex-shrink: 0; margin: 14px 24px 0 11px; position: relative; z-index: 1; }
.timeline-content {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 28px; flex: 1; box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}
.timeline-content:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.timeline-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.timeline-content h3 i { color: var(--accent); }
.timeline-content p { font-size: .88rem; color: var(--text-mid); line-height: 1.75; }
.program-note {
  display: flex; align-items: center; gap: 16px;
  background: var(--accent-pale); border: 1px solid rgba(26,127,212,.2);
  border-radius: var(--radius-sm); padding: 20px 28px; max-width: 720px; margin: 0 auto;
}
.program-note .fa-info-circle { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.program-note p { font-size: .9rem; color: var(--text-mid); }
.program-note p strong { color: var(--navy); }

/* ---- Results ---- */
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 56px; }
.result-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 36px 24px; text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-highlight { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border: none; }
.result-icon { font-size: 2rem; margin-bottom: 16px; color: var(--accent); }
.result-highlight .result-icon { color: #fbbf24; }
.result-number { font-family: var(--font-en); font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.result-highlight .result-number { color: var(--white); }
.result-desc { font-size: .85rem; color: var(--text-mid); line-height: 1.7; }
.result-highlight .result-desc { color: rgba(255,255,255,.75); }
.result-desc strong { color: var(--navy); }
.result-highlight .result-desc strong { color: var(--white); }
.voice-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.voice-card { display: flex; gap: 20px; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.voice-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--accent); flex-shrink: 0; }
.voice-text { font-size: .9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; font-style: italic; }
.voice-meta { font-size: .78rem; color: var(--text-muted); font-weight: 600; }

/* ---- For Companies ---- */
.company-benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.company-benefit-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 32px 24px;
  transition: background var(--trans), transform var(--trans);
}
.company-benefit-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.benefit-icon { width: 52px; height: 52px; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #7dd3fc; margin-bottom: 18px; }
.company-benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.company-benefit-card p  { font-size: .87rem; color: rgba(255,255,255,.7); line-height: 1.75; }
.company-benefit-card p strong { color: #fbbf24; }

/* ---- Comparison Table ---- */
.comparison-table-wrapper { overflow-x: auto; margin-bottom: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.comparison-table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--white); font-size: .92rem; }
.comparison-table thead tr { background: var(--navy); }
.comparison-table thead th { padding: 20px 16px; text-align: center; color: rgba(255,255,255,.7); font-weight: 600; font-size: .85rem; line-height: 1.4; vertical-align: middle; border: none; }
.comparison-table thead th.col-criteria { text-align: left; width: 200px; color: rgba(255,255,255,.5); }
.comparison-table thead th.highlight-col { background: var(--accent); color: var(--white); font-weight: 800; }
.recommended-badge { display: inline-block; background: #fbbf24; color: var(--navy-dark); font-size: .65rem; font-weight: 800; letter-spacing: .05em; padding: 2px 8px; border-radius: 999px; margin-top: 6px; }
.comparison-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--trans); }
.comparison-table tbody tr:hover { background: var(--bg-light); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table td { padding: 18px 16px; text-align: center; vertical-align: middle; line-height: 1.5; }
.comparison-table td small { display: block; font-size: .75rem; color: var(--text-muted); margin-top: 4px; }
.criteria-cell { text-align: left !important; font-weight: 600; color: var(--text-dark); background: var(--bg-light); }
.criteria-cell i { color: var(--accent); margin-right: 8px; width: 18px; }
.highlight-cell { background: rgba(26,127,212,.06); }
.cost-high { font-weight: 800; color: var(--red);    font-size: 1.05rem; }
.cost-mid  { font-weight: 800; color: var(--orange); font-size: 1.05rem; }
.cost-low  { font-weight: 800; color: var(--green);  font-size: 1.25rem; }
.badge-high, .badge-mid, .badge-low { display: inline-block; padding: 4px 12px; border-radius: 999px; font-weight: 700; font-size: .82rem; }
.badge-high { background: var(--green-bg);  color: var(--green);  }
.badge-mid  { background: var(--orange-bg); color: var(--orange); }
.badge-low  { background: var(--red-bg);    color: var(--red);    }
.comparison-summary { background: linear-gradient(135deg, var(--accent-pale) 0%, var(--teal-light) 100%); border: 1.5px solid rgba(26,127,212,.2); border-radius: var(--radius-md); padding: 28px 36px; }
.comparison-summary-inner { display: flex; align-items: center; gap: 18px; }
.comparison-summary-inner .fa-lightbulb { font-size: 1.8rem; color: #f59e0b; flex-shrink: 0; }
.comparison-summary-inner p { font-size: 1.05rem; color: var(--navy); font-weight: 500; }
.comparison-summary-inner p strong { color: var(--accent); font-weight: 800; }

/* ---- Plan Steps ---- */
.plan-steps { max-width: 720px; margin: 0 auto; }
.plan-step { display: flex; gap: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 32px; box-shadow: var(--shadow-sm); align-items: flex-start; }
.step-num { font-family: var(--font-en); font-size: .75rem; font-weight: 800; letter-spacing: .12em; color: var(--white); background: var(--accent); padding: 6px 14px; border-radius: 999px; flex-shrink: 0; white-space: nowrap; margin-top: 2px; }
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.step-content h3 i { color: var(--accent); }
.step-content p { font-size: .88rem; color: var(--text-mid); line-height: 1.75; }
.plan-arrow { text-align: center; color: var(--accent); font-size: 1.4rem; padding: 8px 0; }

/* ---- Expected Results ---- */
.expected-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.expected-card { border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-md); }
.student-card { background: linear-gradient(135deg, var(--teal-light) 0%, #dceefb 100%); border: 1.5px solid rgba(14,165,200,.2); }
.company-card { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.expected-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.expected-header i { font-size: 2rem; color: var(--accent); }
.company-card .expected-header i { color: #7dd3fc; }
.expected-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.company-card .expected-header h3 { color: var(--white); }
.expected-list { display: flex; flex-direction: column; gap: 12px; }
.expected-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--text-mid); line-height: 1.65; }
.company-card .expected-list li { color: rgba(255,255,255,.85); }
.expected-list li .fa-check { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.company-card .expected-list li .fa-check { color: #7dd3fc; }

/* ---- CTA Section ---- */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 64px; }
.cta-card { border-radius: var(--radius-lg); padding: 48px 40px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.cta-icon { font-size: 3rem; margin-bottom: 16px; }
.cta-student .cta-icon { color: var(--line-green); }
.cta-company .cta-icon { color: #7dd3fc; }
.cta-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-desc { font-size: .95rem; color: rgba(255,255,255,.75); margin-bottom: 24px; line-height: 1.75; }
.cta-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cta-features li { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.85); }
.cta-features li .fa-check { color: #7dd3fc; flex-shrink: 0; }
.cta-student .cta-features li .fa-check { color: var(--line-green); }

/* Contact Form */
.contact-form-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.contact-form {
  width: 100%;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  box-sizing: border-box;
}
.form-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 36px; text-align: center; }
.form-title::after { content: ''; display: block; width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--teal)); border-radius: 2px; margin: 12px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.required { display: inline-block; background: var(--red); color: var(--white); font-size: .65rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-ja); font-size: .95rem; color: var(--text-dark); background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans); outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b8097' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,127,212,.12); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,48,49,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; padding-top: 8px; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
  min-width: 200px;
}
.btn-navy:hover { background: var(--navy-dark); box-shadow: var(--shadow-lg); }
.form-success, .form-error { display: flex; align-items: center; gap: 14px; padding: 20px 28px; border-radius: var(--radius-sm); margin-top: 20px; font-size: .95rem; font-weight: 600; }
.form-success { background: var(--green-bg); color: var(--green); border: 1.5px solid rgba(13,158,108,.25); }
.form-success i { font-size: 1.4rem; }
.form-error   { background: var(--red-bg);   color: var(--red);   border: 1.5px solid rgba(214,48,49,.25); }
.form-error i { font-size: 1.4rem; }

/* ---- Closing ---- */
.closing { text-align: center; }
.closing-content p { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.9; }
.closing-content p strong { color: var(--navy); }
.closing-quote { display: flex; align-items: center; justify-content: center; gap: 24px; background: var(--navy); border-radius: var(--radius-lg); padding: 48px 56px; margin: 40px 0; }
.closing-quote .fa-quote-left,
.closing-quote .fa-quote-right { font-size: 2rem; color: rgba(255,255,255,.3); flex-shrink: 0; }
.closing-quote p { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.6; text-align: center; margin: 0; }
.closing-quote p strong { color: #7dd3fc; }
.closing-sign { font-weight: 700 !important; color: var(--navy) !important; font-size: .95rem !important; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-dark); padding: 56px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-en); font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.footer-note { font-size: .72rem !important; }

/* ---- Scroll Top ---- */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
  border-radius: 50%; background: var(--navy); color: var(--white);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
  transform: translateY(16px); transition: opacity var(--trans), transform var(--trans), background var(--trans);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); }

/* ---- Fade-in ---- */
.fade-in-up { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .status-grid,
  .student-features,
  .company-benefits,
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .contact-form-section { padding: 40px 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .header-nav {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy-dark); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 0; max-height: 0; overflow: hidden;
    transition: max-height .4s ease; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .header-nav.open { max-height: 480px; }
  .header-nav a { display: block; width: 100%; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .header-nav .nav-cta { margin: 16px 24px; width: calc(100% - 48px); border-radius: var(--radius-sm); text-align: center; }
  .hamburger { display: flex; }
  .hero-cta-group { flex-direction: column; }
  .mission-highlight { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .mission-highlight .fa-quote-right { display: none; }
  .student-cta-inner { flex-direction: column; align-items: stretch; }
  .student-cta-box { padding: 32px 24px; }
  .student-cta-inner .btn { width: 100%; text-align: center; justify-content: center; }
  .voices-grid { grid-template-columns: 1fr; }
  .voice-card { flex-direction: column; }
  .expected-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; margin-bottom: 0; }
  .form-row .form-group { margin-bottom: 24px; }
  .contact-form-section { padding: 32px 20px; }
  .closing-quote { flex-direction: column; gap: 12px; padding: 32px 24px; }
  .closing-quote .fa-quote-right { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .status-grid,
  .student-features,
  .company-benefits,
  .results-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; }
  .hero-stat-divider { display: none; }
  .program-timeline::before { left: 72px; }
  .timeline-time { width: 65px; font-size: .78rem; }
  .cta-card { padding: 32px 24px; }
  .scroll-top { bottom: 20px; right: 20px; }
}

/* ---- Instagram Section ---- */
.instagram-section { }

.ig-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
}
.ig-tab {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  font-family: var(--font-ja);
}
.ig-tab:hover { color: var(--navy); background: var(--bg-light); }
.ig-tab.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.ig-grid { display: grid; gap: 32px; }
.ig-grid-2 { grid-template-columns: 1fr 1fr; }
.ig-grid-1 { grid-template-columns: 1fr; }

.ig-embed-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ig-embed-center {
  max-width: 540px;
  margin: 0 auto;
}
.ig-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  width: fit-content;
}
.ig-caption i { color: var(--accent); }

/* Instagram embed container styling */
.ig-embed-wrap .instagram-media {
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-md) !important;
}

/* Placeholder while loading */
.ig-embed-wrap blockquote {
  background: var(--bg-light) !important;
  border-radius: var(--radius-md) !important;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ig-embed-wrap blockquote::after {
  content: '\f16d';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--border);
  position: absolute;
}

.ig-follow-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.btn-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(188,24,136,.35);
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
}
.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(188,24,136,.45);
  filter: brightness(1.05);
}
.ig-follow-note {
  font-size: .88rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .ig-tabs { border-radius: var(--radius-md); padding: 6px; }
  .ig-tab  { padding: 10px 16px; font-size: .82rem; }
  .ig-grid-2 { grid-template-columns: 1fr; }
}

