/**
 * Nexlife Inc. コーポレートサイト — スタイルシート
 *
 * 構成: デザイントークン → ベース → セクション別 → レスポンシブ（1199px / 767px）
 */

/* ===== CSS VARIABLES ===== */
:root {
  --color-primary: #14a2b1;
  --color-secondary: #10426e;
  --color-tertiary: #937770;
  --color-tertiary-light: #e9e4e2;
  --color-bg: #f7f7f7;
  --color-white: #ffffff;
  --color-text: #1f1f1f;
  --color-text-muted: #9eacb7;
  /* DNP 秀英角ゴシック金 Std — 見出し・強調テキスト */
  --font-kin: 'dnp-shuei-gothic-kin-std','Montserrat',  'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  /* DNP 秀英角ゴシック銀 Std — 本文テキスト */
  --font-gin: 'dnp-shuei-gothic-gin-std', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-heading: var(--font-kin);
  --font-body: var(--font-gin);
  --font-number: 'Barlow', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION HEADING ===== */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 64px;
  padding-bottom: 16px;
}
.section-heading__en {
  font-family: Montserrat;
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 32px;
  line-height: 1.53;
  color: var(--color-text);
}
.section-heading__jp {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text);
}
.section-heading__bar {
  margin-top: 16px;
  width: 40px;
  height: 14px;
  border-radius: 999px;
}
.bar--primary {
  background: var(--color-primary);
}

.bar--secondary {
  background: var(--color-secondary);
}

.bar--tertiary {
  background: var(--color-tertiary);
}

/* HTML からインライン style を避けるための補助クラス */
.lead-card__body p + p {
  margin-top: 16px;
}

.service-sub-card__title-part {
  color: var(--color-secondary);
}


/* ===========================
   HEADER
=========================== */
#header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 30px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-nav a {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-text);
  padding: 10px;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--color-primary);
}

/* ===========================
   HERO SECTION
=========================== */
#hero {
  background: var(--color-bg);
  padding: 96px 48px;
  min-height: 392px;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy p {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 4.5px;
  color: var(--color-text);
}
.hero-illust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-illust img {
  width: 600px;
  height: 350px;
  object-fit: cover;
}

/* ===========================
   LEAD SECTION (About us)
=========================== */
#lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 0;
  background: var(--color-white);
}
.lead-card-wrapper {
  width: 100%;
  overflow: hidden; 
}
.lead-center {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.lead-card-bg {
  /* background: var(--color-bg); */
  /* 通常フローのflex-column。bgはmargin-left+calc()で右端まで伸ばす */
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 20px 64px 64px 64px;
  border-radius: 80px 0 0 80px;
  /* margin-left: 80px; */
  /* width: calc(50vw + 520px); */
}

.lead-card-tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 2.5;
  color: var(--color-text);
  white-space: nowrap;
  text-align: center;
  letter-spacing: 1.2px;
}

.lead-cards-absolute {
  /* absolute廃止 → 通常フローのflex-row・中央揃え */
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}
.lead-card {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 4px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.lead-card__inner {
  background: var(--color-white);
  border-radius: 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}
.lead-card__titlebox {
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 0 24px;
  border-radius: 12px 12px 0 0;
  position: relative;
  color: white;
  text-align: center;
}
.lead-card__num {
  font-family: var(--font-number);
  font-size: 40px;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 16px;
  line-height: 1;
}
.lead-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.lead-card__wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}
.lead-card__wave svg {
  display: block;
  width: 100%;
}
.lead-card__body {
  padding: 32px;
  flex: 1;
}
.lead-card__body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text);
}

