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

:root {
  --teal: #4EA99E;
  --teal-light: #7DCEC4;
  --teal-soft: #EDF7F5;
  --mint: #C8EDE7;
  --pink: #E4A0AC;
  --pink-soft: #FDF2F4;
  --pink-light: #F5D6DE;
  --yellow: #ECC872;
  --yellow-soft: #FDF6EC;
  --orange-soft: #FFF3E8;
  --blue-soft: #E8F2FF;
  --white: #FFFFFF;
  --cream: #FFFDF8;
  --dark: #333;
  --dark-sub: #555;
  --gray: #7A7A7A;
  --gray-light: #ABABAB;
  --gray-border: #ECECEC;
  --round: 'Shippori Mincho B1', 'YuMincho', serif;
  --sans: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  --sans-en: 'DM Sans', sans-serif;
  --nav-height: 64px;
  --radius: 10px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-weight: 400; color: var(--dark); background: var(--cream); line-height: 1.9; font-size: 15px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: background 0.4s, box-shadow 0.4s; }
.nav--scrolled { background: rgba(255,253,248,0.95); backdrop-filter: blur(16px); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav__logo { font-family: var(--round); font-size: 14px; font-weight: 700; color: var(--white); transition: color 0.4s; letter-spacing: 0.04em; }
.nav--scrolled .nav__logo { color: var(--dark); }
.nav__links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav__links a { font-family: var(--round); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.3s; }
.nav--scrolled .nav__links a { color: var(--dark-sub); }
.nav__links a:hover { color: var(--teal); }
.nav__cta { background: var(--pink); color: var(--white) !important; padding: 8px 22px; border-radius: 24px; font-weight: 700; font-size: 13px; transition: background 0.3s, transform 0.3s; box-shadow: 0 3px 12px rgba(228,160,172,0.3); }
.nav__cta:hover { background: #D8949E; transform: translateY(-2px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s, background 0.4s; }
.nav--scrolled .nav__hamburger span { background: var(--dark); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav__mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: rgba(255,253,248,0.98); backdrop-filter: blur(16px); z-index: 999; padding: 32px 24px; }
.nav__mobile.active { display: flex; flex-direction: column; }
.nav__mobile a { font-family: var(--round); font-size: 18px; font-weight: 500; padding: 18px 0; border-bottom: 1px solid var(--gray-border); display: block; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(78,169,158,0.92) 0%, rgba(61,184,169,0.88) 100%); z-index: 1; }
.hero__photos { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; z-index: 0; }
.hero__photo-slot { background: linear-gradient(135deg, var(--teal-soft) 0%, var(--pink-soft) 100%); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gray-light); overflow: hidden; }
.hero__photo-slot:nth-child(2) { background: linear-gradient(135deg, var(--pink-soft) 0%, var(--yellow-soft) 100%); }
.hero__photo-slot:nth-child(3) { background: linear-gradient(135deg, var(--yellow-soft) 0%, var(--teal-soft) 100%); }
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 700px; margin: 0 auto; }
.hero__catch-en { font-family: var(--sans-en); font-size: 13px; font-weight: 500; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-bottom: 20px; text-transform: uppercase; }
.hero__title { font-family: var(--round); font-size: clamp(32px, 7vw, 52px); font-weight: 900; color: var(--white); line-height: 1.5; margin-bottom: 16px; }
.hero__title em { font-style: normal; color: var(--yellow); }
.hero__sub { font-family: var(--round); font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 36px; font-weight: 500; }
.hero__badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__badge { background: rgba(255,255,255,0.2); backdrop-filter: blur(6px); padding: 8px 20px; border-radius: 24px; font-family: var(--round); font-size: 13px; font-weight: 600; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.hero__stats { display: flex; justify-content: center; gap: 40px; }
.hero__stat { text-align: center; }
.hero__stat-num { font-family: var(--sans-en); font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; }
.hero__stat-num small { font-size: 18px; font-weight: 500; opacity: 0.7; }
.hero__stat-label { font-family: var(--round); font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 500; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.hero__scroll-text { font-family: var(--sans-en); font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); margin: 0 auto; animation: scroll-anim 2s infinite; }
@keyframes scroll-anim { 0% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } }

