@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Poppins:wght@600;700&display=swap');

/* ===== Variables ===== */
:root {
  --orange:    #E8845A;
  --orange-d:  #d4724a;
  --green:     #5A9E8A;
  --navy:      #2C3E50;
  --navy-d:    #1e2d3d;
  --offwhite:  #FAF7F2;
  --light:     #F0EDE8;
  --warmgray:  #8C8279;
  --border:    #E0DCD6;
  --white:     #FFFFFF;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--offwhite);
  color: var(--navy);
  line-height: 1.8;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Accessibility: Focus ===== */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ===== Header ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 48px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}
@media (max-width: 768px) {
  .logo-img { height: 30px !important; width: auto !important; }
  .header-inner { justify-content: flex-start; padding: 0 8px; }
  .hamburger { margin-left: auto; }
}
nav ul { display: flex; gap: 28px; align-items: center; }
nav a { font-size: .88rem; color: var(--navy); transition: color .2s; }
nav a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .85rem;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange-d) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all .3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .03em;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,132,90,.35);
}
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* Tel button */
.btn-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--white);
  padding: 6px 0;
}
.btn-tel-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}
.btn-tel-note { font-size: .72rem; color: rgba(255,255,255,.6); }
.btn-tel:hover .btn-tel-num { opacity: .85; }

/* ===== Page Layout ===== */
.section { padding: 88px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--navy);
  line-height: 1.5;
}
.section-title span { color: var(--orange); }
.section-sub {
  text-align: center;
  color: var(--warmgray);
  font-size: .95rem;
  margin-top: -36px;
  margin-bottom: 48px;
}
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(140deg, rgba(44,62,80,.85) 0%, rgba(58,84,112,.75) 100%),
    url('../images/hero-main.png') center / cover no-repeat;
  color: var(--white);
  padding: 110px 24px 96px;
  text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: .08em;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.45;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 44px;
  line-height: 1.95;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

/* Hero trust badges */
.hero-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-trust-item {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-trust-item::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ===== Mid CTA (navy帯) ===== */
.cta-mid {
  background: var(--navy);
  padding: 68px 24px;
  text-align: center;
}
.cta-mid-label {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.cta-mid-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.55;
}
.cta-mid-sub {
  color: rgba(255,255,255,.58);
  font-size: .9rem;
  margin-bottom: 36px;
}
.cta-mid-actions {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-divider { color: rgba(255,255,255,.3); font-size: .82rem; }

/* ===== Sticky CTA Bar (mobile) ===== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--orange);
  box-shadow: 0 -3px 16px rgba(0,0,0,.2);
}
.sticky-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  padding: 16px 20px;
  min-height: 54px;
}
.sticky-cta-bar a::before { content: '▶'; font-size: .68rem; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.10); }
.card-icon { font-size: 2.4rem; margin-bottom: 18px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: .88rem; color: var(--warmgray); line-height: 1.9; }

/* ===== Service Banner ===== */
.service-intro {
  background: var(--white);
  border-radius: 16px;
  padding: 56px;
  display: flex;
  gap: 56px;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.service-intro-text { flex: 1; }
.service-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .07em;
  margin-bottom: 14px;
}
.service-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-intro .en-sub { font-size: .85rem; color: var(--warmgray); margin-bottom: 18px; }
.service-intro p { color: var(--warmgray); line-height: 1.9; margin-bottom: 28px; font-size: .95rem; }
.service-intro-visual { flex: 0 0 260px; text-align: center; }

/* img-crop */
.img-crop { overflow: hidden; border-radius: 16px; position: relative; }
.img-crop img { width: 110%; height: 110%; object-fit: cover; object-position: top left; display: block; margin: 0; }
.img-crop--square { width: 260px; height: 230px; }
.img-crop--wide { width: 100%; margin-bottom: 16px; }
.img-crop--wide img { width: 100%; height: auto; margin-bottom: -36px; }

/* ===== Pain Points ===== */
.pain-list { max-width: 700px; margin: 0 auto; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.pain-item:last-child { border-bottom: none; }
.pain-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pain-item p { color: var(--navy); font-size: .95rem; line-height: 1.85; }
.pain-closing {
  text-align: center;
  margin-top: 44px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  padding: 22px 32px;
  border-radius: 8px;
}

/* ===== Reasons ===== */
.reason-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border-top: 4px solid var(--orange);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.10); }
.reason-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  opacity: .2;
  margin-bottom: 8px;
  line-height: 1;
}
.reason-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.reason-card p { font-size: .87rem; color: var(--warmgray); line-height: 1.9; }