/* ===========================
   SERVICE SECTION
=========================== */
#service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  background: #CFD7DE;
}
.service-main {
  width: 100%;
  overflow: hidden; /* BFCを作りbg左延伸をクリップ */
}
.service-center {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.service-main-bg {
  display: flex;
  flex-direction: column;
  margin-right: 80px;
  width: calc(50vw + 520px); /* リードと同じ式を左右反転：左辺まで伸ばす */
}
.service-main-wrapper {
  /* background: #CFD7DE; */
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding-left: 100px;
  padding-right: 100px;
  border-radius: 0 50px 50px 0;
  padding-top: 20px;
  padding-bottom: 60px;
}
.service-main-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
}
.service-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 500px;
  padding: 4px;
  justify-content: flex-start;
  padding-top: 40px;
}
.service-description__tag {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.67;
  color: rgb(0, 0, 0);
  white-space: nowrap;
}
.service-description__title-row {
  display: flex;
  gap: 2px;
  align-items: center;
  padding-bottom: 20px;
  position: relative;
}
/* .service-description__title-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -180px;
  width: 100px;
  height: 20px;
  background: var(--color-tertiary-light);
  border-radius: 999px;
} */
.service-description__name {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.53;
  color: rgb(0, 0, 0);
}
.service-description__name-jp {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: rgb(0, 0, 0);
}
.service-description__body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 2.4;
  color: rgb(0, 0, 0);
}
.service-thumb {
  flex: 1;
  background: var(--color-white);
  border-radius: 16px;
  padding: 4px;
  height: 500px;
  display: flex;
  flex-direction: column;
}
.service-thumb__wrapper {
  background: var(--color-white);
  border-radius: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.service-thumb__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-top: 32px;
  flex: 1;
  position: relative;
}
.service-thumb__logo {
  width: 260px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}
.service-thumb__app {
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
  object-fit: cover;
}

/* Service sub cards */
.service-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  width: 100%;
}
.service-sub-wrapper {
  display: flex;
  gap: 32px;
  width: 960px;
  min-height: 449px;
}
.service-sub-card {
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 64px 32px 32px;
  position: relative;
}
.service-sub-card__num {
  font-family: Montserrat;
  font-size: 48px;
  letter-spacing: 3px;
  color: var(--color-secondary);
  position: absolute;
  top: -40px;
  left: 18px;
  line-height: 1.67;
}
.service-sub-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: center;
  flex-shrink: 0;
}
.service-sub-card__title .accent {
  color: var(--color-primary);
}
.service-sub-card__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 2.2;
  color: #000000;
}

/* ===========================
   VALUE SECTION
=========================== */
#value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  background: var(--color-white);
}
.value-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  width: 100%;
}
.value-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 960px;
}
/* 交互にオフセット */
.value-card-row {
  display: flex;
  flex-direction: column;
}

.value-card-row--right {
  padding-right: 100px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.value-card-row--left {
  padding-left: 100px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.value-card-inner {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 24px;
}
.value-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.67;
}
.value-card__title .c1 {
  color: var(--color-primary);
}

.value-card__title .c2 {
  color: var(--color-secondary);
}
.value-card__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-text);
}

/* ===========================
   COMPANY SECTION
=========================== */
#company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  background: var(--color-white);
}
.company-table-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  width: 100%;
}
.company-table-inner {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 60px;
}
.company-row {
  background: var(--color-bg);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
}
.company-row__label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.67;
  width: 200px;
  flex-shrink: 0;
  color: var(--color-text);
}
.company-row__value {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-text);
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-postbox-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  width: 100%;
}
.section-heading__bar--icon {
  background: none;
}
.section-heading__bar-arrow {
  width: 43px;
  height: 48px;
}
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  background: var(--color-white);
}
.contact-postbox {
  background:#10426e;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  border-radius: 100px 0 0 0;
  width: 100%;
  position: relative;
}
.contact-postbox__logo {
  position: absolute;
  width: 200px;
  height: 50px;
  left: 80px;
  top: 72px;
  object-fit: cover;
}
.contact-form {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 128px;
  border-radius: 100px 0 0 0;
  /* 固定960pxをレスポンシブに変更。ロゴ幅(280px)分を左に確保 */
  max-width: 960px;
  width: calc(100% - 280px);
}
.contact-form__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  width: 100%;
}
.contact-form__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.67;
  color: var(--color-text);
  text-align: center;
}
.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding-bottom: 64px;
  position: relative;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  width: 100%;
}
.contact-field__input {
  background: var(--color-white);
  display: flex;
  align-items: center;
  padding: 0 24px;
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-text);
  min-height: 56px;
}
.contact-field__input::placeholder {
  color: var(--color-text-muted);
}
.contact-field__textarea {
  background: var(--color-white);
  display: flex;
  align-items: flex-start;
  padding: 16px 24px;
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-text);
  height: 200px;
  resize: vertical;
}
.contact-field__textarea::placeholder {
  color: var(--color-text-muted);
}
.contact-submit {
  background: #765f5a;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px 8px 12px;
  border-radius: 8px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.contact-submit:hover {
  background: #8b7068;
}
.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.field-error {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: #e05252;
  padding-left: 4px;
}
.contact-success {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-secondary);
  text-align: center;
  padding: 48px 0 64px;
  width: 100%;
}

