/* ========================================
   関ヤンマーサービス — Corporate Website
   ======================================== */

:root {
  --color-green: #2E7D32;
  --color-green-light: #4CAF50;
  --color-green-dark: #1B5E20;
  --color-blue: #1565C0;
  --color-blue-dark: #0D47A1;
  --color-orange: #C4762A;
  --color-orange-light: #E8954A;
  --color-grey: #333333;
  --color-grey-light: #666666;
  --color-grey-muted: #999999;
  --color-bg: #FAFAFA;
  --color-white: #FFFFFF;
  --color-border: #E0E0E0;

  --font-main: 'Noto Sans JP', sans-serif;
  --header-height: 80px;
  --container-width: 1100px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-grey);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* Motto colors */
.motto--safety { color: var(--color-green); }
.motto--integrity { color: var(--color-blue-dark); }
.motto--compassion { color: var(--color-orange); }

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.header__logo img {
  height: 56px;
  width: auto;
}

.header__nav ul {
  display: flex;
  gap: 32px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-grey);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition: width var(--transition);
}

.header__nav a:hover {
  color: var(--color-green);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__nav a.is-current {
  color: var(--color-green);
  font-weight: 700;
}

.header__nav a.is-current::after {
  width: 100%;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-grey);
  transition: transform var(--transition), opacity var(--transition);
}

.header__menu-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 125, 50, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(21, 101, 192, 0.06) 0%, transparent 50%),
    linear-gradient(to bottom, var(--color-bg) 0%, var(--color-white) 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 0%, transparent 70%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.08) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 40px 24px;
  animation: fadeUp 1s ease forwards;
}

.hero__company {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-grey-light);
  margin-bottom: 12px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-grey);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero__motto {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.motto__dot {
  color: var(--color-grey-muted);
  font-weight: 400;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-green-dark);
  margin-bottom: 40px;
}

.hero__cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero__cta:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-grey-muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-green), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   Sections — Common
   ======================================== */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header--light .section__title {
  color: var(--color-white);
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}

.section__label--light {
  color: rgba(255, 255, 255, 0.7);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--color-grey);
  letter-spacing: 0.05em;
}

/* ========================================
   Philosophy
   ======================================== */
.philosophy {
  background: var(--color-white);
}

.philosophy__content {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy__quote {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-green-dark);
  text-align: center;
  border: none;
  padding: 0;
  margin-bottom: 48px;
  position: relative;
}

.philosophy__quote::before,
.philosophy__quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), var(--color-blue));
  margin: 0 auto 24px;
}

.philosophy__quote::after {
  margin: 24px auto 0;
}

.philosophy__text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 2;
}

.philosophy__closing {
  font-weight: 700;
  color: var(--color-green-dark);
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

/* ========================================
   Guidelines
   ======================================== */
.guidelines {
  background: linear-gradient(160deg, var(--color-green-dark) 0%, #1a3a2a 100%);
  position: relative;
}

.guidelines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.guidelines .container {
  position: relative;
}

.guidelines__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guideline-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.guideline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guideline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.guideline-card--safety::before { background: var(--color-green); }
.guideline-card--integrity::before { background: var(--color-blue); }
.guideline-card--compassion::before { background: var(--color-orange); }
.guideline-card--growth::before { background: linear-gradient(90deg, var(--color-green), var(--color-blue)); }

.guideline-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.guideline-card--safety .guideline-card__icon { color: var(--color-green); }
.guideline-card--integrity .guideline-card__icon { color: var(--color-blue); }
.guideline-card--compassion .guideline-card__icon { color: var(--color-orange); }
.guideline-card--growth .guideline-card__icon { color: var(--color-green-dark); }

.guideline-card__title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.guideline-card--safety .guideline-card__title { color: var(--color-green); }
.guideline-card--integrity .guideline-card__title { color: var(--color-blue-dark); }
.guideline-card--compassion .guideline-card__title { color: var(--color-orange); }
.guideline-card--growth .guideline-card__title { color: var(--color-green-dark); }

.guideline-card__lead {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 15px;
}

.guideline-card__list {
  margin-bottom: 16px;
}

.guideline-card__list li {
  padding-left: 16px;
  position: relative;
  font-size: 15px;
  margin-bottom: 4px;
}

.guideline-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-grey-muted);
}

