/* =================================================
   てならいワークス｜LP Stylesheet
   Design System: Deep Navy × Luminous Mint
   ================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --c-navy: #1E293B;
  --c-navy-dark: #0F172A;
  --c-navy-light: #334155;
  --c-mint: #10B981;
  --c-cyan: #06B6D4;
  --c-white: #FFFFFF;
  --c-base: #F8FAFC;
  --c-base-2: #F1F5F9;
  --c-border: #E2E8F0;
  --c-text: #1E293B;
  --c-text-sub: #475569;
  --c-text-mute: #94A3B8;
  --c-warn: #F59E0B;
  --c-red: #EF4444;

  --grad-cta: linear-gradient(135deg, #1E293B 0%, #0F766E 50%, #10B981 100%);
  --grad-cta-hover: linear-gradient(135deg, #334155 0%, #10B981 50%, #06B6D4 100%);
  --grad-bg-mint: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
  --grad-bg-soft: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);

  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-cta: 0 10px 25px rgba(16, 185, 129, 0.35);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic UI', sans-serif;
  color: var(--c-text);
  line-height: 1.75;
  background: var(--c-white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ---------- Common Headings ---------- */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-mint);
  margin-bottom: 14px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
}
.section-title {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.45;
  color: var(--c-navy);
  letter-spacing: 0.02em;
}
.section-lead {
  margin-top: 16px;
  color: var(--c-text-sub);
  font-size: 16px;
}

/* ハイライト風マーカー */
mark.hl {
  background: linear-gradient(transparent 60%, rgba(16, 185, 129, 0.35) 60%);
  color: var(--c-navy);
  padding: 0 2px;
  font-weight: 900;
}
mark.hl-light {
  background: linear-gradient(transparent 60%, rgba(6, 182, 212, 0.55) 60%);
  color: var(--c-white);
  padding: 0 2px;
  font-weight: 900;
}

/* =================================================
   Top bar
   ================================================= */
.top-bar {
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 13px;
  padding: 10px 16px;
  text-align: center;
  border-bottom: 2px solid var(--c-mint);
}
.top-bar-inner {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.top-bar-item i { color: var(--c-mint); margin-right: 6px; }
.top-bar-divider { color: var(--c-navy-light); }
.top-bar-deadline { color: #FCD34D; font-weight: 700; }

/* =================================================
   Site header
   ================================================= */
.site-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.logo-fallback {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: 'Noto Sans JP', sans-serif;
}
.logo-fallback-jp {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 50%, #FBBF24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.logo-fallback-en {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #F97316;
  letter-spacing: 0.18em;
  margin-top: 2px;
}
.footer-logo-fallback .logo-fallback-en { color: #FCD34D; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--grad-cta);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta); }
@media (max-width: 600px) {
  .site-logo img { height: 34px; }
  .header-cta { padding: 8px 14px; font-size: 12px; }
}

/* =================================================
   Hero
   ================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #ECFEFF 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.15), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(6, 182, 212, 0.12), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
  color: var(--c-navy);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge i { color: #D97706; }
.hero-badge small { display: block; font-size: 11px; font-weight: 500; opacity: 0.8; }

.hero-title {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--c-navy);
}
.hero-title-line { display: block; }
.hero-title-sub { font-size: 0.7em; color: var(--c-text-sub); margin-top: 14px; font-weight: 700; }
.hero-title-strong {
  font-size: 1.1em;
  color: var(--c-navy);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-sub { margin-top: 28px; }
.hero-sub p { color: var(--c-text-sub); font-size: 15px; line-height: 1.9; }
.hero-sub strong { color: var(--c-navy); font-weight: 700; }
.hero-sub p.hero-sub-tag {
  display: inline-block;
  background: var(--c-navy);
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  line-height: 1.6;
}

.hero-cta-wrap { margin-top: 36px; }
.cta-note {
  margin-top: 14px;
  color: var(--c-text-sub);
  font-size: 13px;
}
.cta-note i { color: var(--c-mint); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-floating {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  animation: float 4s var(--ease) infinite;
}
.hero-floating i {
  font-size: 22px;
  color: var(--c-mint);
  background: rgba(16, 185, 129, 0.12);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-floating strong { display: block; font-size: 14px; color: var(--c-navy); }
.hero-floating small { font-size: 11px; color: var(--c-text-sub); }
.hero-floating-1 { top: 8%; left: -8%; animation-delay: 0s; }
.hero-floating-2 { bottom: 18%; right: -10%; animation-delay: 1.2s; }
.hero-floating-3 { bottom: -3%; left: 5%; animation-delay: 2.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-floating-1 { left: 0; }
  .hero-floating-2 { right: 0; }
  .hero-floating-3 { left: 0; bottom: 0; }
}
@media (max-width: 600px) {
  .hero-floating { min-width: 140px; padding: 8px 12px; }
  .hero-floating strong { font-size: 12px; }
  .hero-floating small { font-size: 10px; }
  .hero-floating i { width: 32px; height: 32px; font-size: 16px; }
}

/* =================================================
   CTA Buttons
   ================================================= */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px 18px 30px;
  background: var(--grad-cta);
  color: var(--c-white);
  font-weight: 700;
  font-size: 17px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-cta);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  letter-spacing: 0.02em;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
  background: var(--grad-cta-hover);
}
.cta-btn:hover::before { transform: translateX(100%); }
.cta-btn-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}
.cta-btn:hover .cta-btn-icon { transform: rotate(-45deg); }

