/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #14162B;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
a:hover { color: #0068B7; }
ul, dl, dd { margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

:root {
  --navy: #020153;
  --blue: #0068B7;
  --ink: #14162B;
  --text-muted: #5B6072;
  --gray: #8A8F9C;
  --line: #E5E7EC;
  --line-soft: #DDE0E6;
  --bg-alt: #F6F7F9;
  --footer-bg: #0A0C22;
  --max-width: 1240px;
  --section-space: 104px;
  --section-space-mobile: 72px;
  --heading-copy-space: 28px;
  --copy-content-space: 48px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-orange { background: var(--navy); color: #fff; }
.btn-orange:hover { background: var(--blue); color: #fff; }
.btn-outline { background: transparent; color: var(--text-muted); border: 1px solid var(--line-soft); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-icon { display: none; }
.btn-small { height: 44px; padding: 0 24px; font-size: 13px; }
.btn-large { height: 60px; padding: 0 48px; font-size: 15px; letter-spacing: 2px; }
.btn-full { width: 100%; height: 52px; font-size: 15px; }

/* ===== Section headings ===== */
.eyebrow-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gray);
  margin-bottom: 14px;
}
.eyebrow h2, .eyebrow h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.3;
  color: var(--ink);
}
.section-lead {
  font-size: 24px;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 400;
  margin-top: 24px;
}
.section-lead.teal { color: var(--navy); font-size: 24px; }
.section-desc {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 88px;
}
.logo { flex: 0 0 auto; }
.logo img { width: 171px; height: auto; max-width: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 36px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-link:hover { color: var(--blue); }
.nav-dropdown { position: relative; display: flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; justify-content: center; padding: 4px; border: 0; background: transparent; color: var(--ink); }
.nav-dropdown-toggle span { display: block; line-height: 1; transform: translateY(-2px); transition: transform .2s ease; }
.nav-dropdown.is-open .nav-dropdown-toggle span { transform: translateY(-2px) rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(2, 1, 83, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown-menu a { display: block; padding: 12px 16px; font-size: 12px; font-weight: 600; letter-spacing: 1px; white-space: nowrap; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch button {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  color: #B0B4BE;
}
.lang-switch .lang-current { color: var(--navy); }
.lang-switch.light .lang-current { color: #fff; }
.lang-switch.light .lang-alt { color: rgba(255, 255, 255, 0.5); }
.lang-divider {
  width: 1px;
  height: 12px;
  background: currentColor;
  opacity: 0.4;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 10, 40, 0.72) 0%, rgba(2, 10, 40, 0.25) 60%, rgba(2, 10, 40, 0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 100px 48px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  max-width: 720px;
}
.hero-heading { display: flex; flex-direction: column; gap: 0; }
.hero-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}
.hero-text h1 {
  font-size: 54px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  line-break: strict;
  letter-spacing: 0.5px;
}
.hero-sub {
  font-size: 17px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  margin-top: 28px;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 10px;
  transition: border-color 0.25s ease;
}
.hero-link:hover { color: #fff; border-bottom-color: #fff; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn-light { background: rgba(255,255,255,.92); color: var(--navy); height: 48px; padding: 0 22px; }
.hero-actions .btn-orange { height: 48px; padding: 0 22px; }
main section[id] { scroll-margin-top: 96px; }

/* ===== Expanded content ===== */
.content-section { padding: var(--section-space) 0; background: #fff; }
.content-section--tint { background: var(--bg-alt); }
.content-section--navy { background: var(--navy); color: #fff; }
.section-heading { max-width: 840px; margin-bottom: var(--heading-copy-space); }
.section-heading h2 { margin-top: 12px; font-size: 36px; line-height: 1.45; color: var(--ink); }
.content-section--navy .section-heading h2 { color: #fff; }
.icon-card-grid h3::before,
.process-grid--icons h3::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 9px;
  vertical-align: -6px;
  background: var(--blue);
  -webkit-mask-image: url("assets/card-title-icons.svg");
  mask-image: url("assets/card-title-icons.svg");
  -webkit-mask-size: 1600% 100%;
  mask-size: 1600% 100%;
  -webkit-mask-position: var(--icon-position, 0%) center;
  mask-position: var(--icon-position, 0%) center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.icon-card-grid article:nth-child(1) { --icon-position: 0%; }
.icon-card-grid article:nth-child(2) { --icon-position: 6.6667%; }
.icon-card-grid article:nth-child(3) { --icon-position: 13.3333%; }
.icon-card-grid article:nth-child(4) { --icon-position: 20%; }
.icon-card-grid article:nth-child(5) { --icon-position: 26.6667%; }
.icon-card-grid article:nth-child(6) { --icon-position: 33.3333%; }
.process-grid--icons h3::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h14m-5-5 5 5-5 5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h14m-5-5 5 5-5 5'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
#battery-storage .icon-card-grid article:nth-child(1) { --icon-position: 46.6667%; }
#battery-storage .icon-card-grid article:nth-child(2) { --icon-position: 53.3333%; }
#battery-storage .icon-card-grid article:nth-child(3) { --icon-position: 20%; }
#battery-storage .icon-card-grid article:nth-child(4) { --icon-position: 13.3333%; }
#battery-storage .icon-card-grid article:nth-child(5) { --icon-position: 26.6667%; }
#battery-storage .icon-card-grid article:nth-child(6) { --icon-position: 33.3333%; }
#policy .icon-card-grid article:nth-child(1) { --icon-position: 86.6667%; }
#policy .icon-card-grid article:nth-child(2) { --icon-position: 100%; }
#policy .icon-card-grid article:nth-child(3) { --icon-position: 93.3333%; }
.icon-card-grid--light h3::before { background: #6dbcf2; }
.section-intro { max-width: 960px; margin: 0 0 var(--copy-content-space); font-size: 16px; line-height: 2; color: var(--text-muted); }
.content-grid { display: grid; gap: 20px; }
.content-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-card { padding: 28px; background: #fff; border: 1px solid var(--line-soft); }
.content-card h3 { margin: 0 0 14px; font-size: 18px; color: var(--ink); line-height: 1.5; }
.content-card p { margin: 0; color: var(--text-muted); line-height: 1.85; font-size: 14px; }
.about-card-grid .content-card {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
  border-top: 3px solid var(--blue);
  background: linear-gradient(145deg, #fff 58%, #f2f7fc 100%);
  box-shadow: 0 8px 24px rgba(2, 1, 83, .045);
}
.about-card-grid .content-card::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -28px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(0, 104, 183, .11);
  border-radius: 50%;
}
.about-card-grid .content-card::after {
  position: absolute;
  top: 14px;
  right: 20px;
  color: rgba(0, 104, 183, .16);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}
.about-card-grid .content-card:nth-child(1)::after { content: "01"; }
.about-card-grid .content-card:nth-child(2)::after { content: "02"; }
.about-card-grid .content-card:nth-child(3)::after { content: "03"; }
.about-card-grid .content-card h3 { position: relative; padding-left: 18px; padding-right: 40px; }
.about-card-grid .content-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 4px;
  height: 1em;
  background: var(--blue);
  border-radius: 2px;
}
.content-section--navy .content-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.content-section--navy .content-card h3 { color: #fff; }
.content-section--navy .content-card p { color: rgba(255,255,255,.75); }
.subsection-title {
  position: relative;
  margin: 64px 0 24px;
  padding-top: 26px;
  color: var(--ink);
  font-size: 24px;
}
.subsection-title::before,
.subsection-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
}
.subsection-title::before {
  z-index: 2;
  width: 2em;
  background: #000;
}
.subsection-title::after {
  z-index: 1;
  width: 100%;
  background: #e5e5e5;
}
.plain-note, .notice-box { margin-top: 28px; padding: 22px 24px; border-left: 4px solid var(--blue); background: #fff; color: var(--text-muted); line-height: 1.85; }
.plain-note p { margin: 0; }
.notice-box { border-left-color: #d06b24; background: #fff7ef; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; list-style: none; margin: 0; padding: 0; }
.process-grid li { padding: 22px; background: #fff; border-top: 3px solid var(--blue); }
.process-grid span { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
.process-grid h3 { margin: 10px 0; font-size: 16px; color: var(--ink); }
.process-grid p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.check-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; list-style: none; padding: 0; }
.check-list li { padding: 14px 16px 14px 38px; position: relative; background: var(--bg-alt); color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 16px; color: var(--blue); font-weight: 700; }
.supporting-note { margin-top: 16px; color: var(--text-muted); }
.section-cta { margin-top: 32px; height: 52px; padding: 0 28px; }
.policy-language { margin: 28px 0 0; color: rgba(255,255,255,.75); }
.message-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.message-body { font-size: 16px; color: var(--text-muted); line-height: 2.1; }
.message-sign { margin-top: 28px; color: var(--ink); text-align: right; }
.faq-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-groups > section > h3 { margin-bottom: 20px; font-size: 22px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); background: #fff; }
.faq-list summary { position: relative; padding: 20px 48px 20px 20px; cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 18px; font-size: 22px; color: var(--blue); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 22px; color: var(--text-muted); line-height: 1.85; font-size: 14px; }

/* ===== Business ===== */
.business {
  position: relative;
  background: var(--bg-alt);
  padding: var(--section-space) 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 0;
}
.section-head .eyebrow { flex-shrink: 0; }
.section-head .section-lead {
  margin-top: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 400;
  text-align: right;
}

.biz-grid {
  display: flex;
  flex-direction: column;
}

.biz-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 72px;
  padding: var(--copy-content-space) 0;
  border-bottom: 1px solid var(--line);
}
.biz-card:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  width: 2em;
  height: 1px;
  background: #000;
}
.biz-card:first-child { border-top: 1px solid var(--line); }
.biz-card:first-child::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
  width: 2em;
  height: 1px;
  background: #000;
}
.biz-card:last-child { border-bottom: none; padding-bottom: 0; }
.biz-card--reverse { flex-direction: row-reverse; }

.biz-photo {
  position: relative;
  flex: 0 0 48%;
  min-width: 0;
}
.biz-body {
  flex: 1 1 50%;
  min-width: 0;
}
.biz-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.biz-num {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
}

.biz-tagline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 16px;
}
.biz-body h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 24px;
}
.biz-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.biz-steps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  border-top: 1px solid var(--line);
}
.biz-steps li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 24px 0 0;
  border-right: 1px solid var(--line);
}
.biz-steps li + li { padding-left: 24px; }
.biz-steps li:last-child { border-right: none; padding-right: 0; }
.biz-step-num {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 10px;
}
.biz-step-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.biz-step-text p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.link-arrow-icon { display: none; }
.link-arrow span:last-child {
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}
.link-arrow::after {
  content: "→";
  font-size: 16px;
  order: 2;
}
.link-arrow:hover { color: var(--blue); }

/* ===== Company ===== */
.company { background: #fff; padding: var(--section-space) 0; }
.company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.company-text { max-width: none; }
.company .section-lead { margin-top: var(--heading-copy-space); }
.company-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto;
}

.info-card {
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.info-row {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-row:last-child { border-bottom: none; }
.info-row:first-child { padding-top: 0; }
.info-row dt {
  flex: 0 0 120px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
.info-row dd { font-size: 15px; color: var(--ink); }

/* ===== Contact ===== */
.contact {
  position: relative;
  background: var(--navy);
  padding: var(--section-space) 0;
}
.contact-inner {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.contact-text { flex: 1 1 380px; max-width: 460px; }
.contact .eyebrow-label { color: rgba(255, 255, 255, 0.55); }
.contact .eyebrow h2, .contact .eyebrow h1 { color: #fff; }
.contact .section-desc {
  margin-top: var(--heading-copy-space);
  color: rgba(255, 255, 255, 0.75);
}
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: var(--copy-content-space);
}
.feature { display: flex; align-items: center; gap: 18px; }
.feature-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon img { width: 32px; height: 32px; }
.feature-text { display: flex; flex-direction: column; gap: 6px; }
.feature-text strong { font-size: 15px; color: #fff; font-weight: 600; }
.feature-text span { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

.contact-form {
  flex: 1 1 460px;
  max-width: 640px;
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; color: var(--ink); font-weight: 500; }
.required-mark { color: #C0392B; margin-left: 4px; }
.field input, .field textarea, .field select {
  border: 1px solid var(--line-soft);
  border-radius: 0;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--navy);
}
.field input::placeholder, .field textarea::placeholder {
  color: #B0B4BE;
  font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-help { margin: 0; font-size: 11px; line-height: 1.7; color: var(--gray); }
.form-error { display: none; margin: 0; color: #a42820; font-size: 13px; line-height: 1.7; }
.form-error.is-visible { display: block; }
.fine-print { font-size: 12px; color: var(--gray); font-weight: 300; text-align: center; }
.privacy-consent {
  padding: 18px;
  border: 1px solid var(--line-soft);
  background: #f8f9fa;
  color: var(--ink);
}
.privacy-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.privacy-consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--orange);
}
.privacy-consent p {
  margin: 12px 0 0 28px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--gray);
}
.privacy-consent a { color: var(--navy); text-decoration: underline; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

.privacy-content { width: 100%; margin-top: 36px; }
.privacy-section { padding: 26px 0; border-top: 1px solid var(--line); }
.privacy-section h3 { margin: 0 0 12px; color: var(--navy); font-size: 18px; }
.privacy-section p { margin: 0; color: var(--gray); line-height: 1.9; }
.privacy-section a { color: var(--navy); text-decoration: underline; }
.privacy-contact { margin-top: 12px !important; color: var(--ink) !important; }

/* ===== Footer ===== */
.site-footer { background: var(--footer-bg); }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo { height: 38px; width: auto; }
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-nav a:hover { color: #fff; }
.copyright {
  flex: 1 0 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Confirm / Complete pages ===== */
.contact--standalone { background: #fff; padding: 96px 0 112px; }
.contact--standalone .eyebrow-label { color: var(--gray); }
.contact--standalone .eyebrow h2, .contact--standalone .eyebrow h1 { color: var(--ink); }
.contact--standalone .section-desc { color: var(--text-muted); }

.confirm-inner {
  max-width: 760px;
  margin-top: 0;
  padding-top: 0;
}
.confirm-inner .eyebrow { margin-bottom: 16px; }
.confirm-inner .section-desc { margin-top: 0; margin-bottom: 40px; }

.confirm-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 40px;
}
.summary-row {
  display: flex;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.summary-row:last-child { border-bottom: none; }
.summary-row dt {
  flex: 0 0 140px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
.summary-row dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  word-break: break-word;
}
.summary-row--block { flex-direction: column; gap: 8px; }
.summary-message { white-space: pre-wrap; line-height: 1.8; }

.confirm-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
.confirm-actions .btn { height: 52px; padding: 0 40px; font-size: 14px; }

.complete-inner {
  max-width: 560px;
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.complete-icon { width: 56px; height: 56px; margin-bottom: 28px; }
.complete-inner .eyebrow-label { text-align: center; width: 100%; }
.complete-inner h2 { text-align: center; }
.complete-message { margin: 20px 0 44px; }

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .company-inner { grid-template-columns: 1fr; gap: 56px; }
  .process-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 960px) {
  .header-inner { padding: 0 24px; height: 72px; }
  .logo img { width: 150px; }
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    margin-left: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .menu-toggle { display: flex; }
  .section-inner { padding: 0 24px; }
  .hero-text h1 { font-size: 42px; }
  .hero-inner { padding: 72px 24px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .section-head .section-lead { text-align: left; }
  .biz-card, .biz-card--reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: var(--copy-content-space) 0;
  }
  .biz-photo, .biz-body { flex: 1 1 auto; }
  .biz-num { top: 0; left: 0; }
  .biz-photo img { height: 280px; }
  .content-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid, .check-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .message-inner, .faq-groups { grid-template-columns: 1fr; gap: 40px; }
  .nav-dropdown { width: 100%; display: grid; grid-template-columns: 1fr auto; }
  .nav-dropdown-menu { position: static; grid-column: 1 / -1; min-width: 0; padding: 4px 0 0 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown-menu a { padding: 8px 0; }
  .nav-dropdown-toggle { display: none; }
}

@media (max-width: 640px) {
  .section-inner { padding: 0 20px; }
  .hero { min-height: 620px; }
  .hero-text h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .eyebrow h2, .eyebrow h1 { font-size: 28px; }
  .section-lead { font-size: 20px; }
  .biz-steps { flex-direction: column; border-top: none; }
  .biz-steps li {
    border-right: none;
    border-top: 1px solid var(--line);
    padding: 16px 0 16px;
  }
  .biz-steps li + li { padding-left: 0; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .btn-large { width: 100%; }
  .confirm-summary { padding: 8px 20px; }
  .summary-row { flex-direction: column; gap: 6px; }
  .summary-row dt { flex: none; }
  .confirm-actions { flex-direction: column-reverse; }
  .confirm-actions .btn { width: 100%; }
  .content-section,
  .business,
  .company,
  .contact { padding: var(--section-space-mobile) 0; }
  .section-heading h2 { font-size: 28px; }
  .subsection-title { padding-top: 16px; }
  .content-grid--3, .process-grid, .check-list, .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition-duration: 0.01ms !important; } }
.contact-website {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
