/* ========================================
   CrossSkill LAB — Main Stylesheet
   ======================================== */

/* --- Design Tokens --- */
:root {
  --blue:        #2855C5;
  --blue-light:  #EEF2FC;
  --blue-mid:    #A8BFEF;
  --rose:        #E87878;
  --rose-light:  #FDF0F0;
  --rose-dark:   #C55A5A;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE3;
  --ink:         #1A1A2E;
  --ink-light:   #4A4A6A;
  --ink-muted:   #8888AA;
  --surface:     #F5F5F8;
  --white:       #FFFFFF;

  --header-height: 64px;
  --radius-card: 16px;
  --radius-pill: 9999px;
  --shadow-card: 0 2px 16px 0 rgba(27,46,107,0.06);
  --shadow-card-hover: 0 8px 32px 0 rgba(27,46,107,0.12);
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

.section--cream   { background: var(--cream); }
.section--surface { background: var(--surface); }
.section--navy    { background: var(--ink); }
.section--pink-light { background: #FDF5F8; }

/* --- Section Heading --- */
.section-heading { margin-bottom: 48px; }
.section-heading--center { text-align: center; }
.section-heading--left { text-align: left; }

.section-heading__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.section-heading--center .section-heading__eyebrow-wrap { justify-content: center; }

.section-heading__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.section-heading__divider {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--ink-muted);
  opacity: 0.3;
}

.section-heading__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.section-heading__sub {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* --- Button --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(40,85,197,0.25);
}
.btn--primary:hover { background: #1e44a8; }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 12px 28px;
  font-size: 0.9rem;
}
.btn--outline:hover { background: var(--blue-light); }

.btn--white {
  background: var(--white);
  color: var(--blue);
  padding: 16px 40px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(40,85,197,0.2);
}
.btn--white:hover { background: var(--blue-light); }

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 40px; font-size: 1rem; }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid #E8E8F0;
  transition: box-shadow 0.3s;
}
.header.scrolled { border-bottom-color: transparent; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .header__inner { padding: 0 40px; } }

.header__logo img { height: 40px; width: auto; }
.header__logo:hover { opacity: 0.85; }

.header__nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .header__nav { display: flex; } }

.header__nav a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  border-radius: var(--radius-pill);
  transition: color 0.15s;
}
.header__nav a:hover, .header__nav a.active { color: var(--blue); }

.header__cta { display: none; }
@media (min-width: 768px) { .header__cta { display: block; } }

.header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-light);
}
@media (min-width: 768px) { .header__hamburger { display: none; } }
.header__hamburger:hover { color: var(--blue); }

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid #E8E8F0;
}
.mobile-menu__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-light);
}
.mobile-menu__nav { padding: 24px; flex: 1; }
.mobile-menu__nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid #F0F0F5;
  color: var(--ink);
}
.mobile-menu__nav a:hover { color: var(--blue); }
.mobile-menu__footer { padding: 24px; }

/* Header spacer */
.header-spacer { height: var(--header-height); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: blur(6px);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,247,242,0.70);
}

.hero__scroll {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) { .hero__scroll { display: flex; } }
.hero__scroll-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 40px; background: rgba(136,136,170,0.3); }

.hero__inner {
  position: relative;
  z-index: 10;
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
  }
}

/* Photos */
.hero__photos {
  order: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 640px) { .hero__photos { gap: 16px; } }
@media (min-width: 1024px) {
  .hero__photos { order: 2; justify-content: flex-end; }
}

.hero__photo {
  flex: 1;
  max-width: 180px;
}
@media (min-width: 640px) { .hero__photo { max-width: 220px; } }
@media (min-width: 1024px) { .hero__photo { max-width: 240px; } }

.hero__photo--offset { margin-top: 40px; }
@media (min-width: 640px) { .hero__photo--offset { margin-top: 56px; } }
@media (min-width: 1024px) { .hero__photo--offset { margin-top: 64px; max-width: 220px; } }

.hero__photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hero__photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Text */
.hero__text {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .hero__text { order: 1; } }

.hero__eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) { .hero__eyebrow { font-size: 1rem; } }

.hero__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero__copy {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 440px;
}

/* ========================================
   PROBLEMS / ABOUT SECTION
   ======================================== */
.problems__image-banner {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-card);
  margin-bottom: 48px;
}
@media (min-width: 768px) { .problems__image-banner { height: 320px; } }
.problems__image-banner img { width: 100%; height: 100%; object-fit: cover; }

.insight-block {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .insight-block { padding: 40px; } }

.insight-block__step-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.insight-block__step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.insight-block__headline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
}
.insight-block__headline--blue { color: var(--blue); }
.insight-block__headline--rose { color: var(--rose-dark); }

.insight-block__accent {
  width: 3px;
  height: 24px;
  border-radius: 2px;
  flex-shrink: 0;
}
.insight-block__accent--blue { background: var(--blue); }
.insight-block__accent--rose { background: var(--rose); }

.insight-block__body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) { .insight-block__body-grid { grid-template-columns: 1fr 1fr; } }

.insight-block__body {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.9;
}
.insight-block__note {
  font-size: 0.72rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-top: 12px;
}

.stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-pill {
  background: var(--blue-light);
  border-radius: 12px;
  padding: 16px 20px;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.stat-pill--rose { background: var(--rose-light); }

.stat-pill__value {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.stat-pill--rose .stat-pill__value { color: var(--rose); }
.stat-pill__unit { font-size: 1rem; font-weight: 700; }
.stat-pill__desc {
  font-size: 0.75rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin-top: 6px;
  white-space: pre-line;
}

/* Stacked layout (STEP 04) */
.insight-block__stacked .stats-row { justify-content: center; }
.insight-block__stacked .stat-pill { background: var(--blue-light); min-width: 140px; max-width: 200px; }
.insight-block__stacked .stat-pill__value { font-size: 1.2rem; font-weight: 700; color: var(--blue); }

/* ========================================
   SERVICE SECTION
   ======================================== */
.service-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.service-card__inner { padding: 32px; }
@media (min-width: 768px) { .service-card__inner { padding: 40px; } }

.service-card__name {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.service-card__tagline {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 560px;
}

/* Feature highlight row (おやはぐ) */
.feature-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(238,242,252,0.6);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
  max-width: 440px;
  flex-wrap: wrap;
}
.feature-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.feature-icon__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.feature-icon__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}
.feature-icon__label--rose { color: var(--rose-dark); }
.feature-sep { font-weight: 700; color: var(--blue); font-size: 1rem; }
.feature-arrow { color: var(--blue); font-size: 0.9rem; font-weight: 700; }

/* ========================================
   WHY CHOSEN / VOICES SECTION
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.stat-card__value {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.stat-card__label {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 8px;
  line-height: 1.5;
}
.stat-card__note {
  font-size: 0.68rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}
.testimonial-card__badge--blue { background: var(--blue-light); color: var(--blue); }
.testimonial-card__badge--rose { background: var(--rose-light); color: var(--rose-dark); }

.testimonial-card__quote {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.9;
  flex: 1;
}
.testimonial-card__quote::before { content: "\201C"; color: var(--ink-muted); }
.testimonial-card__quote::after  { content: "\201D"; color: var(--ink-muted); }

.testimonial-card__attribution {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ========================================
   CASE STUDIES SECTION
   ======================================== */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .logos-grid { grid-template-columns: repeat(4, 1fr); } }

.logo-card {
  background: var(--white);
  border-radius: 12px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.logo-card__placeholder {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.case-blockquote {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.case-blockquote__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-blockquote__text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
  max-width: 640px;
}
.case-blockquote__text::before { content: "\201C"; color: var(--blue); }
.case-blockquote__text::after  { content: "\201D"; color: var(--blue); }
.case-blockquote__attribution {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 80px 0;
}
@media (min-width: 768px) { .cta-section { padding: 112px 0; } }

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.75);
}
.cta-section__bokeh-1 {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: rgba(40,85,197,0.15);
  filter: blur(80px);
}
.cta-section__bokeh-2 {
  position: absolute;
  bottom: -10%; left: -5%;
  width: 50vw; height: 40vw;
  border-radius: 50%;
  background: rgba(232,120,120,0.1);
  filter: blur(80px);
}

.cta-section__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-section__headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}
.cta-section__sub {
  font-size: 1rem;
  color: rgba(168,191,239,0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__trust {
  font-size: 0.75rem;
  color: rgba(168,191,239,0.5);
  margin-top: 32px;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #EEEEF5;
  text-decoration: none;
  transition: opacity 0.15s;
}
.news-item:hover { opacity: 0.7; }
.news-item__date {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-top: 2px;
}
.news-item__badge {
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-item__badge--press  { background: var(--blue-light); color: var(--blue); }
.news-item__badge--media  { background: var(--rose-light); color: var(--rose-dark); }
.news-item__badge--event  { background: var(--surface); color: var(--ink-light); }
.news-item__badge--notice { background: var(--cream-dark); color: var(--ink-muted); }

.news-item__title {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}
.news-item__arrow {
  color: var(--ink-muted);
  flex-shrink: 0;
  padding-top: 2px;
}
.news-see-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { height: 36px; width: auto; }
.footer__logo-name { font-size: 1rem; font-weight: 700; }
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }

.footer__col-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); padding: 6px 0; transition: color 0.15s; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer__legal a:hover { color: var(--white); }

/* ========================================
   PAGE HERO (subpages)
   ======================================== */
.page-hero {
  background: var(--ink);
  padding: 64px 24px;
  text-align: center;
}
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,120,120,0.8);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-label .required {
  color: var(--rose);
  margin-left: 4px;
  font-size: 0.75rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D8D8E8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--blue-light);
  border-radius: var(--radius-card);
}
.form-success.show { display: block; }
.form-success__icon { font-size: 3rem; margin-bottom: 16px; }
.form-success__title { font-size: 1.2rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.form-success__text { font-size: 0.9rem; color: var(--ink-light); }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-photo-banner {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
@media (min-width: 768px) { .about-photo-banner { height: 360px; } }
.about-photo-banner img { width: 100%; height: 100%; object-fit: cover; }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) { .mission-grid { grid-template-columns: 1fr 1fr; } }

.mission-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.mission-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.mission-card__tag--vision { color: rgba(40,85,197,0.5); }
.mission-card__body { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.6; }

.company-table {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.company-table table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #F0F0F5;
  font-size: 0.875rem;
  text-align: left;
  vertical-align: top;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 33%;
  font-weight: 700;
  color: rgba(40,85,197,0.6);
  background: #F8F8FC;
  white-space: nowrap;
}
.company-table td { color: var(--ink); line-height: 1.6; }

/* ========================================
   UTILITY
   ======================================== */
.text-blue { color: var(--blue); }
.text-rose { color: var(--rose); }
.text-muted { color: var(--ink-muted); }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