.guideline-card__footer {
  font-size: 14px;
  color: var(--color-grey-light);
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

/* ========================================
   Promise
   ======================================== */
.promise {
  background: var(--color-bg);
}

.promise__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.promise__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-grey);
  margin-bottom: 40px;
}

.promise__text p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 2.2;
  margin-bottom: 8px;
}

.promise__word {
  font-size: 1.2em;
}

.promise__word--safety { color: var(--color-green); }
.promise__word--integrity { color: var(--color-blue-dark); }
.promise__word--compassion { color: var(--color-orange); }

/* ========================================
   Pledge (Morning Chant)
   ======================================== */
.pledge {
  background: linear-gradient(135deg, var(--color-grey) 0%, #1a1a1a 100%);
  padding: 80px 0;
}

.pledge__inner {
  text-align: center;
}

.pledge__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 48px;
}

.pledge__chants {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pledge__chant {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.pledge__chant--safety { color: var(--color-green-light); }
.pledge__chant--integrity { color: #64B5F6; }
.pledge__chant--compassion { color: var(--color-orange-light); }
.pledge__chant--today {
  color: var(--color-white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-top: 16px;
  font-weight: 700;
}

/* ========================================
   Founder
   ======================================== */
.founder {
  background: var(--color-white);
}

.founder__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.founder__header {
  margin-bottom: 40px;
}

.founder__quote {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--color-green-dark);
  border: none;
  padding: 0;
  margin-bottom: 24px;
  position: relative;
}

.founder__quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: rgba(46, 125, 50, 0.15);
  line-height: 1;
}

.founder__intro {
  font-size: 15px;
  color: var(--color-grey-light);
  margin-bottom: 40px;
}

.founder__text {
  text-align: left;
  margin-bottom: 40px;
}

.founder__text p {
  margin-bottom: 8px;
  line-height: 2;
}

.founder__closing {
  font-weight: 700;
  color: var(--color-green-dark);
  line-height: 2.2;
  padding: 32px;
  background: var(--color-bg);
  border-radius: 12px;
  border-left: 4px solid var(--color-green);
}

/* ========================================
   Service
   ======================================== */
.service {
  background: var(--color-bg);
}

.service__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service__heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-green-dark);
  margin-bottom: 20px;
}

.service__main p {
  margin-bottom: 28px;
  line-height: 2;
}

.service__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.service__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 4px;
}

.service__visual {
  display: flex;
  justify-content: center;
}

.service__icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.service__icon-item {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition);
}

.service__icon-item:hover {
  transform: translateY(-4px);
}

.service__icon-item svg {
  width: 48px;
  height: 48px;
  color: var(--color-green);
  margin: 0 auto 12px;
}

.service__icon-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-grey);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.btn--primary:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn--outline:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.btn--block {
  display: block;
  width: 100%;
}

/* ========================================
   Company Overview
   ======================================== */
.about {
  background: var(--color-white);
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
}

.about__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.about__table th,
.about__table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.about__table th {
  width: 28%;
  font-weight: 700;
  color: var(--color-green-dark);
  background: var(--color-bg);
}

.about__table td a {
  color: var(--color-green);
  font-weight: 700;
}

.about__table td a:hover {
  text-decoration: underline;
}

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

/* ========================================
   Access Map
   ======================================== */
.access {
  background: var(--color-bg);
}

.access__content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.access__address {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.8;
}

.access__tel {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.access__tel a {
  color: var(--color-green);
}

.access__note {
  font-size: 14px;
  color: var(--color-grey-light);
  margin-bottom: 24px;
}

.access__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: var(--color-border);
  min-height: 360px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
}

/* ========================================
   Page Hero (sub pages)
   ======================================== */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, rgba(30, 125, 50, 0.08) 0%, var(--color-bg) 100%);
  text-align: center;
}

.page-hero--recruit {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.06) 0%, rgba(30, 125, 50, 0.08) 100%);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--color-grey);
  margin-bottom: 16px;
}

.page-hero__lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-grey-light);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info__title,
.contact-form__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-green-dark);
  margin-bottom: 20px;
}