/* ===== Service Items ===== */
.service-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-item {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border-left: 4px solid var(--green);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.service-item-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.service-item p { font-size: .87rem; color: var(--warmgray); line-height: 1.9; }

/* ===== Service Scope (6 categories) ===== */
.service-scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-scope-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border-top: 4px solid var(--green);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-scope-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.service-scope-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-scope-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-scope-benefit { font-size: .87rem; color: var(--navy); font-weight: 500; margin-bottom: 16px; line-height: 1.7; }
.service-scope-list { display: flex; flex-direction: column; gap: 8px; }
.service-scope-list li {
  font-size: .82rem;
  color: var(--warmgray);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-scope-list li::before { content: "✓"; color: var(--green); flex-shrink: 0; }
.service-scope-note {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--offwhite);
  border-radius: 12px;
  font-size: .85rem;
  color: var(--warmgray);
  line-height: 1.85;
}
.service-scope-note a { color: var(--orange); font-weight: 700; }

/* ===== Plans ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border-top: 4px solid var(--green);
  text-align: center;
}
.plan.featured {
  border-top-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(232,132,90,.2);
}
.plan-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.plan-name { font-size: .85rem; color: var(--warmgray); margin-bottom: 8px; }
.plan-price { font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.plan-price sub { font-size: 1rem; font-weight: 400; }
.plan-hours { font-size: .85rem; color: var(--warmgray); margin-bottom: 8px; }
.plan-visit { font-size: .85rem; color: var(--warmgray); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.plan-features { text-align: left; }
.plan-features li {
  font-size: .83rem;
  color: var(--warmgray);
  padding: 7px 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-features li::before { content: "✓"; color: var(--green); flex-shrink: 0; }
.plan-note { text-align: center; margin-top: 36px; font-size: .82rem; color: var(--warmgray); line-height: 1.85; }

/* ===== Steps ===== */
.steps-wrap { max-width: 620px; margin: 0 auto; }
.step { display: flex; gap: 24px; padding-bottom: 40px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: calc(100% - 8px);
  background: var(--border);
}
.step:last-child::before { display: none; }
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  z-index: 1;
}
.step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; padding-top: 10px; }
.step-body p { font-size: .87rem; color: var(--warmgray); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.faq-q::before { content: "Q"; color: var(--orange); font-family: 'Poppins', sans-serif; flex-shrink: 0; }
.faq-a { font-size: .88rem; color: var(--warmgray); line-height: 1.9; padding-left: 24px; }

/* ===== CTA Section (orange) ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #c9613f 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 24px;
}
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 16px; }
.cta-section p { font-size: .95rem; opacity: .88; margin-bottom: 44px; line-height: 1.95; }
.cta-note { margin-top: 20px; font-size: .8rem; opacity: .7; }
.cta-note a { color: rgba(255,255,255,.9); }
.cta-note a:hover { text-decoration: underline; }

/* ===== Navi Banner (新サービス) ===== */
.navi-banner {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}
.navi-banner h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--navy);
  margin: 16px 0 12px;
}
.navi-banner p {
  color: var(--warmgray);
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: .95rem;
}
.navi-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

/* ===== Company Table ===== */
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.company-table th {
  background: var(--light);
  font-weight: 700;
  width: 170px;
  white-space: nowrap;
  font-size: .9rem;
}
.company-table td { color: var(--warmgray); font-size: .93rem; line-height: 1.9; }
.company-table a { color: var(--orange); }
.company-table a:hover { text-decoration: underline; }

