@charset "UTF-8";
:root {
  --pink-50:#fdf3f5;
  --pink-100:#fbe6ea;
  --pink-200:#f6cdd6;
  --pink-300:#eeaebb;
  --pink-400:#e08a9c;
  --pink-500:#d06a80;
  --pink-600:#b8506a;
  --pink-700:#96405a;
  --cream:#fdf6f0;
  --brown-900:#4a3838;
  --brown-700:#6b5555;
  --brown-500:#8a7373;
  --gold:#c9a876;
  --white:#ffffff;
  --shadow-sm: 0 2px 10px rgba(184,80,106,0.08);
  --shadow-md: 0 8px 30px rgba(184,80,106,0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ページ内アンカーの着地点が sticky な .site-header の下に潜らないようにする。
   .job-section だけでなく #mission / #job-select / #faq / #company にも必要 */
section[id] {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--brown-900);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  margin: 0;
  color: var(--brown-900);
}

p {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-narrow {
  padding: 72px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section-narrow {
    padding: 48px 0;
  }
  .wrap {
    padding: 0 20px;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pink-600);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.section-title.center {
  text-align: center;
}

.section-lead {
  margin-top: 16px;
  font-size: 16px;
  color: var(--brown-700);
  line-height: 2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}
/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pink-100);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 40px;
  height: auto;
}

.brand-text {
  line-height: 1.3;
}

.brand-text .name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--brown-900);
}

.brand-text .dept {
  font-size: 11px;
  color: var(--pink-600);
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-700);
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--pink-600);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: #fff;
  color: var(--pink-600);
  border: 1.5px solid var(--pink-300);
}

.btn-outline:hover {
  background: var(--pink-50);
}

.btn-tel {
  font-size: 13px;
  color: var(--brown-700);
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
}
@media (max-width: 560px) {
  .btn-tel-label {
    display: none;
  }
  .brand-text .dept {
    display: none;
  }
  .brand-text .name {
    font-size: 14px;
  }
  .header-inner {
    padding: 10px 16px;
    gap: 8px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 32px;
  }
  .header-cta {
    gap: 6px;
  }
  .header-cta .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .header-cta .btn-tel {
    padding: 8px;
  }
}
/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--cream) 55%, #fff 100%);
  overflow: hidden;
  padding: 64px 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--pink-200) 0%, transparent 70%);
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.hero-copy h1 .line2 {
  display: inline-block;
}

.hero-copy h1 .accent {
  color: var(--pink-600);
  position: relative;
}

.hero-lead {
  margin-top: 22px;
  font-size: 16px;
  color: var(--brown-700);
  line-height: 2;
  max-width: 520px;
}

.hero-lead p {
  margin-top: 14px;
}

.hero-lead p:first-child {
  margin-top: 0;
}

.hero-signature {
  margin-top: 18px;
  max-width: 520px;
  text-align: right;
}

.hero-signature .sig-img {
  width: 220px;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pink-700);
  background: #fff;
  border: 1px solid var(--pink-200);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual .photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
}

.hero-visual .float-card {
  position: absolute;
  bottom: -22px;
  left: -28px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
}

.hero-visual .float-card .num {
  font-size: 26px;
  font-weight: 900;
  color: var(--pink-600);
  font-family: "Zen Maru Gothic", sans-serif;
}

.hero-visual .float-card .cap {
  font-size: 11.5px;
  color: var(--brown-700);
  line-height: 1.5;
}

@media (min-width: 901px) {
  .hero-copy h1 .line2 {
    white-space: nowrap;
  }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy h1 {
    font-size: 30px;
  }
  .hero-copy {
    display: contents;
  }
  .eyebrow {
    order: 1;
  }
  .hero-copy h1 {
    order: 2;
  }
  .hero-lead {
    order: 3;
  }
  .hero-visual {
    order: 4;
    margin-top: 28px;
  }
  .hero-signature {
    order: 5;
  }
  .hero-badges {
    order: 6;
  }
  .hero-ctas {
    order: 7;
  }
  .hero-visual .float-card {
    left: 12px;
    bottom: -18px;
    padding: 12px 16px;
  }
}
/* ===== Mission ===== */
.mission {
  background: #fff;
}

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