.contact-info__tel {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-info__tel a {
  color: var(--color-green);
}

.contact-info__note {
  font-size: 14px;
  color: var(--color-grey-light);
  margin-bottom: 28px;
}

.contact-info__box {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--color-green);
  line-height: 1.9;
}

.contact-info__box p + p {
  margin-top: 12px;
}

.contact-form-wrap {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 36px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.required {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  background: #C62828;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.form-group input.is-error,
.form-group textarea.is-error {
  border-color: #C62828;
}

.form-error {
  font-size: 13px;
  color: #C62828;
  margin-top: 6px;
  min-height: 20px;
}

.form-group--checkbox {
  margin-top: 8px;
}

.form-group--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error--global {
  margin-top: 16px;
  padding: 12px 16px;
  background: #FFEBEE;
  border-radius: 8px;
  text-align: center;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-top: 5px;
}

.contact-success {
  text-align: center;
  padding: 40px 20px;
}

.contact-success__icon {
  width: 64px;
  height: 64px;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.contact-success h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.contact-success p {
  color: var(--color-grey-light);
  margin-bottom: 24px;
}

/* ========================================
   Recruit Page
   ======================================== */
.recruit-message {
  background: var(--color-white);
}

.recruit-message__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.recruit-message__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-green-dark);
  margin-bottom: 24px;
}

.recruit-message__inner p {
  margin-bottom: 16px;
  line-height: 2;
}

.recruit-message__quote {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-green-dark);
  margin: 32px 0 !important;
}

.recruit-jobs {
  background: var(--color-bg);
}

.job-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.job-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: linear-gradient(90deg, var(--color-green-dark), var(--color-green));
  color: var(--color-white);
}

.job-card__title {
  font-size: 1.25rem;
  font-weight: 900;
}

.job-card__badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

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

.job-card__table th,
.job-card__table td {
  padding: 18px 32px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.job-card__table th {
  width: 22%;
  font-weight: 700;
  color: var(--color-green-dark);
  background: var(--color-bg);
}

.job-card__table ul {
  list-style: disc;
  padding-left: 20px;
}

.job-card__table li {
  margin-bottom: 4px;
}

.recruit-benefits {
  background: var(--color-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-bg);
  border-radius: 16px;
}

.benefit-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--color-grey-light);
  line-height: 1.8;
}

.recruit-apply {
  background: linear-gradient(160deg, var(--color-green-dark) 0%, #1a3a2a 100%);
}

.recruit-apply__inner {
  text-align: center;
  color: var(--color-white);
  max-width: 640px;
  margin: 0 auto;
}

.recruit-apply__title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.recruit-apply__inner p {
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 2;
}

.recruit-apply__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.recruit-apply .btn--outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.recruit-apply .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-green-dark);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-grey);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 12px;
}

.footer__brand img {
  height: 50px;
  width: auto;
  background: var(--color-white);
  padding: 8px 12px;
  border-radius: 8px;
}

.footer__motto {
  font-size: 14px;
  font-weight: 700;
}

.footer__links-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

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

.footer__links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__company {
  font-size: 13px;
  margin-bottom: 4px;
}

.footer__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer__contact {
  font-size: 13px;
  margin-bottom: 4px;
}

.footer__contact a {
  color: var(--color-white);
  font-weight: 700;
}

.footer__contact a:hover {
  text-decoration: underline;
}

.footer__copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Scroll animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
  .guidelines__grid {
    grid-template-columns: 1fr;
  }

  .service__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service__visual {
    order: -1;
  }

  .access__content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__brand img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .header__menu-btn {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header__nav li {
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav li:last-child {
    border-bottom: none;
  }

  .header__nav a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .about__table th,
  .about__table td,
  .job-card__table th,
  .job-card__table td {
    display: block;
    width: 100%;
  }

  .about__table th,
  .job-card__table th {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .job-card__header {
    padding: 20px 24px;
  }

  .job-card__table th,
  .job-card__table td {
    padding: 16px 24px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .service__icon-grid {
    grid-template-columns: 1fr;
    max-width: 200px;
    margin: 0 auto;
  }

  .hero__motto {
    flex-direction: column;
    gap: 8px;
  }

  .motto__dot {
    display: none;
  }
}
