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

:root {
  --color-bg: #f8f9fb;
  --color-dark: #0d1b2a;
  --color-dark2: #162032;
  --color-accent: #00b4d8;
  --color-accent2: #0096c7;
  --color-text: #1a2535;
  --color-text-sub: #5a6a80;
  --color-border: #e2e8f0;
  --font: 'Noto Sans JP', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85em 2em;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,180,216,0.35);
}
.btn--primary:hover { background: var(--color-accent2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,0.45); }

.btn--outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }

.btn--lg { padding: 1em 2.5em; font-size: 1.05rem; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: all 0.3s;
}

.nav--scrolled {
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }

.nav__cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 0.5em 1.25em;
  border-radius: 99px;
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--color-accent2) !important; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,180,216,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,150,199,0.08) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

.hero__label {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__title--accent {
  color: var(--color-accent);
}

.hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== Stats ===== */
.stats {
  background: var(--color-dark2);
  padding: 3rem 2rem;
}

.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  display: inline-block;
}

.stats__unit {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-left: 0.1em;
}

.stats__num + .stats__unit { display: inline; }

.stats__label {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

/* ===== Section Common ===== */
.section { padding: 6rem 2rem; }
.section--dark { background: var(--color-dark); }
.section--alt { background: #eef2f7; }

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

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

.section__head--light .section__label,
.section__head--light .section__title { color: #fff; }

.section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ===== Features ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2rem 2rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.feature-card__num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.12;
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 1.75;
}

/* ===== Services ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.2s;
  text-align: center;
}
.service-card:hover {
  background: rgba(0,180,216,0.1);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px; height: 48px;
  color: var(--color-accent);
  margin: 0 auto 1.25rem;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ===== Flow ===== */
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2.5rem;
}

.flow-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 2.25rem;
  top: 4rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
}

.flow-step__num {
  flex-shrink: 0;
  width: 4.5rem; height: 4.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(0,180,216,0.3);
}

.flow-step__body {
  padding-top: 0.75rem;
}

.flow-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.flow-step__desc {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 1.75;
}

/* ===== Company Table ===== */
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--color-border);
}

.company-table th,
.company-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
}

.company-table th {
  width: 180px;
  color: var(--color-text-sub);
  font-weight: 500;
  background: rgba(0,0,0,0.03);
}

.company-table td {
  color: var(--color-text);
}

/* ===== CTA / Contact ===== */
.section--cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, #0a2540 100%);
  text-align: center;
  padding: 7rem 2rem;
}

.cta__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.cta__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta__tel {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.cta__tel a {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== Footer ===== */
.footer {
  background: #07111c;
  padding: 2.5rem 2rem;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer__logo {
  color: #fff;
  font-weight: 700;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__nav a:hover { color: #fff; }

.footer__copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ===== Nav Active ===== */
.nav__active { color: var(--color-accent) !important; }

/* ===== Page Hero ===== */
.page-hero {
  background: var(--color-dark);
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,180,216,0.1) 0%, transparent 60%);
}
.page-hero--sm { padding: 8rem 2rem 4rem; }
.page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.page-hero__label {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-hero__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.page-hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== News (index) ===== */
.news__list { list-style: none; padding: 0; }
.news-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
  flex-wrap: wrap;
}
.news-item a:hover { color: var(--color-accent); }
.news-item__date { font-size: 0.85rem; color: var(--color-text-sub); white-space: nowrap; }
.news-item__cat {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--color-accent);
  color: #fff;
  padding: 0.15em 0.75em;
  border-radius: 99px;
  white-space: nowrap;
}
.news-item__title { font-size: 0.95rem; }
.news__more { text-align: center; margin-top: 2rem; }
.btn--ghost {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}
.btn--ghost:hover { background: var(--color-accent); color: #fff; }

/* ===== Service Detail ===== */
.service-detail { padding: 5rem 2rem; }
.service-detail--alt { background: #eef2f7; }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.service-detail__inner--rev { }
.service-detail__num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-detail__title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.service-detail__lead {
  color: var(--color-text-sub);
  font-size: 0.95rem;
  line-height: 1.75;
}
.service-detail__body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.service-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.service-detail__tags span {
  font-size: 0.8rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.25em 0.85em;
  border-radius: 99px;
}

/* ===== Philosophy ===== */
.philosophy__catch {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--color-text);
}
.philosophy__text p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  color: var(--color-text-sub);
}
.philosophy__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-item {
  border-top: 3px solid var(--color-accent);
  padding-top: 1rem;
}
.value-item h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.value-item p { font-size: 0.88rem; color: var(--color-text-sub); line-height: 1.7; }

/* ===== History ===== */
.history__list { max-width: 700px; margin: 0 auto; }
.history-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--color-accent);
  margin-left: 40px;
  padding-left: 2rem;
  position: relative;
}
.history-item::before {
  content: '';
  width: 12px; height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: -7px; top: 4px;
}
.history-item__year {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  padding-top: 0.2rem;
}
.history-item__month { font-size: 0.8rem; color: var(--color-text-sub); margin-bottom: 0.25rem; }
.history-item__text { font-size: 0.92rem; line-height: 1.75; color: var(--color-text); }