.contact-submit:active {
  transform: scale(0.99);
}
.contact-submit__icon {
  color: white;
  font-size: 20px;
  line-height: 1;
}
.contact-submit__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: white;
}

/* ===========================
   FOOTER
=========================== */
#footer {
  background: var(--color-secondary);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer-inner {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  padding: 2px 24px;
  width: 100%;
  overflow: hidden;
}
.footer-inner span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: white;
  white-space: nowrap;
}
.footer-inner .copyright {
  flex: 1;
  text-align: right;
  min-width: 0;
}

/* ===========================
   HAMBURGER MENU
=========================== */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.header-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.header-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   TABLET  ≤ 1199px
=========================== */
@media (max-width: 1199px) {
  /* Header */
  .header-nav { gap: 20px; }
  .header-nav a { font-size: 14px; padding: 8px 6px; }

  /* Hero */
  #hero { padding: 64px 32px; }
  .hero-inner { padding: 0 16px; gap: 32px; }
  .hero-copy p { font-size: 18px; }
  .hero-illust img { width: 420px; height: 245px; }

  /* Lead */
  .lead-card-bg { padding: 40px 40px; gap: 32px; }
  .lead-cards-absolute { gap: 16px; }
  .lead-card { width: 260px; }
  .lead-card__body { padding: 24px; }
  .lead-card__body p { font-size: 14px; }
  .lead-card-tagline { font-size: 16px; white-space: normal; }

  /* Service main */
  .service-main-wrapper { padding-left: 48px; padding-right: 32px; }
  .service-main-inner { gap: 32px; width: auto; flex: 1; }
  .service-description__name { font-size: 28px; }
  .service-description__body { font-size: 16px; line-height: 2; }
  .service-thumb__logo { width: 280px; height: auto; }

  /* Service sub */
  .service-sub-wrapper { width: 90vw; }
  .service-sub-card__body { font-size: 16px; line-height: 2; }

  /* Value */
  .value-cards-wrapper { width: 90vw; }
  .value-card-row--right { padding-right: 60px; }
  .value-card-row--left  { padding-left:  60px; }
  .value-card__body { font-size: 16px; line-height: 2; }

  /* Company */
  .company-table-inner { width: 90vw; }
  .company-row__label { font-size: 16px; width: 160px; }
  .company-row__value { font-size: 16px; }

  /* Contact */
  .contact-form { width: calc(100% - 240px); padding: 32px 64px; }
  .contact-postbox__logo { left: 40px; }
  .contact-field__input,
  .contact-field__textarea { font-size: 16px; }
}

/* ===========================
   NARROW  ≤ 900px
   ロゴが重なる前に非表示、フォームを中央寄せに切り替え
=========================== */
@media (max-width: 900px) {
  .contact-postbox__logo { display: none; }
  .contact-postbox { align-items: center; }
  .contact-form {
    width: 90%;
    max-width: 640px;
    border-radius: 60px 0 0 0;
    padding: 32px 40px;
  }
}