.cta-btn-mega {
  padding: 24px 48px 24px 40px;
  font-size: 20px;
}
.cta-btn-mega .cta-btn-icon { width: 44px; height: 44px; font-size: 16px; }

.middle-cta {
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 600px) {
  .cta-btn { font-size: 15px; padding: 16px 24px 16px 20px; gap: 10px; }
  .cta-btn-icon { width: 30px; height: 30px; font-size: 12px; }
  .cta-btn-mega { font-size: 17px; padding: 20px 28px; }
  .cta-btn-mega .cta-btn-icon { width: 36px; height: 36px; }
}

/* =================================================
   Trouble Section
   ================================================= */
.section-trouble { background: var(--c-base); }
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trouble-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px 28px 28px 72px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--c-text-sub);
}
.trouble-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trouble-card strong { color: var(--c-navy); font-weight: 700; }
.trouble-check {
  position: absolute;
  left: 24px; top: 26px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-bg-mint);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
@media (max-width: 700px) {
  .trouble-grid { grid-template-columns: 1fr; }
}

/* =================================================
   Before / After Section
   ================================================= */
.section-ba { background: var(--c-white); }
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.ba-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  position: relative;
}
.ba-label {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-text-mute);
  color: var(--c-white);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}
.ba-before { background: var(--c-base-2); opacity: 0.88; }
.ba-before .ba-icon { color: var(--c-text-mute); }
.ba-before .ba-title { color: var(--c-text-sub); }

.ba-after {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: var(--c-white);
  border-color: var(--c-navy);
  transform: scale(1.04);
}
.ba-after .ba-label { background: var(--c-mint); }
.ba-after .ba-icon { color: var(--c-mint); }
.ba-after .ba-title { color: var(--c-white); }
.ba-after .ba-desc { color: rgba(255,255,255,0.85); }
.ba-after strong { color: #6EE7B7; }

.ba-icon { font-size: 40px; margin-bottom: 16px; }
.ba-title { font-size: 22px; font-weight: 900; margin-bottom: 14px; }
.ba-desc { font-size: 14.5px; line-height: 1.9; color: var(--c-text-sub); }

.ba-arrow {
  font-size: 32px;
  color: var(--c-mint);
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: var(--c-white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

@media (max-width: 800px) {
  .ba-wrap { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
  .ba-after { transform: none; }
}

/* =================================================
   Goal Section
   ================================================= */
.section-goal {
  background: linear-gradient(180deg, var(--c-base) 0%, var(--c-white) 100%);
}
.goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.goal-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 44px 28px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.goal-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-bg-mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.goal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.goal-card:hover::before { transform: scaleX(1); }

.goal-num {
  position: absolute;
  top: 18px; right: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--c-base-2);
  line-height: 1;
}
.goal-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-bg-mint);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.goal-card-center .goal-icon {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-mint) 100%);
}
.goal-title {
  font-size: 19px;
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.goal-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-mint);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.goal-desc {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.9;
  text-align: left;
}

