/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --primary:       #191970;
  --primary-light: #2828a8;
  --accent:        #d4891a;
  --accent-light:  #e8a030;
  --bg:            #ffffff;
  --bg-alt:        #f7f8fa;
  --bg-dark:       #10103c;
  --text:          #2c2c2c;
  --text-muted:    #666666;
  --border:        #e0e0e0;
  --radius:        6px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow:        0 4px 20px rgba(0,0,0,0.10);
  --transition:    0.25s ease;
  --container:     1140px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   Container
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d8d8ef;
  height: 70px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.site-nav a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.site-nav a.active {
  color: var(--accent);
  font-weight: 700;
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(212, 137, 26, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 0% 60%, rgba(60, 60, 200, 0.25) 0%, transparent 50%),
    var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 230, 160, 0.08) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 32px
    );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.045) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
}

.hero-label {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.9;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollDown 1.5s ease-in-out infinite;
}

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

/* Hero Gold Accent Line */
.hero-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(212, 137, 26, 0.6) 30%,
    rgba(232, 160, 48, 0.9) 50%,
    rgba(212, 137, 26, 0.6) 70%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* Hero Bottom Fade */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  z-index: 2;
  pointer-events: none;
}

/* Hero Watermark */
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-size: clamp(220px, 46vw, 640px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.00) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,137,26,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===========================
   Section Commons
   =========================== */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--primary);
  color: white;
}

.section-header {
  margin-bottom: 56px;
  text-align: center;
}

.section-header.left {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.section-title.white { color: white; }

.section-lead {
  margin-top: 16px;
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 600px;
}

.section-lead.center { margin: 16px auto 0; }
.section-lead.white { color: rgba(255,255,255,0.75); }

.divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0;
}

.divider.center { margin: 16px auto; }

/* ===========================
   Home: About Block
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-graphic {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.about-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-graphic:hover img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: white;
  padding: 20px 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.about-badge span {
  font-size: 12px;
  opacity: 0.85;
}

.about-content h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.about-feature-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

/* ===========================
   Services Grid (Home)
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.values-grid .service-card {
  text-align: center;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(25,25,112,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  filter: grayscale(100%) brightness(0) invert(12%) sepia(77%) saturate(1234%) hue-rotate(218deg) brightness(87%);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.service-card .card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.service-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ===========================
   Services Page (Detail)
   =========================== */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  font-family: 'Georgia', serif;
}

.service-detail-body {}

.service-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.service-detail-body h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
}

.service-detail-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 720px;
}

/* ===========================
   Recruitment Cards
   =========================== */
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.recruit-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.recruit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.recruit-card-header {
  background: var(--primary);
  padding: 28px 32px;
  color: white;
}

.recruit-card-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.recruit-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}

.recruit-card-body {
  padding: 32px;
}

.recruit-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.highlight-badge {
  background: rgba(212,137,26,0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.recruit-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.recruit-spec {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  font-size: 14px;
}

.recruit-spec dt {
  color: var(--text-muted);
  font-weight: 500;
}

.recruit-spec dd {
  color: var(--text);
  font-weight: 600;
}

/* ===========================
   Recruit Detail Page
   =========================== */
.job-detail {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 48px;
}

.job-header {
  background: var(--primary);
  padding: 40px 48px;
  color: white;
}

.job-header .badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.badge-accent { background: var(--accent); color: white; }
.badge-outline { border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }

.job-header h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  line-height: 1.4;
}

.job-body {
  padding: 48px;
}

.job-section {
  margin-bottom: 40px;
}

.job-section:last-child {
  margin-bottom: 0;
}

.job-section h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-alt);
}

.job-section p,
.job-section li {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

.job-section ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-section ul li::before {
  content: '◆ ';
  color: var(--accent);
  font-size: 10px;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
}

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

.job-table tr:last-child { border-bottom: none; }

.job-table th {
  width: 140px;
  padding: 14px 16px;
  background: var(--bg-alt);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  vertical-align: top;
}

.job-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
}

.salary-highlight {
  background: rgba(212,137,26,0.08);
  border: 1px solid rgba(212,137,26,0.2);
  border-radius: 8px;
  padding: 24px;
  margin: 16px 0;
}

.salary-highlight .big {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.salary-highlight .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.income-model {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 20px;
  margin-top: 12px;
}

.income-model h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.income-model .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.income-model .row:last-child { border-bottom: none; }

.income-model .row strong {
  color: var(--accent);
  font-weight: 700;
}

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 24px
  );
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-size: 15px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   Company Page
   =========================== */
.company-info {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.company-card {
  background: var(--primary);
  border-radius: 10px;
  padding: 40px;
  color: white;
}

.company-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.company-card p {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

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

.company-table th {
  width: 140px;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  vertical-align: top;
}

.company-table td {
  padding: 18px 0;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
}

/* ===========================
   Contact Section
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-box {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 40px;
}

.contact-info-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.contact-form-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
}

.contact-form-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group label .req {
  color: #e53e3e;
  margin-left: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,137,26,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ===========================
   Page Hero (inner pages)
   =========================== */
.page-hero {
  margin-top: 70px;
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 24px
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.3;
}

.page-hero p {
  margin-top: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  max-width: 560px;
}

.breadcrumb {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: white; }
.breadcrumb span { opacity: 0.4; }

/* ===========================
   News / Stats Strip
   =========================== */
.stats-strip {
  background: var(--accent);
  padding: 0;
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  color: white;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}

/* ===========================
   Points Section (Recruit)
   =========================== */
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.point-card {
  background: white;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.point-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: white;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 16px;
}

.point-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.point-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  background: var(--accent);
}

.footer-logo .logo-text {
  color: white;
}

.footer-about p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .recruit-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-badge { right: 0; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .company-info { grid-template-columns: 1fr; }
  .points-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .points-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero { justify-content: center; }
  .hero-content { text-align: center; max-width: 100%; padding: 0 8px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-desc { margin-left: auto; margin-right: auto; font-size: 14px; }
  .hero-label { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; max-width: 280px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-num { font-size: 32px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .job-header, .job-body { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
}

/* Mobile Nav Open State */
.nav-open .site-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  gap: 4px;
  box-shadow: var(--shadow);
}

/* ===========================
   Service Card Images
   =========================== */
.service-card-img {
  margin: -32px -28px 20px;
  height: 160px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

/* Service Detail Photo (services page) */
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

.service-detail-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .service-detail-inner {
    grid-template-columns: 1fr;
  }
  .service-detail-photo {
    height: 180px;
    order: -1;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