/* ===== Facilities ===== */
.facilities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.facility-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s;
}
.facility-card:hover { transform: translateY(-3px); }
.facility-card__icon {
  width: 44px; height: 44px;
  color: var(--color-accent);
}
.facility-card__title { font-size: 1rem; font-weight: 700; }
.facility-card__desc { font-size: 0.88rem; color: var(--color-text-sub); line-height: 1.75; }

/* ===== Recruit ===== */
.recruit-message {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.recruit-message__text p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  color: var(--color-text);
}
.recruit-message__sign {
  font-weight: 700;
  font-size: 0.9rem !important;
  color: var(--color-text-sub) !important;
  margin-top: 1.5rem;
  text-align: right;
}
.env__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.env-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.env-card__num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.1;
  position: absolute;
  top: 0.5rem; right: 1rem;
  line-height: 1;
}
.env-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.env-card__desc { font-size: 0.88rem; color: var(--color-text-sub); line-height: 1.75; }

.job-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
}
.job-card__head {
  background: var(--color-dark);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.job-card__type {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-accent);
  color: #fff;
  padding: 0.25em 0.85em;
  border-radius: 99px;
  white-space: nowrap;
}
.job-card__type--part { background: #64748b; }
.job-card__title { color: #fff; font-size: 1.05rem; font-weight: 700; }
.job-table { width: 100%; border-collapse: collapse; }
.job-table tr { border-bottom: 1px solid var(--color-border); }
.job-table th, .job-table td { padding: 1rem 1.5rem; font-size: 0.9rem; text-align: left; }
.job-table th { width: 140px; color: var(--color-text-sub); font-weight: 500; background: rgba(0,0,0,0.02); }

.apply__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.apply-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
}
.apply-step__num {
  width: 3.5rem; height: 3.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 12px rgba(0,180,216,0.3);
}
.apply-step__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.apply-step__desc { font-size: 0.82rem; color: var(--color-text-sub); line-height: 1.65; }
.apply-step__arrow { font-size: 1.5rem; color: var(--color-accent); padding-top: 1rem; }

/* ===== News Full ===== */
.container--narrow { max-width: 800px; }
.news-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.news-filter__btn {
  padding: 0.4em 1.1em;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.news-filter__btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.news-filter__btn--active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

.news-full__list { list-style: none; padding: 0; }
.news-full__item { border-bottom: 1px solid var(--color-border); padding: 2rem 0; }
.news-full__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.news-full__date { font-size: 0.85rem; color: var(--color-text-sub); }
.news-full__cat {
  font-size: 0.72rem; font-weight: 700;
  padding: 0.15em 0.75em; border-radius: 99px; color: #fff;
}
.news-full__cat--press { background: var(--color-accent); }
.news-full__cat--recruit { background: #7c3aed; }
.news-full__cat--info { background: #64748b; }
.news-full__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }
.news-full__body { font-size: 0.9rem; color: var(--color-text-sub); line-height: 1.8; }
.news-full__body a { color: var(--color-accent); text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .service-detail__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .philosophy__values { grid-template-columns: 1fr; }
  .facilities__grid { grid-template-columns: 1fr; }
  .env__grid { grid-template-columns: 1fr; }
}

/* ===== Hamburger ===== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 149;
}
.nav__overlay.is-open { display: block; }

.nav__drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 75%;
  max-width: 300px;
  background: #0d1b2a;
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav__drawer a:hover { color: var(--color-accent); }
.nav__drawer .nav__cta {
  margin-top: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 0.75em 1.5em;
  border-radius: 99px;
  border: none;
}

@media (max-width: 640px) {
  .nav__hamburger { display: flex; }
  .nav__links { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .company-table th { width: 110px; }
  .apply__steps { flex-direction: column; align-items: center; }
  .apply-step__arrow { transform: rotate(90deg); padding: 0; }
  .history-item { grid-template-columns: 60px 1fr; gap: 1rem; }
}