/* PHOTO BANNER */
.photo-banner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; height: 240px; overflow: hidden; }
.photo-banner--3col { grid-template-columns: repeat(3, 1fr); height: 280px; }
.photo-banner__item { background: linear-gradient(135deg, var(--teal-soft), var(--pink-soft)); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gray-light); overflow: hidden; position: relative; }
.photo-banner__item:nth-child(2) { background: linear-gradient(135deg, var(--pink-soft), var(--yellow-soft)); }
.photo-banner__item:nth-child(3) { background: linear-gradient(135deg, var(--yellow-soft), var(--teal-soft)); }
.photo-banner__item:nth-child(4) { background: linear-gradient(135deg, var(--cream), var(--teal-soft)); }
.photo-banner__item--overlay { position: relative; }
.photo-banner__item--overlay::after { content: ''; position: absolute; inset: 0; background: rgba(78,169,158,0.7); }
.photo-banner__text { position: relative; z-index: 1; text-align: center; color: var(--white); font-family: var(--round); font-weight: 700; font-size: 20px; line-height: 1.6; padding: 20px; }
.photo-banner__text small { display: block; font-size: 12px; font-weight: 400; opacity: 0.8; margin-top: 4px; }

/* ===== JOB QUICK NAV ===== */
.job-nav { background: var(--cream); padding: 40px 24px 20px; position: relative; z-index: 2; }
.job-nav__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.job-nav__lead { font-family: var(--round); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.job-nav__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.job-nav__card { display: flex; flex-direction: column; align-items: center; gap: 6px; background: var(--white); border-radius: var(--radius); padding: 24px 16px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; border: 2px solid transparent; position: relative; }
.job-nav__card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(78,169,158,0.15); }
.job-nav__card--dr:hover { border-color: var(--teal); }
.job-nav__card--dh:hover { border-color: var(--pink); }
.job-nav__card--da:hover { border-color: var(--yellow); }
.job-nav__en { font-family: var(--sans-en); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-light); }
.job-nav__title { font-family: var(--round); font-size: 18px; font-weight: 900; color: var(--dark); }
.job-nav__sub { font-family: var(--sans-en); font-size: 14px; font-weight: 600; color: var(--teal); }
.job-nav__arrow { font-family: var(--sans-en); font-size: 18px; color: var(--gray-light); transition: color 0.3s, transform 0.3s; }
.job-nav__card:hover .job-nav__arrow { color: var(--teal); transform: translateX(4px); }
@media (max-width: 768px) {
  .job-nav { padding: 32px 16px 12px; }
  .job-nav__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; gap: 10px; }
  .job-nav__card { flex-direction: row; padding: 18px 20px; gap: 12px; }
  .job-nav__en { font-size: 10px; }
  .job-nav__title { font-size: 16px; flex: 1; text-align: left; }
  .job-nav__sub { font-size: 13px; }
  .job-nav__arrow { margin-left: auto; }
}

/* DIAGONAL DIVIDER */
.divider { position: relative; height: 100px; overflow: hidden; }
.divider--down { clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%); }
.divider--up { clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 100%); }
.divider--angle { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%); }
.divider--angle-rev { clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%); }