@media (max-width: 800px) {
  .goal-grid { grid-template-columns: 1fr; }
}

/* =================================================
   Schedule Table
   ================================================= */
.section-schedule { background: var(--c-white); }
.schedule-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.schedule-table {
  font-size: 14.5px;
}
.schedule-table thead th {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 16px 18px;
  font-weight: 700;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.schedule-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
  color: var(--c-text-sub);
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.td-time { white-space: nowrap; font-weight: 700; color: var(--c-navy); font-family: 'Inter', sans-serif; }
.td-name { font-weight: 700; color: var(--c-navy); }
.td-day { font-weight: 900; text-align: center; font-size: 16px; color: var(--c-white); width: 90px; }
.day1-cell { background: linear-gradient(135deg, #1E293B 0%, #334155 100%); }
.day2-cell { background: linear-gradient(135deg, #0F766E 0%, #10B981 100%); }

.row-day-header td {
  padding: 14px 18px !important;
  background: var(--c-base);
  font-weight: 700;
  color: var(--c-navy);
}
.day1-header td { border-left: 4px solid var(--c-navy); }
.day2-header td { border-left: 4px solid var(--c-mint); }
.day-label {
  display: inline-block;
  background: var(--c-navy);
  color: var(--c-white);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-right: 12px;
  letter-spacing: 0.1em;
}
.day2-header .day-label { background: var(--c-mint); }
.day-theme { font-size: 14px; }

@media (max-width: 760px) {
  .schedule-table thead { display: none; }
  .schedule-table, .schedule-table tbody, .schedule-table tr, .schedule-table td { display: block; width: 100%; }
  .schedule-table tbody td { padding: 8px 16px; border-bottom: none; }
  .schedule-table tbody tr {
    border-bottom: 1px solid var(--c-border);
    padding: 12px 0;
  }
  .schedule-table tbody tr:nth-last-child(1),
  .schedule-table tbody tr:nth-last-child(5) { padding-bottom: 16px; }
  .td-day { display: none !important; }
  .row-day-header td { padding: 14px 16px !important; }
  .td-time::before { content: "🕐 "; }
  .td-name { font-size: 16px; }
}

/* =================================================
   Tools Section
   ================================================= */
.section-tools { background: var(--c-base); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tool-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tool-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tool-card-wide { grid-column: span 4; text-align: left; padding: 36px; }
.tool-card-wide { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.tool-card-wide .tool-icon { margin: 0; }
.tool-card-wide .tool-name, .tool-card-wide .tool-cat, .tool-card-wide .tool-desc { grid-column: 2; }

.tool-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
}
.tool-icon-gemini { background: linear-gradient(135deg, #4285F4 0%, #9333EA 100%); }
.tool-icon-ig { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
.tool-icon-line { background: #06C755; }
.tool-icon-studio { background: linear-gradient(135deg, #1E293B 0%, #475569 100%); }
.tool-icon-multi { background: var(--grad-bg-mint); }

.tool-name { font-size: 18px; font-weight: 900; color: var(--c-navy); margin-bottom: 4px; }
.tool-cat { font-size: 12px; font-weight: 700; color: var(--c-mint); margin-bottom: 12px; letter-spacing: 0.08em; }
.tool-desc { font-size: 13.5px; color: var(--c-text-sub); line-height: 1.85; }
.tool-desc strong { color: var(--c-navy); }

.tool-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
  grid-column: 2;
}
.tool-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--c-base);
  border: 1px solid var(--c-border);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-navy);
}
.tool-chip i { color: var(--c-mint); }

@media (max-width: 1000px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-card-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card-wide { grid-column: span 1; grid-template-columns: 1fr; text-align: center; }
  .tool-card-wide .tool-icon { margin: 0 auto 16px; }
  .tool-card-wide .tool-name, .tool-card-wide .tool-cat, .tool-card-wide .tool-desc, .tool-chips { grid-column: 1; }
  .tool-chips { justify-content: center; }
}

/* =================================================
   Career & Bonus Section
   ================================================= */
.section-career { background: var(--c-white); }
.career-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.career-wrap-single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.career-col {
  background: var(--c-base);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--c-border);
}
.career-col-title {
  font-size: 19px;
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-border);
  display: flex; align-items: center; gap: 12px;
}
.career-col-title i { color: var(--c-mint); }
.bonus-col .career-col-title i { color: var(--c-warn); }

.career-list { display: flex; flex-direction: column; gap: 18px; }
.career-list li {
  display: flex; gap: 16px;
  background: var(--c-white);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.career-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--grad-bg-mint);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.career-list strong {
  display: block;
  font-size: 16px;
  color: var(--c-navy);
  margin-bottom: 4px;
}
.career-list p { font-size: 13.5px; color: var(--c-text-sub); }

.career-support {
  margin-top: 24px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 20px;
  border-radius: var(--radius);
}
.career-support h4 { font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.career-support h4 i { color: var(--c-mint); }
.career-support p { font-size: 13.5px; color: rgba(255,255,255,0.85); }
.career-support strong { color: #6EE7B7; }

/* Bonus cards */
.bonus-list { display: flex; flex-direction: column; gap: 16px; }
.bonus-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 2px dashed var(--c-warn);
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: center;
  transition: transform 0.25s var(--ease);
}
.bonus-card:hover { transform: translateX(4px); }
.bonus-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  background: var(--c-warn);
  color: var(--c-white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
}
.bonus-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--c-warn);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.bonus-card h4 { font-size: 14.5px; color: var(--c-navy); font-weight: 700; line-height: 1.6; }

@media (max-width: 800px) {
  .career-wrap { grid-template-columns: 1fr; }
}

/* =================================================
   Instructor Section
   ================================================= */
.section-instructor {
  background: linear-gradient(180deg, var(--c-base) 0%, var(--c-white) 100%);
}
.instructor-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--c-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.instructor-photo-wrap {
  position: relative;
  text-align: center;
}
.instructor-photo {
  width: 280px; height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--c-white);
  position: relative;
  background: var(--c-base-2);
}
.instructor-photo::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--grad-bg-mint);
  z-index: -1;
}
.instructor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.instructor-bubble {
  position: relative;
  margin-top: 30px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.instructor-bubble::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 10px 12px 10px;
  border-color: transparent transparent var(--c-navy) transparent;
}
.instructor-bubble i {
  color: var(--c-mint);
  font-size: 14px;
  margin-right: 8px;
}
.instructor-bubble span {
  background: linear-gradient(120deg, #FCD34D 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instructor-detail { padding-top: 10px; }
.instructor-role {
  font-size: 13px;
  color: var(--c-mint);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.instructor-name {
  font-size: 30px;
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 24px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.instructor-name span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--c-text-mute);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.instructor-message {
  font-size: 15px;
  color: var(--c-text-sub);
  line-height: 1.95;
  padding: 20px 24px;
  background: var(--c-base);
  border-radius: var(--radius);
  border-left: 4px solid var(--c-mint);
  margin-bottom: 28px;
}
.instructor-message strong { color: var(--c-navy); }

.instructor-info { display: grid; gap: 22px; }
.info-block h4 {
  font-size: 14px;
  color: var(--c-navy);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.info-block h4 i { color: var(--c-mint); }
.info-block p { font-size: 14px; color: var(--c-text-sub); line-height: 1.85; }

.skill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.skill-list li {
  background: var(--c-base);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--c-text-sub);
  display: flex; justify-content: space-between; align-items: center;
  border-left: 3px solid var(--c-mint);
}
.skill-list strong { color: var(--c-navy); font-size: 13.5px; }

@media (max-width: 900px) {
  .instructor-wrap { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
}
@media (max-width: 600px) {
  .instructor-photo { width: 220px; height: 220px; }
  .instructor-name { font-size: 24px; }
  .skill-list { grid-template-columns: 1fr; }
  .instructor-wrap { padding: 24px; }
}

/* =================================================
   Overview Section
   ================================================= */
.section-overview { background: var(--c-base); }
.overview-table {
  max-width: 880px;
  margin: 0 auto;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.overview-table dl {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid var(--c-border);
}
.overview-table dl:last-child { border-bottom: none; }
.overview-table dt {
  background: var(--c-base);
  padding: 22px 26px;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
}
.overview-table dt i { color: var(--c-mint); }
.overview-table dd {
  padding: 22px 26px;
  color: var(--c-text-sub);
  font-size: 14.5px;
  line-height: 1.85;
}
.overview-table dd strong { color: var(--c-navy); }
.overview-table dd small { display: block; font-size: 12.5px; color: var(--c-text-mute); margin-top: 4px; }

@media (max-width: 700px) {
  .overview-table dl { grid-template-columns: 1fr; }
  .overview-table dd { padding: 16px 22px 22px; }
  .overview-table dt { padding: 14px 22px; }
}

/* =================================================
   Price Section
   ================================================= */
.section-price {
  background:
    linear-gradient(180deg, var(--c-white) 0%, var(--c-base) 50%, var(--c-white) 100%);
}
.price-box {
  max-width: 980px;
  margin: 0 auto;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--c-mint);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
  pointer-events: none;
}
.price-head { text-align: center; margin-bottom: 40px; position: relative; }
.price-tag-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: var(--c-white);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.price-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--c-navy);
}
.price-title span { color: var(--c-mint); }
.price-lead {
  margin-top: 12px;
  color: var(--c-text-sub);
  font-size: 15px;
}
.price-lead strong { color: var(--c-navy); }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}
.price-card {
  background: var(--c-base);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: transform 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); }
.price-card-label {
  display: inline-block;
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.price-old {
  text-decoration: line-through;
  color: var(--c-text-mute);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-old-num { font-family: 'Inter', sans-serif; font-size: 22px; }
.price-arrow { color: var(--c-text-mute); font-size: 16px; margin: 6px 0; }
.price-monitor {
  display: flex; justify-content: center; align-items: baseline; gap: 4px;
  margin: 6px 0;
}
.price-monitor-label {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}
.price-monitor-num {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--c-red);
  line-height: 1;
}
.price-monitor-unit { font-size: 18px; font-weight: 700; color: var(--c-red); }
.price-tax {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--c-text-mute);
}

.price-bonus {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  position: relative;
}
.price-bonus-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--c-warn);
  box-shadow: var(--shadow-sm);
}
.price-bonus-title {
  font-weight: 900;
  color: var(--c-navy);
  font-size: 14px;
  margin-bottom: 4px;
}
.price-bonus-text {
  color: var(--c-navy);
  font-size: 15px;
  line-height: 1.7;
}
.price-bonus-text strong { font-weight: 900; }
.price-highlight {
  color: var(--c-red);
  font-weight: 900;
  font-size: 1.3em;
  font-family: 'Inter', sans-serif;
}

.price-note {
  background: var(--c-base);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--c-text-sub);
  line-height: 1.8;
  border-left: 3px solid var(--c-mint);
}
.price-note i { color: var(--c-mint); margin-right: 6px; }
.price-note strong { color: var(--c-navy); }

@media (max-width: 720px) {
  .price-box { padding: 36px 24px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-bonus { grid-template-columns: 1fr; text-align: center; }
  .price-bonus-icon { margin: 0 auto; }
  .price-monitor-num { font-size: 36px; }
}

/* =================================================
   Final CTA
   ================================================= */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy-dark) 0%, var(--c-navy) 50%, #0F766E 100%);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  color: var(--c-white);
}
.final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.18), transparent 50%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6EE7B7;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.final-cta-tag i { color: #FCD34D; margin-right: 6px; }
.final-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.9;
}
.final-cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.final-cta-note i { color: var(--c-mint); margin-right: 6px; }

@media (max-width: 600px) {
  .final-cta { padding: 70px 0; }
}

/* =================================================
   Footer
   ================================================= */
.site-footer {
  background: var(--c-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
  text-align: center;
}
.site-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1) opacity(0.95);
}
.footer-contact {
  text-align: center;
}
.footer-contact-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.footer-contact-label i { color: var(--c-mint); margin-right: 6px; }
.footer-tel {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: 0.04em;
}
.footer-tel:hover { color: var(--c-mint); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  width: 100%;
  max-width: 600px;
}

/* =================================================
   Fade in animation (on scroll)
   ================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