/* ===========================
   MOBILE  ≤ 767px
=========================== */
@media (max-width: 767px) {
  /* Header */
  .header-hamburger { display: flex; }
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 150;
  }
  .header-nav.is-open { display: flex; }
  .header-nav a {
    font-size: 20px;
    padding: 16px 32px;
    width: 200px;
    text-align: center;
  }
  .header-inner { padding: 12px 20px; }

  /* Section headings */
  .section-heading { padding-top: 48px; }
  .section-heading__en { font-size: 24px; }

  /* Hero */
  #hero { padding: 48px 20px; min-height: auto; }
  .hero-inner {
    flex-direction: column;
    padding: 0;
    gap: 32px;
    text-align: center;
  }
  .hero-copy p { font-size: 24px; line-height: 1.8; }
  .hero-illust img {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
  }

  /* Lead — bgフル幅・コンテンツ中央・カード縦積み */
  .lead-card-bg {
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    padding: 32px 20px;
    gap: 24px;
  }
  .lead-card-tagline { font-size: 14px; white-space: normal; }
  .lead-cards-absolute { flex-direction: column; gap: 20px; }
  .lead-card { width: 100%; }
  .lead-card__body { padding: 24px 20px; }
  .lead-card__body p { font-size: 14px; line-height: 2; }

  /* Service main */
  .service-center { display: block; }
  .service-main-bg { display: block; width: 100%; margin-right: 0; }
  .service-main-wrapper {
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .service-main-inner {
    width: auto;
    flex-direction: column;
    gap: 24px;
  }
  .service-description {
    height: auto;
    padding-top: 0;
  }
  .service-description__tag { font-size: 14px; white-space: normal; }
  .service-description__name { font-size: 28px; }
  .service-description__name-jp { font-size: 16px; }
  .service-description__body { font-size: 14px; line-height: 2; }
  .service-description__title-row::after { display: none; }
  .service-thumb { height: 360px; }
  .service-thumb__logo { width: 240px; height: auto; }
  .service-thumb__app { width: 180px; height: auto; top: 90px; }

  /* Service sub */
  .service-sub { padding: 0 20px; }
  .service-sub-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 48px;
    min-height: auto;
  }
  .service-sub-card { padding: 56px 24px 32px; }
  .service-sub-card__body { font-size: 15px; line-height: 2; }

  /* Value */
  .value-cards { padding: 16px 20px; }
  .value-cards-wrapper { width: 100%; gap: 0; }
  .value-card-row--right { padding-right: 0; padding-top: 0; padding-bottom: 0; margin-bottom: 4px; }
  .value-card-row--left  { padding-left:  0; padding-top: 0; padding-bottom: 0; margin-bottom: 4px; }
  .value-card-inner { padding: 28px 20px; }
  .value-card__body { font-size: 15px; line-height: 2; }

  /* Company */
  .company-table-wrap { padding: 16px 20px; }
  .company-table-inner { width: 100%; padding: 32px 0; }
  .company-row {
    flex-direction: column;
    gap: 8px;
    padding: 20px;
  }
  .company-row__label { width: auto; font-size: 16px; }
  .company-row__value { font-size: 15px; line-height: 2; }

  /* Contact */
  #contact { padding-top: 16px; }
  .contact-postbox { border-radius: 60px 0 0 0; }
  .contact-postbox__logo { display: none; }
  .contact-form {
    width: 100%;
    border-radius: 60px 0 0 0;
    padding: 32px 20px;
  }
  .contact-form__title { font-size: 16px; line-height: 1.8; }
  .contact-form__title-wrap { padding: 16px 0; }
  .contact-field { padding: 8px 0; }
  .contact-field__input,
  .contact-field__textarea { font-size: 16px; }

  /* Footer */
  #footer { height: auto; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 20px;
  }
  .footer-inner .copyright { text-align: left; }
}