/* DARK SECTION */
.section--dark { background: #242830; color: #fff; }
.section--dark .section-heading { color: #fff; }
.section--dark .section-heading em { color: var(--yellow); }
.section--dark .section-desc { color: rgba(255,255,255,0.6); }
.section--dark .section-label { color: var(--yellow); }

/* WAVE DIVIDER */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { display: block; width: 100%; height: auto; }

/* ===== SECTION COMMON ===== */
.section { padding: 100px 24px; position: relative; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--pink { background: var(--pink-soft); }
.section--mint { background: var(--teal-soft); }
.section--yellow { background: var(--yellow-soft); }
.section__inner { max-width: 1000px; margin: 0 auto; }
.section-label { font-family: var(--sans-en); font-size: 13px; font-weight: 500; letter-spacing: 0.15em; color: var(--teal); text-transform: uppercase; margin-bottom: 12px; }
.section-heading { font-family: var(--round); font-size: clamp(24px, 5vw, 38px); font-weight: 900; line-height: 1.5; color: var(--dark); margin-bottom: 16px; }
.section-heading em { font-style: normal; color: var(--teal); }
.section-desc { font-size: 15px; line-height: 2; color: var(--gray); max-width: 600px; }
.section--center { text-align: center; }
.section--center .section-desc { margin: 0 auto; }

/* ===== MESSAGE ===== */
.msg { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.msg__photo { width: 280px; height: 340px; border-radius: 140px 140px var(--radius) var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--teal-soft) 0%, var(--pink-soft) 100%); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--gray-light); box-shadow: 0 12px 40px rgba(78,169,158,0.12); }
.msg__quote { font-family: var(--round); font-size: clamp(20px, 3vw, 28px); font-weight: 700; line-height: 1.8; color: var(--dark); margin-bottom: 20px; position: relative; padding-left: 24px; border-left: 4px solid var(--teal); }
.msg__text { font-size: 14px; line-height: 2.2; color: var(--gray); margin-bottom: 24px; }
.msg__name { font-family: var(--round); font-size: 14px; color: var(--dark); font-weight: 700; }
.msg__title { font-size: 12px; color: var(--gray-light); margin-top: 2px; }

/* ===== NUMBERS ===== */
.num-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.num-card { background: var(--white); border-radius: var(--radius); padding: 28px 16px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s; }
.num-card:hover { transform: translateY(-6px); }
.num-card__icon { font-size: 32px; margin-bottom: 8px; }
.num-card__val { font-family: var(--sans-en); font-size: 52px; font-weight: 700; color: var(--teal); line-height: 1.1; }
.num-card__val small { font-size: 14px; font-weight: 500; color: var(--gray); }
.num-card__label { font-family: var(--round); font-size: 12px; color: var(--gray); margin-top: 6px; font-weight: 500; }

/* DATA VIS */
.data-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.data-box { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.data-box__title { font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.bar-item { margin-bottom: 14px; }
.bar-item__head { display: flex; justify-content: space-between; font-family: var(--round); font-size: 13px; color: var(--dark-sub); margin-bottom: 5px; font-weight: 500; }
.bar-item__track { height: 12px; background: var(--gray-border); border-radius: 6px; overflow: hidden; }
.bar-item__fill { height: 100%; border-radius: 6px; transition: width 1.5s ease; width: 0; }
.fill--teal { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.fill--pink { background: linear-gradient(90deg, #F5A0B8, #FFB8CC); }
.fill--yellow { background: linear-gradient(90deg, #FFD666, #FFE599); }
.fill--blue { background: linear-gradient(90deg, #7BADE2, #A5C8F0); }
.fill--mint { background: linear-gradient(90deg, var(--mint), #D4F0EA); }
.donut-wrap { display: flex; align-items: center; gap: 28px; }
.donut { width: 120px; height: 120px; border-radius: 50%; position: relative; flex-shrink: 0; }
.donut__hole { position: absolute; inset: 24px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; flex-direction: column; }
.donut__num { font-family: var(--sans-en); font-size: 22px; font-weight: 700; color: var(--teal); }
.donut__txt { font-family: var(--round); font-size: 10px; color: var(--gray-light); }
.legend { display: flex; flex-direction: column; gap: 8px; }
.legend__item { display: flex; align-items: center; gap: 8px; font-family: var(--round); font-size: 13px; color: var(--dark-sub); font-weight: 500; }
.legend__dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* ===== APPEAL ===== */
.appeal-list { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.appeal-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.appeal-item::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--teal); transform: scaleY(0); transition: transform 0.4s; transform-origin: top; }
.appeal-item:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(78,169,158,0.12); }
.appeal-item:hover::before { transform: scaleY(1); }
.appeal-item:nth-child(even) { background: var(--teal-soft); }
.appeal-item__num { font-family: var(--sans-en); font-size: 56px; font-weight: 700; color: var(--teal); line-height: 1; opacity: 0.25; }
.appeal-item__body {}
.appeal-item__icon { font-size: 28px; margin-bottom: 8px; }
.appeal-item__title { font-family: var(--round); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.appeal-item__desc { font-size: 14px; line-height: 2; color: var(--gray); }
.appeal-item__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.appeal-tag { background: var(--teal-soft); color: var(--teal); font-family: var(--round); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.appeal-item:nth-child(even) .appeal-tag { background: var(--white); }

/* ===== EDUCATION ===== */
.edu-steps { margin-top: 48px; position: relative; }
.edu-steps::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--teal), var(--pink), var(--yellow)); border-radius: 2px; }
.edu-card { position: relative; padding-left: 80px; margin-bottom: 36px; }
.edu-card:last-child { margin-bottom: 0; }
.edu-card__dot { position: absolute; left: 20px; top: 8px; width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 3px solid var(--teal); display: flex; align-items: center; justify-content: center; font-family: var(--sans-en); font-size: 12px; font-weight: 700; color: var(--teal); }
.edu-card__inner { background: var(--white); border-radius: var(--radius); padding: 24px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.edu-card__period { font-family: var(--sans-en); font-size: 12px; font-weight: 500; color: var(--pink); letter-spacing: 0.06em; margin-bottom: 4px; }
.edu-card__title { font-family: var(--round); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.edu-card__desc { font-size: 13px; line-height: 2; color: var(--gray); }
.edu-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.edu-tag { background: var(--yellow-soft); color: #C69500; font-family: var(--round); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; }

/* ===== BENEFITS ===== */
.bene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.bene-card { background: var(--white); border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.03); transition: transform 0.3s; }
.bene-card:hover { transform: translateY(-4px); }
.bene-card__icon { font-size: 36px; margin-bottom: 10px; }
.bene-card__title { font-family: var(--round); font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.bene-card__desc { font-size: 11px; color: var(--gray); line-height: 1.7; }

/* ===== DAY ===== */
.day-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.day-col {}
.day-col__head { font-family: var(--round); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.day-col__sub { font-family: var(--sans-en); font-size: 12px; color: var(--gray-light); margin-bottom: 24px; }
.day-entry { display: flex; gap: 14px; margin-bottom: 16px; position: relative; }
.day-entry::before { content: ''; position: absolute; left: 19px; top: 36px; bottom: -16px; width: 2px; background: var(--gray-border); }
.day-entry:last-child::before { display: none; }
.day-entry__time { font-family: var(--sans-en); font-size: 13px; font-weight: 700; color: var(--teal); min-width: 40px; padding-top: 8px; }
.day-entry__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); margin-top: 12px; flex-shrink: 0; z-index: 1; }
.day-entry__box { flex: 1; background: var(--white); border-radius: 12px; padding: 12px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.day-entry__title { font-family: var(--round); font-size: 14px; font-weight: 700; color: var(--dark); }
.day-entry__desc { font-size: 12px; color: var(--gray-light); margin-top: 2px; }

/* ===== JOBS ===== */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.job-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.4s, box-shadow 0.4s; display: flex; flex-direction: column; border: 2px solid transparent; }
.job-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 60px rgba(78,169,158,0.15); border-color: var(--teal); }
.job-card__photo { height: 180px; background: linear-gradient(135deg, var(--teal-soft) 0%, var(--pink-soft) 100%); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--gray-light); }
.job-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.job-card__en { font-family: var(--sans-en); font-size: 11px; font-weight: 500; color: var(--pink); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.job-card__title { font-family: var(--round); font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.job-card__salary { font-family: var(--sans-en); font-size: 36px; font-weight: 700; color: var(--teal); margin-bottom: 14px; }
.job-card__salary small { font-size: 13px; font-weight: 500; color: var(--gray); }
.job-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.job-tag { background: var(--teal-soft); color: var(--teal); font-family: var(--round); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.job-card__link { margin-top: auto; font-family: var(--round); font-size: 14px; color: var(--teal); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.job-card:hover .job-card__link { gap: 12px; }

/* MID CTA */
.mid-cta { background: linear-gradient(135deg, var(--teal-soft), var(--pink-soft)); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 56px; }
.mid-cta__text { font-family: var(--round); font-size: 20px; font-weight: 700; color: var(--dark); }
.mid-cta__text small { display: block; font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--gray); margin-top: 6px; }
.mid-cta__btn { background: var(--teal); color: var(--white); padding: 14px 32px; border-radius: 24px; font-family: var(--round); font-size: 15px; font-weight: 700; white-space: nowrap; transition: transform 0.3s; box-shadow: 0 4px 16px rgba(78,169,158,0.3); }
.mid-cta__btn:hover { transform: translateY(-2px); }

/* ===== VOICE ===== */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.voice-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s; }
.voice-card:hover { transform: translateY(-4px); }
.voice-card__photo { height: 160px; background: linear-gradient(135deg, var(--teal-soft) 0%, var(--pink-soft) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.voice-card__photo--pink { background: linear-gradient(135deg, var(--pink-soft), #FFE0EC); }
.voice-card__photo--mint { background: linear-gradient(135deg, var(--teal-soft), var(--mint)); }
.voice-card__photo--yellow { background: linear-gradient(135deg, var(--yellow-soft), #FFE8B0); }
.voice-icon { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(0,0,0,0.12); position: relative; }
.voice-icon::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,0.6); }
.voice-icon--dh { background: linear-gradient(145deg, #F8A4BC, #E878A0); }
.voice-icon--dr { background: linear-gradient(145deg, #3BB5A5, #2A9D8F); }
.voice-icon--da { background: linear-gradient(145deg, #FFD06B, #F5B83D); }
.voice-icon--mama { background: linear-gradient(145deg, #A8DDD7, #7BBFB5); }
.voice-card__badge { position: absolute; top: 12px; right: 12px; background: var(--pink); color: var(--white); font-family: var(--round); font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.voice-card__body { padding: 24px; }
.voice-card__headline { font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.6; text-align: left; }
.voice-card__text { font-size: 13px; line-height: 2; color: var(--gray); margin-bottom: 20px; text-align: left; }
.voice-card__person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.voice-card__avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--gray-light); }
.voice-card__avatar--dh { background: linear-gradient(135deg, var(--pink-soft), #FFE0EC); }
.voice-card__avatar--dr { background: linear-gradient(135deg, var(--teal-soft), var(--mint)); }
.voice-card__avatar--da { background: linear-gradient(135deg, var(--yellow-soft), #FFE8B0); }
.voice-card__role { font-family: var(--sans-en); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.voice-card__role--dh { color: #2A9D8F; }
.voice-card__role--dr { color: #1B4965; }
.voice-card__role--da { color: #E76F8B; }
.voice-card__name { font-family: var(--round); font-size: 13px; font-weight: 700; color: var(--dark); margin-top: 1px; }
.voice-card__clinic { font-size: 11px; color: var(--gray-light); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 10px; margin-top: 48px; }
.gallery-item { border-radius: 10px; overflow: hidden; background: linear-gradient(135deg, var(--teal-soft) 0%, var(--pink-soft) 100%); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gray-light); transition: transform 0.4s; position: relative; cursor: pointer; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item__label { position: absolute; bottom: 10px; left: 10px; background: rgba(45,45,45,0.6); color: var(--white); padding: 3px 10px; border-radius: 8px; font-family: var(--round); font-size: 10px; font-weight: 500; backdrop-filter: blur(4px); }

/* ===== CLINICS ===== */
.clinic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.clinic-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.04); transition: transform 0.3s; }
.clinic-card:hover { transform: translateY(-4px); }
.clinic-card__photo { height: 120px; background: linear-gradient(135deg, var(--teal-soft) 0%, var(--pink-soft) 100%); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gray-light); }
.clinic-card__body { padding: 14px 16px; }
.clinic-card__badge { display: inline-block; background: var(--teal); color: var(--white); font-family: var(--round); font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 8px; margin-bottom: 6px; }
.clinic-card__name { font-family: var(--round); font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.5; }
.clinic-card__loc { font-size: 11px; color: var(--gray-light); display: flex; align-items: center; gap: 4px; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { background: var(--white); border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.03); overflow: hidden; }
.faq-q { display: flex; align-items: center; gap: 14px; padding: 20px 24px; cursor: pointer; font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--dark); width: 100%; background: none; border: none; text-align: left; line-height: 1.6; transition: color 0.3s; }
.faq-q:hover { color: var(--teal); }
.faq-q__icon { width: 30px; height: 30px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-family: var(--sans-en); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.faq-q__text { flex: 1; }
.faq-q__arrow { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--gray-light); }
.faq-item.active .faq-q__arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a__inner { padding: 0 24px 20px 68px; font-size: 14px; line-height: 2; color: var(--gray); text-align: left; }

/* ===== FLOW ===== */
.flow-row { display: flex; justify-content: center; gap: 0; margin-top: 48px; max-width: 820px; margin-left: auto; margin-right: auto; }
.flow-card { flex: 1; text-align: center; position: relative; padding: 0 12px; }
.flow-card:not(:last-child)::after { content: ''; position: absolute; top: 24px; right: -6px; width: 12px; height: 12px; border-top: 2px solid var(--pink); border-right: 2px solid var(--pink); transform: rotate(45deg); opacity: 0.5; }
.flow-card__num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--sans-en); font-size: 18px; font-weight: 700; margin: 0 auto 14px; box-shadow: 0 4px 12px rgba(78,169,158,0.25); }
.flow-card__title { font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.flow-card__desc { font-size: 12px; color: var(--gray); line-height: 1.7; }
.flow-card__note { font-family: var(--round); font-size: 11px; color: var(--pink); margin-top: 6px; font-weight: 700; }

/* ===== CTA ===== */
.cta { position: relative; padding: 80px 24px; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); text-align: center; overflow: hidden; }
.cta__deco1 { position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,214,102,0.12); }
.cta__deco2 { position: absolute; bottom: -80px; left: -60px; width: 350px; height: 350px; border-radius: 50%; background: rgba(228,160,172,0.1); }
.cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta__title { font-family: var(--round); font-size: clamp(22px, 4vw, 34px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.6; }
.cta__desc { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.9; }
.cta__buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--teal); padding: 16px 36px; border-radius: 24px; font-family: var(--round); font-size: 15px; font-weight: 700; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-line { display: inline-flex; align-items: center; gap: 8px; background: #06C755; color: var(--white); padding: 16px 36px; border-radius: 24px; font-family: var(--round); font-size: 15px; font-weight: 700; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 16px rgba(6,199,85,0.3); animation: pulse-glow 2s ease-in-out infinite; }
.btn-line:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(6,199,85,0.4); }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 4px 16px rgba(6,199,85,0.3); } 50% { box-shadow: 0 4px 24px rgba(6,199,85,0.5); } }
.btn-tel { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 14px 32px; border-radius: 24px; font-family: var(--round); font-size: 14px; font-weight: 700; border: 2px solid rgba(255,255,255,0.4); transition: border-color 0.3s, background 0.3s; }
.btn-tel:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.cta__phone { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.6); }
.cta__phone a { color: var(--white); font-family: var(--sans-en); font-weight: 700; font-size: 18px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 56px 24px 36px; }
.footer__inner { max-width: 1000px; margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand-name { font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer__brand-desc { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.35); }
.footer__links h4 { font-family: var(--sans-en); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__links a:hover { color: var(--teal-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-family: var(--sans-en); font-size: 11px; color: rgba(255,255,255,0.2); }
.footer__clinics { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__clinic { font-size: 10px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 5px; }
.footer__clinic::before { content: ''; width: 5px; height: 5px; background: var(--teal); border-radius: 50%; opacity: 0.5; }

/* ===== FIXED BAR ===== */
.fixed-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--white); border-top: 1px solid var(--gray-border); padding: 10px 16px; box-shadow: 0 -4px 16px rgba(0,0,0,0.08); }
.fixed-bar__inner { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.fixed-bar__btn { flex: 1; padding: 12px; border-radius: 24px; font-family: var(--round); font-size: 14px; font-weight: 700; text-align: center; }
.fixed-bar__btn--tel { background: var(--white); color: var(--dark); border: 1px solid var(--gray-border); }
.fixed-bar__btn--line { background: #06C755; color: var(--white); }
.fixed-bar__btn--apply { background: var(--pink); color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .num-grid { grid-template-columns: repeat(3, 1fr); }
  .clinic-grid { grid-template-columns: repeat(2, 1fr); }
  .bene-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .section { padding: 72px 20px; }
  .section--dark [style*="grid-template-columns: repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .divider { height: 60px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__photos { grid-template-columns: 1fr; }
  .hero__photo-slot:nth-child(2), .hero__photo-slot:nth-child(3) { display: none; }
  .photo-banner { grid-template-columns: 1fr 1fr; height: 160px; }
  .photo-banner--3col { grid-template-columns: 1fr; height: 200px; }
  .photo-banner__item:nth-child(3), .photo-banner__item:nth-child(4) { display: none; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat-num { font-size: 40px; }
  .hero__badges { gap: 6px; }
  .hero__badge { font-size: 11px; padding: 6px 14px; }
  .msg { grid-template-columns: 1fr; gap: 32px; }
  .msg__photo { width: 200px; height: 240px; margin: 0 auto; border-radius: 100px 100px 16px 16px; }
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .data-row { grid-template-columns: 1fr; }
  .appeal-item { grid-template-columns: 1fr; }
  .appeal-item__num { display: none; }
  .day-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; max-width: 360px; margin: 48px auto 0; }
  .voice-grid { grid-template-columns: 1fr; max-width: 360px; margin: 48px auto 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item--wide { grid-column: span 1; }
  .clinic-grid { grid-template-columns: 1fr 1fr; }
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-row { flex-direction: column; gap: 20px; align-items: center; }
  .flow-card::after { display: none !important; }
  .mid-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .fixed-bar { display: block; }
  body { padding-bottom: 64px; }
}
@media (max-width: 480px) {
  .num-grid { grid-template-columns: 1fr 1fr; }
  .clinic-grid { grid-template-columns: 1fr; }
  .bene-grid { grid-template-columns: 1fr 1fr; }
}