.mission-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 52px;
  color: var(--pink-200);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 6px;
}

.philosophy {
  margin-top: 20px;
  padding: 22px 24px;
  border-left: 4px solid var(--pink-400);
  background: var(--pink-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--brown-900);
  font-weight: 700;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mission-photo {
    order: -1;
  }
}
/* ===== Stats ===== */
.stats {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item .num.text-val {
  font-size: 28px;
}

.stat-item .num sup {
  font-size: 16px;
  margin-left: 2px;
}

.stat-item .num sup.pre {
  margin-left: 0;
  margin-right: 2px;
}

.stat-item .label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--pink-100);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
}
/* ===== Job selector ===== */
.job-select {
  background: var(--pink-50);
}

.job-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.job-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.job-card .tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-600);
  background: var(--pink-100);
  padding: 5px 14px;
  border-radius: 999px;
}

.job-card h3 {
  font-size: 22px;
  font-weight: 900;
}

.job-card .price {
  font-size: 15px;
  color: var(--brown-700);
}

.job-card .price strong {
  color: var(--pink-600);
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.job-card .desc {
  font-size: 14px;
  color: var(--brown-500);
}

.job-card .go {
  margin-top: 10px;
  font-weight: 700;
  color: var(--pink-600);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1100px) {
  .job-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .job-cards {
    grid-template-columns: 1fr;
  }
}
.job-select-note {
  margin-top: 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--brown-500);
}

/* ===== Job detail sections ===== */
.job-section:nth-of-type(odd) {
  background: #fff;
}

.job-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.job-header .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.job-header .photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.job-header .photo.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.job-header .photo.photo-duo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.job-header .role-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--pink-500);
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.job-header h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
}

.job-header .lead {
  margin-top: 14px;
  font-size: 15px;
  color: var(--brown-700);
  line-height: 2;
}

@media (max-width: 900px) {
  .job-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--pink-100);
  flex: 1 1 280px;
  min-width: 0;
}

.info-card.wide {
  flex-basis: 100%;
}

.info-card .ic-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.info-card .ic-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 15.5px;
  font-weight: 700;
}

.info-card .salary-main {
  font-size: 24px;
  font-weight: 900;
  color: var(--pink-600);
  font-family: "Zen Maru Gothic", sans-serif;
}

.info-card .salary-sub {
  font-size: 12.5px;
  color: var(--brown-500);
  margin-top: 4px;
  line-height: 1.7;
}

.info-card .divider {
  height: 1px;
  background: var(--pink-200);
  margin: 14px 0;
}

.info-card p, .info-card li {
  font-size: 13.5px;
  color: var(--brown-700);
  line-height: 1.9;
}

.info-card ul li {
  position: relative;
  padding-left: 16px;
}

.info-card ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--pink-400);
}

.info-card ul.cols {
  columns: 2;
  column-gap: 32px;
}

.info-card ul.cols-3 {
  columns: 3;
  column-gap: 32px;
}

.info-card ul.cols li,
.info-card ul.cols-3 li {
  break-inside: avoid;
}

@media (max-width: 900px) {
  .info-card ul.cols-3 {
    columns: 2;
  }
}
@media (max-width: 560px) {
  .info-card ul.cols,
  .info-card ul.cols-3 {
    columns: 1;
  }
}
.info-card .chiplist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.info-card .chip {
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--pink-200);
  color: var(--pink-700);
  padding: 4px 10px;
  border-radius: 999px;
}

.job-cta {
  margin-top: 44px;
  text-align: center;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border: 1px dashed var(--pink-300);
}

.job-cta p {
  font-size: 14px;
  color: var(--brown-700);
  margin-bottom: 16px;
}

@media (max-width: 560px) {
  .job-cta {
    padding: 28px 18px;
  }
  .job-cta .btn,
  .final-cta .btn,
  .hero-ctas .btn {
    white-space: normal;
    max-width: 100%;
  }
}
/* ===== Salary table (doctor) ===== */
.salary-table-wrap {
  overflow-x: auto;
  margin-top: 12px;
  -webkit-overflow-scrolling: touch;
}

.salary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 520px;
}

.salary-table th, .salary-table td {
  padding: 11px 14px;
  text-align: center;
  border: 1px solid var(--pink-100);
}