/* ===== Contact Form ===== */
.form-wrap { max-width: 660px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: .9rem; }
.required-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .93rem;
  background: var(--white);
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,132,90,.15);
}
.form-group textarea { height: 180px; resize: vertical; }
.form-submit { text-align: center; margin-top: 12px; }
.form-note { font-size: .8rem; color: var(--warmgray); margin-top: 10px; line-height: 1.8; }
.alert { padding: 14px 20px; border-radius: 6px; margin-bottom: 28px; font-size: .9rem; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* Contact info cards (contact.html) */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.contact-info-card .icon { font-size: 2rem; margin-bottom: 12px; }
.contact-info-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { font-size: .83rem; color: var(--warmgray); line-height: 1.9; }
.contact-info-card a { color: inherit; text-decoration: none; white-space: nowrap; }
.contact-info-card a:hover { color: var(--orange); }

/* Divider */
.divider { display: flex; align-items: center; gap: 16px; margin: 48px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span { font-size: .82rem; color: var(--warmgray); white-space: nowrap; }

/* ===== Page Hero ===== */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, #3a5470 100%);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: .95rem; opacity: .8; }

/* ===== Breadcrumb ===== */
.breadcrumb { background: var(--light); padding: 12px 24px; font-size: .8rem; color: var(--warmgray); }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb a { color: var(--warmgray); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { margin: 0 8px; }

/* ===== Mission/Vision ===== */
.mv-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mv-card {
  background: var(--white);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border-top: 4px solid var(--orange);
}
.mv-label {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--orange);
  margin-bottom: 12px;
}
.mv-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; color: var(--navy); line-height: 1.7; }
.mv-card p { font-size: .88rem; color: var(--warmgray); line-height: 1.9; }

/* ===== AI Team ===== */
.ai-team { display: flex; flex-wrap: wrap; gap: 10px; }
.ai-member {
  background: var(--light);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: .82rem;
  color: var(--navy);
  border: 1px solid var(--border);
}
.ai-member strong { color: var(--orange); }

/* ===== Tel link ===== */
.tel-link { color: inherit; white-space: nowrap; }
.tel-link:hover { color: var(--orange); }

/* ===== Footer ===== */
footer {
  background: var(--navy-d);
  color: rgba(255,255,255,.65);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 10px; }
.footer-logo-img { height: 30px; width: auto; display: block; }
.footer-tagline { font-size: .82rem; margin-bottom: 20px; color: rgba(255,255,255,.45); }
.footer-info { font-size: .82rem; line-height: 2.2; }
.footer-info a { color: rgba(255,255,255,.65); }
.footer-info a:hover { color: var(--white); }
.footer-col h4 { font-size: .82rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .82rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom-wrap {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ===== Responsive: 900px ===== */
@media (max-width: 900px) {
  .reason-cards { grid-template-columns: 1fr; }
  .service-items { grid-template-columns: 1fr; }
  .service-scope-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .mv-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
  body { padding-bottom: 56px; }

  /* Nav */
  header nav { position: absolute; top: 0; right: 0; height: 0; }
  nav ul {
    display: none;
    position: absolute;
    top: 66px;
    right: 0;
    width: 220px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    border-radius: 0 0 0 8px;
    z-index: 100;
  }
  nav ul.open { display: flex; }
  nav ul li a { display: flex; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--light); min-height: 44px; }
  .nav-cta { border-radius: 0; }
  .hamburger { display: flex; }

  /* Sticky CTA */
  .sticky-cta-bar { display: block; }

  /* Sections */
  .section { padding: 56px 20px; }
  .section-title { margin-bottom: 32px; }

  /* Hero */
  .hero { padding: 72px 20px 64px; }
  .hero p { font-size: .93rem; margin-bottom: 32px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 340px; text-align: center; }
  .hero-trust { gap: 12px; }

  /* Mid CTA */
  .cta-mid { padding: 52px 20px; }
  .cta-mid-actions { flex-direction: column; gap: 20px; }
  .cta-mid-actions .cta-divider,
  .cta-mid-actions .btn-tel { display: none; }
  .cta-mid-actions .btn { width: 100%; max-width: 340px; text-align: center; }

  /* Service intro */
  .service-intro { flex-direction: column; padding: 36px 24px; gap: 24px; }
  .service-intro-visual { display: none; }
  .img-crop--square { width: 100%; height: 220px; }

  /* Cards */
  .cards { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .card:hover, .reason-card:hover, .service-item:hover, .service-scope-card:hover { transform: none; box-shadow: 0 2px 14px rgba(0,0,0,.06); }
  .service-scope-grid { grid-template-columns: 1fr; }

  /* Steps */
  .step { gap: 16px; padding-bottom: 32px; }
  .step-num { width: 40px; height: 40px; font-size: .9rem; }
  .step::before { left: 19px; top: 42px; }

  /* CTA */
  .cta-section { padding: 64px 20px; }
  .cta-section p { margin-bottom: 32px; }

  /* Navi banner */
  .navi-banner { padding: 36px 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Company table */
  .company-table th { width: 90px; padding: 12px; font-size: .8rem; white-space: normal; }
  .company-table td { padding: 12px; font-size: .83rem; }

  /* Page hero */
  .page-hero { padding: 48px 20px; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Plans */
  .plan { padding: 28px 20px; }
  .plan-price { font-size: 1.8rem; }

  /* Mission cards */
  .mv-card { padding: 32px 24px; }

  /* Contact */
  .contact-info-cards { grid-template-columns: 1fr; }
}

/* ===== Responsive: 480px ===== */
@media (max-width: 480px) {
  .section { padding: 44px 16px; }
  .hero { padding: 56px 16px 48px; }
  .cta-section { padding: 48px 16px; }
  .cta-mid { padding: 40px 16px; }
  .card { padding: 20px; }
  .btn { padding: 13px 24px; font-size: .88rem; }
  .img-crop--wide { margin-bottom: 12px; }
}