.salary-table th {
  background: var(--pink-100);
  color: var(--pink-700);
  font-weight: 700;
  font-size: 13px;
}

.salary-table td {
  color: var(--brown-700);
  line-height: 1.6;
}

.salary-table td:first-child {
  font-weight: 700;
  background: var(--cream);
  color: var(--brown-900);
}

.salary-table tbody tr:nth-child(even) td {
  background: var(--pink-50);
}

.salary-table tbody tr:nth-child(even) td:first-child {
  background: var(--cream);
}

.subcard-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--brown-900);
  margin: 20px 0 4px;
}

.subcard-title:first-child {
  margin-top: 0;
}

/* ===== Staff interviews ===== */
.interview-wrap {
  margin-top: 56px;
}

.interview-wrap > .eyebrow {
  margin-bottom: 18px;
}

.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.interview-grid.single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .interview-grid {
    grid-template-columns: 1fr;
  }
}
.interview-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
}

.interview-card .quote-mark {
  font-size: 40px;
  color: var(--pink-200);
  font-family: Georgia, serif;
  line-height: 1;
}

.interview-card h4.i-quote {
  font-size: 19px;
  font-weight: 900;
  color: var(--brown-900);
  line-height: 1.6;
  margin-top: 2px;
}

.interview-card .i-name {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pink-600);
  background: var(--pink-50);
  padding: 5px 14px;
  border-radius: 999px;
}

.interview-block {
  margin-top: 20px;
}

.interview-block:first-of-type {
  margin-top: 0;
}

.interview-block h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 6px;
}

.interview-block p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--brown-700);
}

.interview-block p + p {
  margin-top: 8px;
}

.interview-qa {
  margin-top: 8px;
}

.interview-qa .q-row {
  margin-top: 22px;
}

.interview-qa .q-row:first-child {
  margin-top: 0;
}

.interview-qa .q-row .q-text {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--brown-900);
  margin-bottom: 10px;
}

.interview-qa .q-row .a-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--brown-700);
  margin-bottom: 6px;
}

.interview-qa .q-row .a-text strong {
  color: var(--pink-600);
  font-weight: 700;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.gallery-grid .g-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-grid .g-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-grid .g-label {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-700);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===== Flow ===== */
.flow {
  background: #fff;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  counter-reset: step;
}

.flow-step {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid var(--pink-100);
}

.flow-step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 14px;
}

.flow-step h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 13px;
  color: var(--brown-700);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
}
/* ===== FAQ ===== */
.faq {
  background: var(--pink-50);
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-100);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brown-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.faq-item summary .toggle {
  margin-left: auto;
  color: var(--pink-400);
  font-size: 20px;
  transition: transform 0.2s;
}

.faq-item[open] summary .toggle {
  transform: rotate(45deg);
}

.faq-item .a-body {
  padding: 0 26px 24px 68px;
  font-size: 14px;
  color: var(--brown-700);
  line-height: 1.9;
}

/* ===== Company info ===== */
.company {
  background: #fff;
}

.company-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border: 1px solid var(--pink-100);
}

.company-box dl {
  margin: 0;
}

.company-box dt {
  font-size: 12.5px;
  color: var(--pink-600);
  font-weight: 700;
  margin-bottom: 4px;
}

.company-box dd {
  margin: 0 0 20px;
  font-size: 14.5px;
  color: var(--brown-900);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .company-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.final-cta p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--pink-50);
}

.final-cta .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.final-cta .btn-primary {
  background: #fff;
  color: var(--pink-600);
}

.final-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.final-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.final-cta .cta-note {
  margin-top: 20px;
  font-size: 13.5px;
}

.final-cta .cta-note a {
  color: #fff;
  text-decoration: underline;
}

/* ===== Footer ===== */
footer {
  background: var(--brown-900);
  color: #e8dcdc;
  padding: 40px 0 100px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
  padding: 3px;
}

footer .fine {
  font-size: 11.5px;
  color: #b39d9d;
  margin-top: 6px;
}

footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

footer nav a {
  color: #d8c6c6;
}

/* ===== Mobile sticky bar ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--pink-200);
  padding: 10px 16px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  gap: 10px;
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
}

@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 78px;
  }
}
