@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Sans+KR:wght@400;500;700;900&family=Noto+Sans+SC:wght@400;500;700;900&family=Noto+Serif+KR:wght@700;900&family=Noto+Serif+SC:wght@700;900&family=Source+Serif+4:opsz,wght@8..60,700;8..60,900&family=Zen+Old+Mincho:wght@700&display=swap");

/* Common site styles. Google Fonts are loaded in each HTML file. */
:root {
  --green: #226f48;
  --green-dark: #083e2b;
  --green-deep: #06291e;
  --blue: #0c4a82;
  --blue-deep: #072c50;
  --gold: #ffaa00;
  --gold-soft: #ffd36a;
  --ink: #10231b;
  --muted: #5c6f66;
  --line: #dbe8e1;
  --paper: #f6faf8;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 62, 43, .16);
  --radius: 24px;
  --max: 1180px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  letter-spacing: .02em
}

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

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

button,
input,
textarea,
select {
  font: inherit
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(34, 111, 72, .12);
  transition: box-shadow .25s, background .25s
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 40px rgba(8, 62, 43, .08)
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px
}

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

.brand-text {
  display: grid;
  gap: 1px
}

.brand-text strong {
  font-size: 13px;
  line-height: 1.25;
  color: var(--green-dark);
  letter-spacing: .05em
}

.brand-text span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px
}

.global-nav a {
  font-size: 13px;
  font-weight: 700;
  color: #30483d;
  position: relative;
  white-space: nowrap
}

.global-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s
}

.global-nav a:hover:after {
  transform: scaleX(1)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.tel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue)
}

.cta-small {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(12, 74, 130, .18)
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--green-dark);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block
}

.menu-button span:before,
.menu-button span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: .25s
}

.menu-button span:before {
  top: -7px
}

.menu-button span:after {
  top: 7px
}

.menu-button[aria-expanded="true"] span {
  background: transparent
}

.menu-button[aria-expanded="true"] span:before {
  top: 0;
  transform: rotate(45deg)
}

.menu-button[aria-expanded="true"] span:after {
  top: 0;
  transform: rotate(-45deg)
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 142px 0 72px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255, 170, 0, .18), transparent 28%), radial-gradient(circle at 15% 70%, rgba(34, 111, 72, .18), transparent 34%), linear-gradient(135deg, #f9fffb 0%, #eef8f3 50%, #e9f2ff 100%)
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .72) 45%, rgba(255, 255, 255, .16) 100%);
  z-index: 1
}

.hero-bg {
  position: absolute;
  inset: 0 0 0 45%;
  background: linear-gradient(135deg, rgba(6, 41, 30, .18), rgba(12, 74, 130, .08)), url("brand-building.jpg") center/cover no-repeat;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%)
}

.hero .container {
  position: relative;
  z-index: 2
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 56px;
  align-items: center;
  margin-top: 2em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px
}

.eyebrow:before {
  content: "";
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold))
}

.hero h1 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.14;
  letter-spacing: .01em;
  margin: 0 0 22px;
  color: var(--green-deep)
}

.hero h1 span {
  color: var(--blue)
}

.hero-lead {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  color: var(--green-dark);
  margin: 0 0 18px
}

.hero-copy {
  max-width: 660px;
  color: #415b50;
  margin: 0 0 34px;
  font-size: 15px
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: .25s
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  box-shadow: 0 18px 40px rgba(12, 74, 130, .22)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(12, 74, 130, .28)
}

.btn-secondary {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid rgba(34, 111, 72, .18)
}

.btn-secondary:hover {
  border-color: var(--green);
  transform: translateY(-2px)
}

.hero-card {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  align-self: end
}

.hero-logo {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 111, 72, .12)
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px
}

.stat {
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 20px;
  padding: 18px;
  text-align: center
}

.stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
  font-weight: 900
}

.stat span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 700
}

.section {
  padding: 110px 0
}

.section-soft {
  background: var(--paper)
}

.section-dark {
  background: linear-gradient(135deg, var(--green-deep), var(--blue-deep));
  color: #fff;
  position: relative;
  overflow: hidden
}

.section-dark:before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 0, .16), transparent 62%)
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px
}

.section-title {
  max-width: 680px
}

.section-title h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
  margin: 0;
  color: var(--green-deep)
}

.section-dark .section-title h2 {
  color: #fff
}

.section-title h2 span {
  color: var(--green)
}

.section-dark .section-title h2 span {
  color: var(--gold-soft)
}

.section-text {
  max-width: 560px;
  color: var(--muted);
  margin: 0
}

.section-dark .section-text {
  color: rgba(255, 255, 255, .72)
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center
}

.about-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 550px;
  background: url("ceo.jpg") center top/cover no-repeat
}

.about-image:after {
  content: "";
  position: absolute;
  inset: 0;
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .6)
}

.about-badge strong {
  display: block;
  color: var(--green-dark);
  font-size: 16px;
  margin-bottom: 4px
}

.about-badge span {
  display: block;
  color: var(--muted);
  font-size: 13px
}

.about-content {
  display: grid;
  gap: 20px
}

.message-box {
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(8, 62, 43, .08)
}

.message-box strong {
  font-family: "Zen Old Mincho", serif;
  display: block;
  font-size: 22px;
  line-height: 1.55;
  color: var(--green-deep);
  margin-bottom: 14px
}

.message-box p {
  margin: 0;
  color: var(--muted)
}

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

.card {
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 12px 36px rgba(8, 62, 43, .06);
  transition: .25s;
  position: relative;
  overflow: hidden
}

.card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s
}

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

.card:hover:before {
  transform: scaleX(1)
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 111, 72, .1), rgba(12, 74, 130, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px
}

.card small {
  display: block;
  color: var(--green);
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 8px
}

.card h3 {
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 12px;
  color: var(--green-deep)
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.strength-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.strength {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  padding: 24px
}

.strength-num {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  color: var(--gold-soft)
}

.strength h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5
}

.strength p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px
}

.model {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px
}

.model-node {
  min-height: 210px;
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 30px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(8, 62, 43, .06);
  display: grid;
  place-items: center
}

.model-node div {
  display: grid;
  place-items: center;
  gap: 8px
}

.model-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.model-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-node h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 20px
}

.model-node p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.model-arrow {
  font-size: 34px;
  color: var(--green);
  font-weight: 900
}

.model-plus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px
}

.mini {
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid rgba(34, 111, 72, .12);
  padding: 22px
}

.mini strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 6px
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step
}

.flow-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 28px;
  padding: 26px 20px;
  box-shadow: 0 12px 36px rgba(8, 62, 43, .06)
}

.flow-item:before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px
}

.flow-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--green-deep);
  line-height: 1.4
}

.flow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .14);
  border-radius: 999px;
  font-weight: 900;
  color: var(--green-dark)
}

.area-tags span:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold)
}

.company-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start
}

.company-card {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  border-radius: 32px;
  padding: 34px;
  position: sticky;
  top: 110px
}

.company-card img {
  border-radius: 22px;
  margin-bottom: 24px
}

.company-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78)
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(8, 62, 43, .06)
}

.company-table th,
.company-table td {
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
  text-align: left;
  vertical-align: top
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0
}

.company-table th {
  width: 170px;
  color: var(--green);
  font-size: 13px;
  white-space: nowrap
}

.company-table td {
  color: #263c32
}

.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: start
}

.contact-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 32px;
  padding: 34px
}

.contact-panel h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.28;
  margin: 0 0 16px
}

.contact-panel p {
  color: rgba(255, 255, 255, .72);
  margin: 0 0 26px
}

.contact-list {
  display: grid;
  gap: 14px
}

.contact-list a,
.contact-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .09)
}

.contact-list strong {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .12em
}

.contact-list span {
  display: block;
  color: #fff;
  font-weight: 700
}

.form {
  background: #fff;
  color: var(--ink);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18)
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 13px;
  font-weight: 900;
  color: var(--green-dark)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d6e4dc;
  border-radius: 16px;
  padding: 13px 14px;
  background: #fbfdfc;
  outline: 0;
  transition: .2s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 111, 72, .12)
}

.field textarea {
  min-height: 132px;
  resize: vertical
}

.submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  min-height: 56px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(12, 74, 130, .22)
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0
}

.site-footer {
  background: #031912;
  color: #fff;
  padding: 46px 0 28px
}

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

.footer-brand img {
  width: 170px;
  background: #fff;
  border-radius: 16px;
  padding: 14px
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px
}

.footer-nav a {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 28px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .42);
  font-size: 12px
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

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

.mobile-menu-actions {
  display: none;
}

@media (max-width:1080px) {

  .global-nav,
  .tel-link {
    display: none
  }

  .menu-button {
    display: flex;
    position: relative;
    z-index: 100;
  }

  .brand,
  .header-actions {
    position: relative;
    z-index: 100;
  }

  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0 !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 24px 60px;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .global-nav>a {
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: clamp(22px, 5.5vw, 26px) !important;
    font-weight: 800;
    color: var(--green-deep);
    padding: 20px;
    border-bottom: 1px solid rgba(34, 111, 72, 0.08);
  }

  .global-nav>a:after {
    display: none
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    width: 100%;
    max-width: 320px;
  }

  .mobile-menu-actions .tel-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffaa00 !important;
    color: #0c4a82 !important;
    padding: 18px !important;
    border-radius: 999px !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.25) !important;
  }

  .mobile-menu-actions .cta-small {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--green), var(--blue)) !important;
    color: #fff !important;
    padding: 18px !important;
    border-radius: 999px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 30px rgba(12, 74, 130, 0.2) !important;
    margin: 0 !important;
  }

  .header-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .message-box {
    padding: 20px !important;
  }

  .message-box strong {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  .message-box .prose p:last-child {
    margin-bottom: 0 !important;
  }
}

body:has(.global-nav.is-open) {
  overflow: hidden;
}

.site-header:has(.global-nav.is-open) .header-top {
  opacity: 0;
  visibility: hidden;
}

.company-table {
  margin-top: 1em;
}

@media (max-width:1080px) {

  .hero-grid,
  .about-grid,
  .company-grid,
  .contact-wrap {
    grid-template-columns: 1fr
  }

  .hero-bg {
    inset: 38% 0 0 0;
    clip-path: none;
    opacity: .35
  }

  .hero-card {
    max-width: 560px
  }

  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .model {
    grid-template-columns: 1fr
  }

  .model-arrow {
    transform: rotate(90deg);
    justify-self: center
  }

  .flow {
    grid-template-columns: repeat(2, 1fr)
  }

  .company-card {
    position: static
  }

  .section-head {
    display: block
  }

  .section-text {
    margin-top: 16px
  }
}

@media (max-width:720px) {
  .container {
    width: min(100% - 32px, var(--max))
  }

  .header-inner {
    height: 70px
  }

  .brand img {
    width: 156px
  }

  .brand-text {
    display: none
  }

  .cta-small {
    display: none
  }

  .hero {
    padding: 116px 0 58px
  }

  .hero h1 {
    font-size: 40px
  }

  .stats {
    grid-template-columns: 1fr
  }

  .section {
    padding: 78px 0
  }

  .section-head {
    margin-bottom: 32px
  }

  .cards,
  .strength-list,
  .model-plus,
  .flow,
  .form-grid {
    grid-template-columns: 1fr
  }

  .strength {
    grid-template-columns: 1fr
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%
  }

  .company-table {
    margin-top: 1em;
  }

  .company-table th {
    padding-bottom: 4px;
    border-bottom: 0
  }

  .company-table td {
    padding-top: 4px
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column
  }

  .hero-buttons .btn {
    width: 100%
  }

  .hero-card,
  .form,
  .contact-panel {
    border-radius: 24px;
    padding: 24px
  }

  .about-image {
    min-height: 330px
  }
}

.battery-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px
}

.guide-box {
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(8, 62, 43, .06)
}

.guide-box small,
.buyer-item small,
.earning-item small {
  display: block;
  color: var(--green);
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 8px
}

.guide-box h3,
.earning-item h3,
.buyer-item h3 {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1.45
}

.guide-box p,
.earning-item p,
.buyer-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.simple-scheme {
  display: grid;
  gap: 12px;
  margin-top: 18px
}

.simple-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em
}

.simple-line:after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green))
}

.simple-card {
  border: 1px solid rgba(34, 111, 72, .16);
  border-radius: 22px;
  padding: 18px 20px
}

.simple-card strong {
  display: block;
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 4px
}

.simple-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d88400;
  font-weight: 900;
  font-size: 14px
}

.simple-arrow:before {
  content: "↓";
  font-size: 18px
}

.earning-list {
  display: grid;
  gap: 20px
}

.earning-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: start;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line)
}

.earning-item:last-child {
  padding-bottom: 0;
  border-bottom: 0
}

.earning-value {
  font-size: 14px;
  font-weight: 900;
  color: var(--blue);
  text-align: right
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.buyer-item {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(34, 111, 72, 0.08);
  box-shadow: 0 12px 30px rgba(8, 62, 43, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.buyer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(8, 62, 43, 0.12);
  border-color: rgba(34, 111, 72, 0.2);
}

.buyer-item small {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.buyer-item h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--green-deep);
  font-weight: 800;
}

.buyer-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.section-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px
}

@media (max-width:1080px) {

  .battery-guide-grid,
  .buyer-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:720px) {
  .earning-item {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .earning-value {
    text-align: left
  }
}


.dc-diagram {
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .1);
  border-radius: 34px;
  padding: 42px 34px;
  box-shadow: 0 18px 50px rgba(8, 62, 43, .07);
  overflow: hidden
}

.dc-diagram-title {
  text-align: center;
  margin-bottom: 36px
}

.dc-diagram-title h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  color: #061f45;
  font-weight: 900;
  letter-spacing: .04em
}

.dc-diagram-title p {
  margin: 10px 0 0;
  color: #5a625f;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700
}

.dc-diagram-title:after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  margin: 18px auto 0
}

.dc-compare {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 34px;
  align-items: start
}

.dc-divider {
  width: 1px;
  align-self: stretch;
  background: repeating-linear-gradient(to bottom, rgba(20, 52, 80, .28) 0 8px, transparent 8px 16px)
}

.dc-side {
  min-width: 0
}

.dc-pill {
  width: min(310px, 70%);
  margin: 0 auto 30px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 900;
  padding: 10px 20px;
  letter-spacing: .05em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08)
}

.dc-pill.green {
  background: linear-gradient(135deg, #087334, #0b9a4f)
}

.dc-pill.blue {
  background: linear-gradient(135deg, #0c4a82, #084190)
}

.dc-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center
}

.dc-node {
  display: grid;
  place-items: center;
  gap: 14px;
  min-width: 0
}

.dc-node svg {
  width: clamp(78px, 9vw, 132px);
  height: clamp(78px, 9vw, 132px);
  overflow: visible
}

.dc-node.wide svg {
  width: clamp(120px, 14vw, 190px)
}

.dc-label {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 900;
  color: #101817;
  text-align: center;
  white-space: nowrap
}

.dc-arrow {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  font-weight: 900;
  align-self: center
}

.dc-green {
  color: #087334
}

.dc-blue {
  color: #0c4a82
}

.dc-svg-green {
  stroke: #087334;
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.dc-svg-green-fill {
  fill: #087334
}

.dc-svg-blue {
  stroke: #0c4a82;
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.dc-svg-blue-fill {
  fill: #0c4a82
}

.dc-svg-gold {
  stroke: #ffaa00;
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.dc-revenue-wrap {
  position: relative
}

.dc-revenue-hub {
  width: min(280px, 68%);
  margin: 0 auto 30px;
  text-align: center;
  color: #061f45
}

.dc-hub-circle {
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
  border: 3px solid rgba(12, 74, 130, .32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f8fbff, #eef5ff)
}

.dc-hub-circle svg {
  width: 128px
}

.dc-revenue-hub strong {
  font-size: 24px;
  font-weight: 900
}

.dc-branch {
  height: 76px;
  width: 76%;
  margin: -8px auto -6px;
  border-top: 5px solid #0c4a82;
  border-left: 5px solid #0c4a82;
  border-right: 5px solid #0c4a82;
  border-radius: 18px 18px 0 0;
  position: relative
}

.dc-branch:before,
.dc-branch:after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 17px solid #0c4a82
}

.dc-branch:before {
  left: -13px
}

.dc-branch:after {
  right: -13px
}

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

.dc-revenue-card {
  background: #fff;
  border: 2px solid rgba(12, 74, 130, .16);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(8, 62, 43, .06)
}

.dc-revenue-card.green {
  border-color: rgba(8, 115, 52, .3);
  background: linear-gradient(180deg, #f8fff9, #fff)
}

.dc-revenue-card.blue {
  border-color: rgba(12, 74, 130, .32);
  background: linear-gradient(180deg, #f7fbff, #fff)
}

.dc-revenue-card.gold {
  border-color: rgba(255, 170, 0, .48);
  background: linear-gradient(180deg, #fffaf0, #fff)
}

.dc-revenue-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900
}

.dc-revenue-head .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900
}

.dc-revenue-card.green .num {
  background: #087334
}

.dc-revenue-card.blue .num {
  background: #0c4a82
}

.dc-revenue-card.gold .num {
  background: #b97800
}

.dc-revenue-card.green .dc-revenue-head {
  color: #087334;
  background: rgba(8, 115, 52, .08)
}

.dc-revenue-card.blue .dc-revenue-head {
  color: #0c4a82;
  background: rgba(12, 74, 130, .08)
}

.dc-revenue-card.gold .dc-revenue-head {
  color: #b97800;
  background: rgba(255, 170, 0, .12)
}

.dc-revenue-body {
  padding: 22px
}

.dc-revenue-icon {
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 14px
}

.dc-revenue-icon svg {
  max-width: 180px;
  width: 100%;
  height: 112px
}

.dc-revenue-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px
}

.dc-revenue-body li {
  position: relative;
  padding-left: 18px;
  color: #1c2924;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7
}

.dc-revenue-body li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor
}

.dc-revenue-value {
  margin-top: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 9px 12px;
  text-align: center;
  font-weight: 900;
  font-size: 15px
}

.dc-revenue-card.green .dc-revenue-value {
  color: #087334
}

.dc-revenue-card.blue .dc-revenue-value {
  color: #0c4a82
}

.dc-revenue-card.gold .dc-revenue-value {
  color: #b97800
}

.dc-summary-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  border: 2px solid rgba(12, 74, 130, .45);
  border-radius: 18px;
  background: #f7fbff;
  color: #0c4a82;
  padding: 17px 20px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  text-align: center
}

.dc-summary-band span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c4a82;
  color: #fff;
  flex: 0 0 auto
}

.dc-note {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin: 18px 0 0
}

.dc-mobile-note {
  display: none
}

.dc-only-mobile {
  display: none
}

@media (max-width:1080px) {
  .dc-diagram {
    padding: 34px 24px
  }

  .dc-compare {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .dc-divider {
    height: 1px;
    width: 100%;
    background: repeating-linear-gradient(to right, rgba(20, 52, 80, .28) 0 8px, transparent 8px 16px)
  }

  .dc-revenue-grid {
    grid-template-columns: 1fr
  }

  .dc-branch {
    display: none
  }

  .dc-revenue-hub {
    margin-bottom: 22px
  }

  .dc-revenue-card {
    max-width: 720px;
    margin-inline: auto;
    width: 100%
  }
}

@media (max-width:720px) {
  .dc-diagram {
    border-radius: 24px;
    padding: 28px 18px
  }

  .dc-flow {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .dc-arrow {
    transform: rotate(90deg);
    justify-self: center
  }

  .dc-node svg {
    width: 112px;
    height: 112px
  }

  .dc-node.wide svg {
    width: 150px
  }

  .dc-pill {
    width: 100%;
    font-size: 22px;
    margin-bottom: 20px
  }

  .dc-label {
    font-size: 17px
  }

  .dc-hub-circle {
    width: 148px;
    height: 148px
  }

  .dc-hub-circle svg {
    width: 105px
  }

  .dc-revenue-head {
    font-size: 20px
  }

  .dc-revenue-icon {
    height: 100px
  }

  .dc-revenue-body {
    padding: 18px
  }

  .dc-summary-band {
    flex-direction: column;
    font-size: 17px
  }

  .dc-note {
    font-size: 12px
  }
}


.png-diagram-wrap {
  margin-top: 28px
}

.png-diagram {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(8, 62, 43, .10);
  border: 1px solid rgba(34, 111, 72, .10);
  background: #fff
}

.png-diagram-caption {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 12px
}

@media (max-width:720px) {
  .png-diagram {
    border-radius: 18px
  }

  .png-diagram-wrap {
    overflow-x: auto;
    padding-bottom: 8px
  }

  .png-diagram-wrap .png-diagram {
    min-width: 760px
  }
}

.compare-section {
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%)
}

.compare-shell {
  background: #fff;
  border: 1px solid rgba(16, 35, 27, .08);
  border-radius: 36px;
  padding: 54px 40px 34px;
  box-shadow: 0 18px 48px rgba(8, 62, 43, .06)
}

.compare-heading {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px
}

.compare-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.16;
  letter-spacing: .02em;
  color: #0b2b68;
  font-weight: 900
}

.compare-heading p {
  margin: 18px 0 0;
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.7;
  color: #555;
  font-weight: 700
}

.compare-divider {
  display: block;
  width: 80px;
  height: 5px;
  border-radius: 999px;
  background: #f2b31a;
  margin: 22px auto 0
}

.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch
}

.compare-grid:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  border-left: 2px dashed #d6d9de;
  transform: translateX(-16px)
}

.compare-card {
  background: #f7f9fb;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 27, .06);
  display: flex;
  flex-direction: column;
  min-height: 100%
}

.compare-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px
}

.compare-card-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .02em
}

.compare-card-head--green {
  background: linear-gradient(135deg, #0c8b43, #0d6b36)
}

.compare-card-head--blue {
  background: linear-gradient(135deg, #0b57b6, #064392)
}

.compare-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(16, 35, 27, .08)
}

.compare-pill--green {
  color: #196b3b
}

.compare-pill--blue {
  color: #1d4d9d
}

.compare-card-body {
  padding: 28px 30px 34px;
  display: grid;
  gap: 26px;
  flex: 1
}

.compare-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent
}

.compare-image-box img {
  width: 100%;
  height: auto;
  max-width: 493px;
  object-fit: contain
}

.compare-card--grid .compare-image-box img {
  max-width: 524px
}

.compare-feature-block {
  display: grid;
  gap: 18px
}

.compare-feature-head {
  display: flex;
  align-items: center;
  gap: 14px
}

.compare-feature-head strong {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1;
  color: #0f2e66;
  font-weight: 900;
  white-space: nowrap
}

.compare-feature-head--green strong {
  color: #0b6d37
}

.compare-feature-head--blue strong {
  color: #0b4392
}

.compare-feature-line {
  height: 2px;
  flex: 1;
  background: currentColor;
  opacity: .55
}

.compare-feature-head--green .compare-feature-line {
  color: #0b6d37
}

.compare-feature-head--blue .compare-feature-line {
  color: #0b4392
}

.compare-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  position: relative;
  flex: 0 0 54px
}

.compare-feature-head--green .compare-feature-icon {
  background: #0c7a3e
}

.compare-feature-head--blue .compare-feature-icon {
  background: #0b4fa7
}

.compare-feature-icon:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 13px;
  width: 22px;
  height: 26px;
  border: 2.5px solid #fff;
  border-radius: 4px
}

.compare-feature-icon:after {
  content: "";
  position: absolute;
  left: 21px;
  top: 21px;
  width: 12px;
  height: 2px;
  background: #fff;
  box-shadow: 0 6px 0 #fff, 0 12px 0 #fff
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px
}

.compare-list li {
  position: relative;
  padding-left: 30px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
  font-weight: 700;
  color: #1e2228;
  margin-left: 1.2em;

}

.compare-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translateY(-50%)
}

.compare-list--green li:before {
  background: #108246
}

.compare-list--blue li:before {
  background: #0a4daa
}

.compare-summary {
  margin: 2px 0 0;
  border: 3px solid currentColor;
  border-radius: 999px;
  padding: 16px 24px;
  text-align: center;
  font-size: clamp(18px, 1.85vw, 22px);
  line-height: 1.4;
  font-weight: 900;
  background: #fff
}

.compare-summary--green {
  color: #0d6e38
}

.compare-summary--blue {
  color: #0b4392
}

.compare-note {
  margin: 26px 0 0;
  text-align: center;
  color: #666;
  font-size: clamp(12px, 1vw, 14px)
}

@media (max-width:1100px) {
  .compare-shell {
    padding: 46px 28px 28px
  }

  .compare-card-head {
    padding: 20px 22px
  }

  .compare-card-body {
    padding: 24px 22px 28px
  }
}

@media (max-width:880px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .compare-grid:before {
    display: none
  }

  .compare-card-head {
    align-items: flex-start
  }

  .compare-pill {
    min-height: 40px
  }
}

@media (max-width:720px) {
  .compare-shell {
    border-radius: 0px !important;
    padding: 0px !important;
    box-shadow: none !important;
    border: none !important;
  }

  .compare-heading {
    margin-bottom: 22px
  }

  .compare-divider {
    width: 64px;
    height: 4px;
    margin-top: 16px
  }

  .compare-card {
    border-radius: 22px
  }

  .compare-card-body {
    gap: 20px;
    padding: 18px 16px 20px
  }

  .compare-feature-head {
    gap: 10px
  }

  .compare-feature-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px
  }

  .compare-feature-icon:before {
    left: 12px;
    top: 10px;
    width: 18px;
    height: 22px;
    border-width: 2px
  }

  .compare-feature-icon:after {
    left: 16px;
    top: 17px;
    width: 10px;
    height: 2px;
    box-shadow: 0 5px 0 #fff, 0 10px 0 #fff
  }

  .compare-summary {
    padding: 14px 16px
  }
}

.revenue-section {
  background: linear-gradient(180deg, #f6faf8 0%, #fff 100%)
}

.revenue-shell {
  background: #fff;
  border: 1px solid rgba(16, 35, 27, .08);
  border-radius: 36px;
  padding: 54px 40px 34px;
  box-shadow: 0 18px 48px rgba(8, 62, 43, .06);
  overflow: hidden
}

.revenue-heading {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto 16px
}

.revenue-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.16;
  letter-spacing: .02em;
  color: #0b2b68;
  font-weight: 900
}

.revenue-heading p {
  margin: 18px 0 0;
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.7;
  color: #555;
  font-weight: 700
}

.revenue-divider {
  display: block;
  width: 80px;
  height: 5px;
  border-radius: 999px;
  background: #f2b31a;
  margin: 22px auto 0
}

.revenue-hub {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 8px auto -4px;
  z-index: 2
}

.revenue-hub img {
  width: min(340px, 42vw);
  height: auto;
  display: block
}

.revenue-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 10px
}

.revenue-card-grid:before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: -118px;
  height: 120px;
  border-top: 5px solid #0b3d7f;
  border-left: 5px solid #0b3d7f;
  border-right: 5px solid #0b3d7f;
  border-radius: 18px 18px 0 0;
  pointer-events: none
}

.revenue-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(12, 74, 130, .14);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 12px 30px rgba(8, 62, 43, .06)
}

.revenue-card:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -38px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 22px solid #0b3d7f;
  transform: translateX(-50%)
}

.revenue-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px
}

.revenue-card-head h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 900
}

.revenue-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 52px
}

.revenue-card-head--green {
  background: linear-gradient(90deg, rgba(34, 111, 72, .12), rgba(34, 111, 72, .03));
  color: #0c7138
}

.revenue-card-head--green .revenue-number {
  background: #0c7138
}

.revenue-card-head--blue {
  background: linear-gradient(90deg, rgba(12, 74, 130, .12), rgba(12, 74, 130, .03));
  color: #0b3d8d
}

.revenue-card-head--blue .revenue-number {
  background: #0b3d8d
}

.revenue-card-head--gold {
  background: linear-gradient(90deg, rgba(255, 170, 0, .16), rgba(255, 170, 0, .04));
  color: #b17100
}

.revenue-card-head--gold .revenue-number {
  background: #b77a00
}

.revenue-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 22px 18px 24px;
  flex: 1
}

.revenue-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px
}

.revenue-visual img {
  max-width: 100%;
  height: auto;
  object-fit: contain
}

.revenue-card--jepx .revenue-visual img {
  max-width: 405px
}

.revenue-card--balance .revenue-visual img {
  max-width: 345px
}

.revenue-card--capacity .revenue-visual img {
  max-width: 390px
}

.revenue-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px
}

.revenue-list li {
  position: relative;
  padding-left: 24px;
  font-size: clamp(14px, 1.18vw, 17px);
  line-height: 1.6;
  font-weight: 700;
  color: #1e2228
}

.revenue-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%)
}

.revenue-list--green li:before {
  background: #0c7138
}

.revenue-list--blue li:before {
  background: #0b3d8d
}

.revenue-list--gold li:before {
  background: #b77a00
}

.revenue-summary {
  margin: 2px 0 0;
  border: 2.5px solid currentColor;
  border-radius: 999px;
  padding: 13px 16px;
  text-align: center;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.35;
  font-weight: 900;
  background: #fff
}

.revenue-summary--green {
  color: #0c7138
}

.revenue-summary--blue {
  color: #0b3d8d
}

.revenue-summary--gold {
  color: #b77a00
}

.revenue-bottom-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 0;
  padding: 18px 24px;
  border: 3px solid #0b57b6;
  border-radius: 14px;
  background: #f7fbff
}

.revenue-bottom-note img {
  width: 58px;
  height: auto;
  flex: 0 0 auto
}

.revenue-bottom-note strong {
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.5;
  color: #0b2b68;
  font-weight: 900
}

.revenue-note {
  margin: 18px 0 0;
  text-align: center;
  color: #666;
  font-size: clamp(12px, 1vw, 14px)
}

@media (max-width:1100px) {
  .revenue-shell {
    padding: 46px 28px 28px
  }

  .revenue-card-grid {
    gap: 18px
  }

  .revenue-card-grid:before {
    display: none
  }

  .revenue-card:before {
    display: none
  }

  .revenue-hub {
    margin-bottom: 24px
  }

  .revenue-card-head {
    padding: 16px 18px
  }

  .revenue-number {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 22px
  }
}

@media (max-width:960px) {
  .revenue-card-grid {
    grid-template-columns: 1fr
  }

  .revenue-card-body {
    grid-template-rows: auto
  }

  .revenue-visual {
    min-height: auto
  }

  .revenue-bottom-note {
    align-items: flex-start
  }
}

@media (max-width:720px) {
  .revenue-shell {
    border-radius: 0px;
    padding: 0px;
  }

  .revenue-heading {
    margin-bottom: 18px
  }

  .revenue-divider {
    width: 64px;
    height: 4px;
    margin-top: 16px
  }

  .revenue-hub img {
    width: min(300px, 78vw)
  }

  .revenue-card {
    border-radius: 20px
  }

  .revenue-card-head {
    flex-direction: row;
    align-items: center
  }

  .revenue-card-head h3 {
    font-size: 21px
  }

  .revenue-card-body {
    padding: 18px 16px 20px
  }

  .revenue-bottom-note {
    padding: 16px;
    gap: 12px
  }

  .revenue-bottom-note img {
    width: 46px
  }
}


/* Contact section simplified: remove excessive grouping */
#contact.section-dark {
  background: linear-gradient(135deg, #06291e, #072c50);
}

#contact .contact-wrap {
  align-items: start;
  gap: 64px;
}

#contact .contact-panel {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

#contact .contact-panel h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: .02em;
  margin-bottom: 22px;
}

#contact .contact-panel p {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .74);
}

#contact .contact-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

#contact .contact-list a,
#contact .contact-list>div {
  display: grid !important;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
}

#contact .contact-list a>span,
#contact .contact-list>div>span {
  font-size: 18px;
  opacity: .78;
  color: #fff !important;
}

#contact .contact-list a>div,
#contact .contact-list>div>div {
  display: contents;
}

#contact .contact-list strong {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--gold-soft);
}

#contact .contact-list strong+span {
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
}

#contact .form {
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .16);
}

@media (max-width:720px) {
  #contact .contact-wrap {
    gap: 36px;
  }

  #contact .contact-list a,
  #contact .contact-list>div {
    grid-template-columns: 80px 1fr;
    gap: 10px 14px;
  }

  #contact .contact-list strong {
    grid-column: 2;
  }

  #contact .contact-list strong+span {
    grid-column: 2;
    font-size: 16px;
  }
}


/* Revenue model readability refinement */
.revenue-heading h2 {
  font-size: clamp(30px, 3.6vw, 52px) !important;
  line-height: 1.18 !important;
  letter-spacing: .01em !important
}

.revenue-heading p {
  font-size: clamp(14px, 1.45vw, 18px) !important;
  line-height: 1.65 !important;
  margin-top: 12px !important
}

.revenue-divider {
  width: 70px !important;
  height: 4px !important;
  margin-top: 16px !important
}

.revenue-shell {
  padding: 46px 34px 30px !important
}

.revenue-hub {
  margin: 2px auto 4px !important
}

.revenue-hub img {
  width: min(300px, 34vw) !important;
  height: auto !important
}

.revenue-card-grid {
  gap: 22px !important;
  margin-top: 8px !important
}

.revenue-card-head {
  padding: 15px 18px !important;
  gap: 12px !important
}

.revenue-card-head h3 {
  font-size: clamp(17px, 1.55vw, 23px) !important;
  line-height: 1.3 !important;
  letter-spacing: .01em !important
}

.revenue-number {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
  font-size: 21px !important
}

.revenue-card-body {
  padding: 16px 16px 18px !important;
  gap: 14px !important;
  grid-template-rows: auto 1fr auto !important
}

.revenue-visual {
  min-height: auto !important;
  height: auto !important;
  padding: 6px 0 2px !important;
  overflow: visible !important
}

.revenue-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important
}

.revenue-card--jepx .revenue-visual img,
.revenue-card--balance .revenue-visual img,
.revenue-card--capacity .revenue-visual img {
  max-width: 100% !important
}

.revenue-list {
  gap: 6px !important
}

.revenue-list li {
  font-size: clamp(12.5px, 1.02vw, 14.5px) !important;
  line-height: 1.55 !important;
  padding-left: 19px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important
}

.revenue-list li:before {
  width: 7px !important;
  height: 7px !important;
  top: .82em !important
}

.revenue-summary {
  font-size: clamp(13px, 1.18vw, 16px) !important;
  line-height: 1.35 !important;
  padding: 10px 12px !important;
  border-width: 2px !important;
  white-space: normal !important
}

.revenue-bottom-note {
  padding: 14px 18px !important;
  margin-top: 24px !important;
  gap: 14px !important;
  border-width: 2px !important
}

.revenue-bottom-note img {
  width: 48px !important
}

.revenue-bottom-note strong {
  font-size: clamp(14px, 1.45vw, 18px) !important;
  line-height: 1.55 !important
}

.revenue-note {
  font-size: 12px !important;
  margin-top: 14px !important
}

@media (max-width:960px) {
  .revenue-shell {
    padding: 38px 24px 26px !important
  }

  .revenue-hub img {
    width: min(280px, 70vw) !important
  }

  .revenue-card-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important
  }

  .revenue-card-body {
    grid-template-rows: auto !important
  }

  .revenue-visual img {
    max-width: 520px !important
  }
}

@media (max-width:720px) {
  .revenue-shell {
    padding: 32px 16px 22px !important;
    border-radius: 22px !important
  }

  .revenue-heading h2 {
    font-size: clamp(26px, 8vw, 36px) !important
  }

  .revenue-card-head h3 {
    font-size: 19px !important
  }

  .revenue-number {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
    font-size: 19px !important
  }

  .revenue-bottom-note {
    align-items: flex-start !important
  }
}

/* Enterprise responsive polish */
body {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(var(--max), calc(100% - 64px))
}

.site-header {
  background: rgba(255, 255, 255, .92)
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 32px;
  padding: 6px 16px;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--blue));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  letter-spacing: .04em;
}

.header-inner {
  height: 84px
}

.brand {
  min-width: 0;
  flex-shrink: 0
}

.brand img {
  width: 236px
}

.global-nav {
  gap: 22px
}

.global-nav a {
  font-size: 13px;
  letter-spacing: 0
}

.cta-small {
  border-radius: 8px;
  padding: 11px 18px
}

.hero {
  min-height: auto;
  padding: 168px 0 92px;
  background: linear-gradient(135deg, #fbfdf9 0%, #f3faf6 50%, #eef6fb 100%);
}

.hero:before {
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .84) 46%, rgba(255, 255, 255, .34) 100%)
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 52px
}

.hero-grid>* {
  min-width: 0
}

.mobile-break {
  display: none
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65
}

.hero-copy {
  font-size: 15px;
  line-height: 1.9;
  max-width: 720px
}

.btn {
  border-radius: 8px;
  min-height: 52px;
  padding: 0 24px
}

.hero-card {
  border-radius: 24px;
  padding: 28px
}

.hero-logo {
  border-radius: 16px;
  padding: 24px
}

.stat {
  border-radius: 14px;
  padding: 18px 14px
}

.section {
  padding: 96px 0
}

.section-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px
}

.section-title h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: 0;
  line-height: 1.32
}

.section-text {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 0
}

.about-grid {
  gap: 52px
}

.about-image {
  border-radius: 22px;
}

.message-box,
.card,
.strength,
.model-node,
.mini,
.flow-item,
.company-table,
.form,
.contact-panel,
.compare-shell,
.revenue-shell {
  border-radius: 18px
}

.card {
  padding: 26px;
  min-height: 100%
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 23px;
  filter: saturate(.85);
}

.cards {
  gap: 20px
}

.strength {
  grid-template-columns: 56px 1fr;
  gap: 16px
}

.flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px
}

.flow-item {
  padding: 24px 18px
}

.company-card {
  border-radius: 18px
}

.company-card img {
  border-radius: 12px
}

.contact-list a,
.contact-list div {
  min-width: 0
}

#contact .contact-list strong+span {
  overflow-wrap: anywhere
}

.footer-brand img {
  border-radius: 10px
}

.reveal {
  opacity: 1 !important;
  transform: none !important
}

.prose {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95
}

.prose p {
  margin: 0
}

.signature {
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-align: right;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 1.2em;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px
}

.info-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75
}

.info-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  transform: translateY(-50%)
}

#battery-guide .highlight-box {
  position: relative;
  max-width: none;
  margin: 0 0 38px;
  padding: 28px 32px 28px 104px;
  border: 1px solid rgba(34, 111, 72, .14);
  border-left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 250, 248, .96));
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(8, 62, 43, .07);
  overflow: hidden
}

#battery-guide .highlight-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--green), var(--blue), var(--gold))
}

#battery-guide .highlight-box:after {
  content: "POINT";
  position: absolute;
  left: 28px;
  top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 12px 26px rgba(12, 74, 130, .18)
}

#battery-guide .highlight-box strong {
  display: block;
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--green-deep);
  letter-spacing: .02em
}

#battery-guide .highlight-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  color: #52695f
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px
}

.panel {
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(8, 62, 43, .05)
}

.panel h3 {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 20px;
  line-height: 1.45
}

.faq-list {
  display: grid;
  gap: 14px
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(34, 111, 72, .12);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(8, 62, 43, .04)
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 17px;
  line-height: 1.55
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8
}

.about-content .message-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.tel-link,
.cta-small,
.btn-primary,
.submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tel-link:after,
.cta-small:after,
.btn-primary:after,
.submit:after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, .12) 42%, rgba(255, 255, 255, .72) 50%, rgba(255, 255, 255, .14) 58%, transparent 68%);
  transform: translateX(-82%) skewX(-18deg);
  animation: button-shine 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.tel-link:after {
  animation-delay: .2s
}

.btn-primary:after {
  animation-delay: .45s
}

.submit:after {
  animation-delay: .9s
}

.tel-link:hover:after,
.cta-small:hover:after,
.btn-primary:hover:after,
.submit:hover:after {
  animation-duration: 2.3s;
}

@keyframes button-shine {

  0%,
  58% {
    transform: translateX(-82%) skewX(-18deg)
  }

  76%,
  100% {
    transform: translateX(82%) skewX(-18deg)
  }
}

@media (prefers-reduced-motion:reduce) {

  .tel-link:after,
  .cta-small:after,
  .btn-primary:after,
  .submit:after {
    animation: none;
    opacity: 0
  }
}

@media (min-width:1081px) and (max-width:1240px) {
  .brand-text {
    display: none
  }

  .global-nav {
    gap: 16px
  }

  .header-actions {
    gap: 10px
  }

  .tel-link {
    font-size: 12px
  }

  .brand img {
    width: 202px
  }

  .header-inner {
    height: 78px
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
    gap: 36px
  }

  .hero h1 {
    font-size: clamp(40px, 4.5vw, 56px)
  }

  .flow {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (max-width:1080px) {
  .container {
    width: min(var(--max), calc(100% - 48px))
  }

  .header-top {
    min-height: 30px;
    font-size: 12px
  }

  .header-inner {
    height: 78px
  }

  .brand img {
    width: 202px
  }



  .hero {
    padding: 150px 0 74px;
    background: linear-gradient(180deg, #fbfdf9 0%, #f4faf6 48%, #eef6fb 100%);
  }

  .hero:before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 48%, rgba(255, 255, 255, .72) 100%)
  }

  .hero-bg {
    inset: 44% 0 0 0;
    opacity: .28
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .hero h1 {
    font-size: clamp(40px, 8vw, 58px);
    max-width: 780px
  }

  .hero-card {
    max-width: 620px
  }

  .section {
    padding: 84px 0
  }

  .section-head {
    margin-bottom: 34px
  }

  .about-image {
    min-height: 480px
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .flow {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .company-card {
    top: auto
  }

  .compare-image-box img {
    max-height: 240px;
    object-fit: contain;
    margin-inline: auto
  }
}

@media (max-width:720px) {
  .container {
    width: min(100% - 32px, var(--max))
  }

  body {
    font-size: 15px;
    line-height: 1.85
  }

  .site-header {
    position: sticky;
    top: 0
  }

  .header-top {
    min-height: 28px;
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: .02em
  }

  .header-inner {
    height: 68px;
    gap: 12px
  }

  .brand img {
    width: 172px
  }

  .menu-button {
    width: 44px;
    height: 44px;
    border-radius: 10px
  }



  .hero {
    padding: 46px 0 56px
  }

  .hero-bg {
    inset: auto 0 0 0;
    height: 42%;
    opacity: .2
  }

  .eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: .12em;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .eyebrow:before {
    width: 32px;
    flex: 0 0 32px
  }

  .hero h1 {
    font-size: clamp(27px, 7.8vw, 32px);
    line-height: 1.24;
    margin-bottom: 18px;
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero h1 br {
    display: block
  }

  .mobile-break {
    display: block
  }

  .hero h1 span {
    display: block
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.7;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 26px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-buttons {
    gap: 12px
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 50px;
    font-size: 14px
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    border-radius: 18px;
    overflow: hidden
  }

  .hero-logo {
    padding: 18px;
    border-radius: 12px
  }

  .hero-logo img {
    width: min(100%, 260px);
    height: auto;
    object-fit: contain;
    margin-inline: auto
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px
  }

  .stat {
    padding: 16px
  }

  .stat strong {
    font-size: 24px
  }

  .section {
    padding: 64px 0
  }

  .section-head {
    margin-bottom: 28px
  }

  .section-title h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  .section-text {
    font-size: 14px
  }

  .about-grid,
  .contact-wrap,
  .company-grid {
    gap: 28px
  }

  .about-image {
    min-height: 280px;
    border-radius: 16px
  }

  .about-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 12px;
    padding: 16px
  }

  .message-box,
  .card,
  .strength,
  .model-node,
  .mini,
  .flow-item,
  .company-card,
  .form,
  .compare-shell,
  .revenue-shell {
    border-radius: 14px
  }

  .message-box,
  .card,
  .company-card,
  .form {
    padding: 22px
  }

  .message-box strong {
    font-size: 19px
  }

  .cards,
  .strength-list,
  .model-plus,
  .flow,
  .form-grid,
  .buyer-grid,
  .split-panel {
    grid-template-columns: 1fr
  }

  .card h3,
  .buyer-item h3 {
    font-size: 18px
  }

  .strength {
    grid-template-columns: 1fr;
    padding: 22px
  }

  .model-node {
    min-height: auto;
    padding: 24px 18px
  }

  .model-arrow {
    font-size: 26px
  }

  .flow-item {
    padding: 22px
  }

  .flow-item:before {
    width: 42px;
    height: 42px;
    border-radius: 12px
  }

  .area-tags {
    gap: 10px
  }

  .area-tags span {
    width: 100%;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 12px 14px
  }

  .company-table {
    border-radius: 14px
  }

  .company-table th,
  .company-table td {
    padding: 15px 18px
  }

  .company-table td {
    overflow-wrap: anywhere
  }

  #contact .contact-panel h2 {
    font-size: clamp(28px, 8vw, 36px)
  }

  #contact .contact-list a,
  #contact .contact-list>div {
    grid-template-columns: 90px 1fr !important;
    padding: 16px 0 !important
  }

  #contact .contact-list strong+span {
    font-size: 15px !important
  }

  .field input,
  .field select,
  .field textarea {
    border-radius: 10px;
    font-size: 16px
  }

  .submit {
    border-radius: 8px
  }

  .footer-brand img {
    width: 150px
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px
  }
}

@media (max-width:390px) {
  .container {
    width: min(100% - 28px, var(--max))
  }

  .brand img {
    width: 156px
  }

  .header-top {
    font-size: 10px
  }

  .hero h1 {
    font-size: 27px
  }

  .hero-lead {
    font-size: 15px
  }

  .revenue-card-head {
    gap: 10px !important
  }

  .revenue-card-head h3 {
    font-size: 17px !important
  }

  .revenue-number {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
    font-size: 17px !important
  }
}

@media (min-width:1081px) {
  :root {
    --max: 1120px;
    --shadow: 0 18px 48px rgba(8, 62, 43, .10)
  }

  body {
    font-size: 15px;
    line-height: 1.85;
    color: #172a22;
    background: #fff
  }

  .container {
    width: min(var(--max), calc(100% - 96px))
  }

  .site-header {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(8, 62, 43, .04)
  }

  .header-top {
    min-height: 26px;
    padding: 4px 16px;
    font-size: 12px;
    letter-spacing: .03em
  }

  .header-inner {
    height: 76px
  }

  .brand img {
    width: 230px
  }

  .global-nav {
    gap: 24px
  }

  .global-nav a {
    font-size: 13px;
    font-weight: 800;
    color: #243b32
  }

  .tel-link {
    font-size: 12px
  }

  .cta-small {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 12px;
    box-shadow: none
  }

  .hero {
    padding: 142px 0 88px;
    min-height: 720px;
    background: linear-gradient(135deg, #fbfdf9 0%, #f3faf6 52%, #edf5fb 100%)
  }

  .hero:before {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .88) 48%, rgba(255, 255, 255, .44) 100%)
  }

  .hero-bg {
    inset: 0 0 0 49%;
    opacity: .78;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%)
  }

  .hero-grid {
    grid-template-columns: minmax(0, 600px) minmax(340px, 390px);
    gap: 72px;
    align-items: center
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
    margin-bottom: 18px
  }

  .eyebrow:before {
    width: 36px
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(40px, 3.2vw, 46px);
    line-height: 1.36;
    margin-bottom: 24px;
    letter-spacing: .01em
  }

  .hero h1 span br {
    display: block
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 16px
  }

  .hero-copy {
    max-width: 610px;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 32px;
    color: #3f584e
  }

  .btn {
    min-height: 48px;
    padding: 0 22px;
    font-size: 13px;
    border-radius: 6px
  }

  .hero-card {
    align-self: center;
    border-radius: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 44px rgba(8, 62, 43, .12)
  }

  .hero-logo {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 18px
  }

  .hero-card p {
    font-size: 13px;
    line-height: 1.85
  }

  .stats {
    gap: 12px;
    margin-top: 20px
  }

  .stat {
    border-radius: 10px;
    padding: 15px 10px
  }

  .stat strong {
    font-size: 23px
  }

  .section {
    padding: 86px 0
  }

  .section-soft {
    background: #f7fbf8
  }

  .section-head {
    gap: 14px;
    margin-bottom: 32px
  }

  .section-title {
    max-width: 760px
  }

  .section-title h2 {
    font-size: clamp(29px, 2.5vw, 36px);
    line-height: 1.44
  }

  .section-title h2 span {
    color: var(--green)
  }

  .section-text {
    max-width: 700px;
    font-size: 14px;
    line-height: 1.9;
    color: #596d64
  }

  .about-grid {
    grid-template-columns: minmax(0, 500px) minmax(0, 520px);
    gap: 76px;
    align-items: center
  }

  .about-content .section-title h2 {
    font-size: clamp(30px, 2.5vw, 36px);
    line-height: 1.5
  }

  .message-box strong {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 14px
  }

  .prose {
    gap: 14px;
    font-size: 13.5px;
    line-height: 1.95;
    color: #5b6d65
  }

  .compare-shell,
  .revenue-shell {
    border-radius: 0px;
    padding: 0px;
  }

  .compare-heading h2,
  .revenue-heading h2 {
    font-size: clamp(30px, 2.6vw, 36px) !important;
    line-height: 1.35 !important;
    letter-spacing: .02em !important
  }

  .compare-heading p,
  .revenue-heading p {
    font-size: 15px !important;
    line-height: 1.8 !important
  }

  .compare-divider,
  .revenue-divider {
    width: 56px !important;
    height: 3px !important;
    margin-top: 16px !important
  }



  #battery-guide .compare-shell {
    padding: 50px 46px 44px !important
  }

  #battery-guide .compare-heading {
    margin-bottom: 34px
  }

  #battery-guide .prose {
    max-width: none;
    margin: 0 0 34px;
    gap: 18px;
    font-size: 14px;
    line-height: 2;
    color: #62746c
  }

  #battery-guide .highlight-box {
    position: relative;
    max-width: none;
    margin: 0 0 38px;
    padding: 28px 32px 28px 104px;
    border: 1px solid rgba(34, 111, 72, .14);
    border-left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 250, 248, .96));
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(8, 62, 43, .07);
    overflow: hidden
  }

  #battery-guide .highlight-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--green), var(--blue), var(--gold))
  }

  #battery-guide .highlight-box:after {
    content: "POINT";
    position: absolute;
    left: 28px;
    top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: 0 12px 26px rgba(12, 74, 130, .18)
  }

  #battery-guide .highlight-box strong {
    display: block;
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.55;
    color: var(--green-deep);
    letter-spacing: .02em
  }

  #battery-guide .highlight-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.95;
    color: #52695f
  }

  .compare-grid {
    gap: 28px;
    margin-top: 0
  }

  .compare-card,
  .revenue-card,
  .card,
  .panel,
  .mini,
  .model-node,
  .flow-item,
  .faq-item {
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(8, 62, 43, .055)
  }

  .compare-card {
    background: #fbfcfd;
    border-color: #e4ece8;
    overflow: hidden
  }

  .compare-grid:before {
    display: none
  }

  .compare-card-head {
    padding: 22px 26px
  }

  .compare-card-head--green {
    background: #2f7b48
  }

  .compare-card-head--blue {
    background: #24579f
  }

  .compare-card-head h3 {
    font-size: 22px
  }

  .compare-pill {
    min-height: 38px;
    padding: 7px 16px;
    font-size: 12px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, .72)
  }

  .compare-card-body {
    padding: 30px 28px 28px;
    gap: 26px;
    grid-template-rows: 280px 1fr 64px
  }

  .compare-image-box {
    min-height: 260px;
    padding: 22px 0;
    background: #f6f9f8;
    border: 1px solid #e7efeb;
    border-radius: 10px
  }

  .compare-image-box2 {
    min-height: 260px;
    padding: 22px 0;
    background: #f6f7f9;
    border: 1px solid #e7efeb;
    border-radius: 10px
  }

  .compare-feature-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px
  }

  .compare-feature-icon:before {
    left: 12px;
    top: 10px;
    width: 17px;
    height: 21px;
    border-width: 2px
  }

  .compare-feature-icon:after {
    left: 16px;
    top: 17px;
    width: 9px;
    box-shadow: 0 5px 0 #fff, 0 10px 0 #fff
  }

  .compare-feature-head strong {
    font-size: 18px
  }

  .compare-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    border-width: 2px;
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 8px
  }

  .compare-list li,
  .info-list li {
    font-size: 13.5px;
    line-height: 1.75
  }

  .revenue-hub img {
    width: min(260px, 24vw) !important
  }

  .revenue-card-grid {
    gap: 20px !important
  }

  .revenue-card-head h3 {
    font-size: 18px !important
  }

  .revenue-card-body {
    padding: 16px 16px 18px !important
  }

  .revenue-bottom-note {
    border-radius: 10px !important
  }

  .split-panel {
    gap: 22px
  }

  .panel {
    padding: 24px
  }

  .panel h3,
  .card h3 {
    font-size: 18px;
    line-height: 1.55
  }

  .card {
    padding: 24px
  }

  .card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    font-size: 21px
  }

  .card p,
  .guide-box p,
  .earning-item p,
  .buyer-item p {
    font-size: 13.5px;
    line-height: 1.85
  }

  .buyer-grid {
    gap: 12px 36px
  }

  .buyer-item {
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(8, 62, 43, 0.04);
  }

  .strength-list {
    gap: 16px
  }

  .strength {
    border-radius: 12px;
    padding: 22px;
    grid-template-columns: 48px 1fr
  }

  .flow {
    gap: 14px
  }

  .flow-item {
    padding: 22px 16px
  }

  .flow-item:before {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    margin-bottom: 14px
  }

  .flow-item h3 {
    font-size: 15px
  }

  .flow-item p {
    font-size: 12.5px;
    line-height: 1.75
  }

  .area-tags span {
    border-radius: 8px;
    padding: 11px 16px;
    font-size: 13px
  }

  .company-card {
    border-radius: 14px;
    padding: 28px;
    top: 116px
  }

  .company-card img {
    margin-bottom: 20px
  }

  .company-table {
    border-radius: 12px
  }

  .company-table th,
  .company-table td {
    padding: 17px 20px
  }

  #contact .contact-panel h2 {
    font-size: clamp(34px, 3.5vw, 48px)
  }

  #contact .contact-wrap {
    gap: 58px
  }

  #contact .form {
    border-radius: 16px;
    padding: 30px
  }

  .field input,
  .field select,
  .field textarea {
    border-radius: 8px
  }

  .submit {
    border-radius: 6px
  }
}

@media (min-width:1081px) {
  .hero-bg {
    inset: 0 0 0 52%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%)
  }

  .hero-grid {
    grid-template-columns: minmax(0, 520px) minmax(340px, 390px);
    gap: 96px
  }

  .hero h1 {
    max-width: 500px;
    margin-top: 0
  }

  .hero-lead {
    max-width: 500px
  }

  .hero-copy {
    max-width: 500px
  }
}

@media (min-width:1081px) and (max-width:1240px) {
  .hero-bg {
    inset: 0 0 0 55%;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%)
  }

  .hero-grid {
    grid-template-columns: minmax(0, 470px) minmax(320px, 360px);
    gap: 70px
  }

  .hero h1 {
    max-width: 470px;
    font-size: clamp(36px, 3.4vw, 42px)
  }

  .hero-lead,
  .hero-copy {
    max-width: 460px
  }
}

@media (max-width:1080px) {
  .hero-bg {
    clip-path: none
  }

  .hero h1,
  .hero-lead,
  .hero-copy {
    max-width: 680px
  }
}

@media (max-width:720px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0 0 54px;
    background: #f7fbf8;
  }

  .hero:before {
    display: none
  }

  .hero-bg {
    position: relative;
    inset: auto;
    order: 0;
    width: 100%;
    height: 260px;
    opacity: 1;
    clip-path: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .36) 58%, #f7fbf8 100%),
      url("brand-building.jpg") center top/cover no-repeat;
  }

  .hero .container {
    order: 1;
    z-index: 2;
    margin-top: -34px
  }

  .hero-grid {
    display: block
  }

  .hero-grid>div:first-child {
    background: #fff;
    padding: 24px 20px 22px;
  }

  .hero h1 {
    font-size: clamp(30px, 9.2vw, 38px);
    line-height: 1.28;
    letter-spacing: .01em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-copy {
    word-break: normal;
    overflow-wrap: break-word
  }

  .hero-card {
    margin-top: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(8, 62, 43, .08);
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .stat {
    padding: 13px 8px
  }

  .stat strong {
    font-size: 20px
  }

  .stat span {
    font-size: 10px
  }
}

@media (max-width:390px) {
  .hero-bg {
    height: 230px
  }

  .hero .container {
    margin-top: -28px
  }

  .hero-grid>div:first-child {
    padding: 22px 18px 20px
  }

  .hero h1 {
    font-size: 29px
  }
}

@media (max-width:880px) {
  .compare-card-body {
    grid-template-rows: auto
  }

  .compare-summary {
    min-height: 56px
  }
}

.compare-heading,
.revenue-heading {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.compare-heading .eyebrow,
.revenue-heading .eyebrow {
  margin-bottom: 18px;
}

.compare-heading h2,
.revenue-heading h2 {
  font-family: "Zen Old Mincho", serif !important;
  font-size: clamp(30px, 2.5vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  color: var(--green-deep) !important;
}

.compare-heading h2 span,
.revenue-heading h2 span {
  color: var(--green);
}

.compare-heading p,
.revenue-heading p {
  max-width: none;
  margin-top: 18px !important;
  font-family: "Zen Old Mincho", serif !important;
  color: var(--green-deep) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
}

.compare-divider,
.revenue-divider {
  display: none !important;
}

#battery-guide .compare-heading {
  margin-bottom: 36px;
}

.revenue-heading {
  margin-bottom: 28px !important;
}

@media (max-width:720px) {

  .compare-heading h2,
  .revenue-heading h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
  }

  .compare-heading p,
  .revenue-heading p {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }
}

.site-footer {
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--blue)) !important;
}

.site-footer .copyright {
  border-top-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .62);
}

.site-footer .footer-nav a {
  color: rgba(255, 255, 255, .82);
}

.hero:before {
  background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 44%, rgba(255, 255, 255, 0) 52%) !important;
}

.hero-bg {
  opacity: 1 !important;
  background: url("brand-building.jpg") center/cover no-repeat !important;
}

.header-actions {
  gap: 12px !important;
}

.tel-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffdf00 0%, #ffaa00 100%);
  box-shadow: 0 10px 26px rgba(12, 74, 130, .10);
  color: var(--blue) !important;
  font-size: 15px !important;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.tel-link>span:last-child {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.tel-link small {
  display: none;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  line-height: 1;
  box-shadow: none;
}

.header-icon svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tel-link .header-icon svg {
  fill: none;
  stroke: currentColor;
}

.cta-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px !important;
  padding: 6px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #0b6f47 0%, #0c4a82 100%) !important;
  box-shadow: 0 12px 30px rgba(12, 74, 130, .20) !important;
  font-size: 15px !important;
  font-weight: bold;
  line-height: 1 !important;
  letter-spacing: .02em;
}

.cta-small .header-icon {
  background: transparent;
  box-shadow: none;
  width: 25px;
  height: 25px;
  flex-basis: 25px;
}

.cta-small span {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 3px 6px 3px 10px;
  border: 1px solid rgba(34, 111, 72, .18);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, rgba(246, 250, 248, .92));
  box-shadow: 0 8px 22px rgba(8, 62, 43, .07);
  color: var(--green-dark);
}

.language-switcher span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}

.language-switcher select {
  height: 26px;
  min-width: 76px;
  border: 0;
  border-left: 1px solid rgba(34, 111, 72, .18);
  padding: 0 0 0 8px;
  background: transparent;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  outline: 0;
  cursor: pointer;
}

.header-top {
  position: relative;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
  padding-left: max(24px, calc((100% - var(--max))/2)) !important;
  padding-right: max(180px, calc((100% - var(--max))/2 + 150px)) !important;
}

.language-menu {
  position: absolute;
  right: max(24px, calc((100% - var(--max))/2)) !important;
  top: 50%;
  z-index: 80;
  transform: translateY(-50%);
}

.language-menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 0;
  padding: 2px 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: #fff;
  cursor: pointer;
  box-shadow: none !important;
}

.language-menu summary::-webkit-details-marker {
  display: none
}

.language-menu svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-menu span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.language-menu strong {
  padding-left: 0;
  border-left: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.language-chevron {
  width: 13px !important;
  height: 13px !important;
  opacity: .82;
  transition: transform .2s ease;
}

.language-menu[open] .language-chevron {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 156px;
  padding: 6px;
  border: 1px solid rgba(34, 111, 72, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 36px rgba(8, 62, 43, .16);
}

.language-options a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.language-options a:hover,
.language-options a[aria-current="true"] {
  background: #eef7f2;
  color: var(--green);
}

.header-top .language-switcher {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 24px;
  padding: 2px 6px 2px 8px;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
  color: #fff;
}

.header-top .language-switcher span {
  color: rgba(255, 255, 255, .82);
  font-size: 8px;
}

.header-top .language-switcher select {
  height: 20px;
  min-width: 64px;
  border-left-color: rgba(255, 255, 255, .28);
  color: #fff;
  font-size: 10px;
}

.header-top .language-switcher select option {
  color: var(--green-deep);
}

@media (min-width:1081px) and (max-width:1240px) {
  .tel-link {
    font-size: 14px !important
  }

  .language-switcher span {
    display: none
  }

  .language-switcher {
    padding-left: 8px
  }

  .language-switcher select {
    min-width: 82px;
    border-left: 0
  }
}

@media (max-width:1080px) {
  .tel-link {
    display: none !important
  }

  .language-switcher {
    display: inline-flex
  }

  .language-switcher span {
    display: none
  }

  .language-switcher select {
    min-width: 86px;
    border-left: 0;
    padding-left: 6px;
  }

  .header-top .language-switcher select {
    height: 20px;
    min-width: 64px;
    padding-left: 4px;
  }

  .language-menu span {
    display: none
  }

  .language-menu strong {
    padding-left: 6px;
    font-size: 11px;
  }
}

@media (max-width:720px) {
  .cta-small {
    display: none !important
  }

  .header-top {
    justify-content: flex-start;
    padding-left: 16px !important;
    padding-right: 122px !important;
  }

  .language-switcher {
    min-height: 36px;
    padding: 4px 6px;
    border-radius: 10px;
    box-shadow: none;
  }

  .language-switcher select {
    height: 28px;
    min-width: 74px;
    font-size: 11px;
  }

  .header-top .language-switcher {
    right: 8px;
    min-height: 22px;
    padding: 1px 5px;
    border-radius: 999px;
  }

  .header-top .language-switcher select {
    height: 20px;
    min-width: 58px;
    font-size: 10px;
  }

  .language-menu {
    right: 16px !important;
  }

  .language-menu summary {
    min-height: 0;
    gap: 6px;
    padding: 2px 0;
  }

  .language-menu svg {
    width: 13px;
    height: 13px;
  }

  .language-options {
    min-width: 132px;
  }
}

.service-card {
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
  border-radius: 24px !important;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid rgba(34, 111, 72, .1) !important;
  box-shadow: 0 18px 52px rgba(8, 62, 43, .08) !important;
}

.service-card:before {
  display: none !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(8, 62, 43, .13) !important;
}

.service-card-media {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: linear-gradient(135deg, #edf6f1, #eef5fb);
}

.service-card-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 41, 30, 0) 45%, rgba(6, 41, 30, .22) 100%);
  pointer-events: none;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}



.service-card:hover .service-card-media img {
  transform: scale(1.035);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 28px 30px;
}

.service-card small {
  display: inline-flex !important;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 0 11px;
  margin: 0 0 14px !important;
  border-radius: 999px;
  background: #eef7f2;
  color: var(--green) !important;
  font-size: 12px !important;
  letter-spacing: .16em !important;
}

.service-card h3 {
  margin: 0 0 13px !important;
  font-size: clamp(19px, 1.55vw, 23px) !important;
  line-height: 1.45 !important;
}

.service-card p {
  margin: 0 !important;
  color: #66766f !important;
  font-size: 14.5px !important;
  line-height: 1.85 !important;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, .24) !important;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .48) !important;
  box-shadow:
    0 18px 52px rgba(2, 6, 23, .16),
    inset 0 0 90px rgba(255, 255, 255, .18),
    inset 0 0 4px 1px rgba(255, 255, 255, .22) !important;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .5), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .08));
  pointer-events: none;
}

.hero-card>* {
  position: relative;
  z-index: 1;
}

.hero-card .hero-logo {
  background: rgba(255, 255, 255, .74) !important;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border-color: rgba(255, 255, 255, .56) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .54);
}

#contact .form {
  position: relative;
  overflow: hidden;
  color: #fff !important;
  border-radius: 24px !important;
  background: rgba(30, 41, 59, .18) !important;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow:
    0 24px 70px rgba(2, 6, 23, .28),
    inset 0 0 120px rgba(12, 74, 130, .18),
    inset 0 0 4px 2px rgba(255, 255, 255, .08) !important;
}

#contact .form:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, .18), transparent 24%),
    radial-gradient(circle at 86% 90%, rgba(255, 170, 0, .12), transparent 28%);
  pointer-events: none;
}

#contact .form>* {
  position: relative;
  z-index: 1;
}

#contact .field label {
  color: rgba(255, 255, 255, .88) !important;
}

#contact .field input,
#contact .field select,
#contact .field textarea {
  color: #fff !important;
  background: rgba(255, 255, 255, .1) !important;
  border-color: rgba(255, 255, 255, .2) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

#contact .field input::placeholder,
#contact .field textarea::placeholder {
  color: rgba(255, 255, 255, .48) !important;
}

#contact .field input:focus,
#contact .field select:focus,
#contact .field textarea:focus {
  border-color: rgba(255, 255, 255, .44) !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .11) !important;
}

#contact .field select option {
  color: var(--green-deep);
}

#contact .form-note {
  color: rgba(255, 255, 255, .62) !important;
}

#contact .submit {
  background: rgba(255, 255, 255, .13) !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .18) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#contact .submit:hover {
  background: rgba(255, 255, 255, .2) !important;
}

@media (max-width:1080px) {
  .service-card-media {
    height: 210px;
  }
}

@media (min-width:721px) and (max-width:1080px) {



  .container {
    width: min(900px, calc(100% - 56px)) !important;
  }

  .header-inner {
    height: 76px;
  }

  .brand img {
    width: 184px;
  }

  .hero {
    min-height: auto !important;
    padding: 130px 0 72px !important;
    background: #f6faf8 !important;
  }

  .hero:before {
    display: block !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, .38) 48%, #f6faf8 100%) !important;
  }

  .hero-bg {
    position: absolute !important;
    inset: 108px 0 auto 0 !important;
    height: 360px !important;
    opacity: 1 !important;
    clip-path: none !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, .34) 62%, #f6faf8 100%),
      url("brand-building.jpg") center top/cover no-repeat !important;
  }

  .hero .container {
    margin-top: 210px;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .hero-grid>div:first-child {
    max-width: 760px;
    padding: 34px 34px 32px;
    border: 1px solid rgba(34, 111, 72, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(8, 62, 43, .11);
  }

  .hero h1 {
    max-width: 640px !important;
    font-size: clamp(38px, 6vw, 54px) !important;
    line-height: 1.24 !important;
  }

  .hero-lead,
  .hero-copy {
    max-width: 680px !important;
  }

  .hero-card {
    width: min(760px, 100%);
    max-width: none !important;
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 20px 24px;
    align-items: center;
    padding: 24px !important;
    margin-top: 0;
  }

  .hero-card .hero-logo {
    margin: 0;
  }

  .hero-card p {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }

  .hero-card .stats {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  .service-card {
    min-height: 100%;
  }

  .service-card-media {
    height: 220px !important;
  }

  .section-head {
    max-width: 820px;
  }

  #contact {
    padding-top: 86px;
    padding-bottom: 88px;
  }

  #contact .contact-wrap {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  #contact .contact-panel {
    max-width: 780px;
  }

  #contact .contact-panel h2 {
    max-width: 620px;
  }

  #contact .contact-panel p {
    max-width: 760px !important;
  }

  #contact .form {
    max-width: 820px;
    width: 100%;
    padding: 32px !important;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .company-grid {
    grid-template-columns: 1fr !important;
  }

  .company-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: center;
  }

  .company-card img {
    margin: 0 !important;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width:720px) {
  .service-card {
    border-radius: 18px !important;
  }

  .service-card-media {
    height: 180px;
  }

  .service-card-content {
    padding: 22px 20px 24px;
  }

  .hero-card {
    border-radius: 18px !important;
  }

  #contact .form {
    border-radius: 20px !important;
  }
}

@media (max-width:720px) {
  body {
    font-size: 14.5px !important;
    line-height: 1.82 !important;
    letter-spacing: 0 !important;
  }

  #battery-guide .highlight-box {
    margin-top: 2em !important;
  }

  .container {
    width: min(100% - 40px, var(--max)) !important;
  }

  .header-top {
    min-height: 32px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
  }

  .header-top-text {
    max-width: calc(100vw - 140px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-menu summary {
    gap: 5px !important;
  }

  .language-menu strong {
    font-size: 11px !important;
    padding-left: 0 !important;
  }

  .language-chevron {
    width: 12px !important;
    height: 12px !important;
  }

  .header-inner {
    height: 66px !important;
  }

  .brand img {
    width: 154px !important;
  }

  .menu-button {
    width: 42px !important;
    height: 42px !important;
  }





  .hero {
    padding-bottom: 48px !important;
  }

  .hero-bg {
    height: 248px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, .30) 56%, #f7fbf8 100%),
      url("brand-building.jpg") center top/cover no-repeat !important;
  }

  .hero .container {
    margin-top: -30px !important;
  }

  .hero-grid>div:first-child {
    padding: 24px 19px 21px !important;
  }

  .hero h1 {
    font-size: clamp(30px, 8.7vw, 36px) !important;
    line-height: 1.32 !important;
    margin-bottom: 16px !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    letter-spacing: 0 !important;
  }

  .hero-lead {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    margin-bottom: 12px !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .hero-copy {
    font-size: 13.5px !important;
    line-height: 1.9 !important;
    margin-bottom: 24px !important;
    color: #4f655c !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .hero-buttons {
    gap: 10px !important;
  }

  .hero-buttons .btn {
    min-height: 48px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .hero-card {
    margin-top: 16px !important;
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .hero-logo {
    padding: 15px !important;
  }

  .hero-card p {
    font-size: 12.8px !important;
    line-height: 1.75 !important;
  }

  .stats {
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .stat {
    padding: 11px 6px !important;
    border-radius: 12px !important;
  }

  .stat strong {
    font-size: 19px !important;
  }

  .stat span {
    font-size: 9px !important;
    margin-top: 5px !important;
  }

  .section {
    padding: 58px 0 !important;
  }

  .section-head {
    margin-bottom: 24px !important;
    gap: 12px !important;
  }

  .eyebrow {
    font-size: 10px !important;
    line-height: 1.4 !important;
    letter-spacing: .12em !important;
    margin-bottom: 12px !important;
  }

  .eyebrow:before {
    width: 30px !important;
    flex-basis: 30px !important;
  }

  .section-title h2,
  .compare-heading h2,
  .revenue-heading h2 {
    font-size: clamp(25px, 7.1vw, 32px) !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .section-text,
  .compare-heading p,
  .revenue-heading p {
    font-size: 13.8px !important;
    line-height: 1.82 !important;
    margin-top: 10px !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }



  .message-box strong {
    font-size: 18px !important;
    line-height: 1.75 !important;
  }

  .prose p,
  .panel p,
  .buyer-item p,
  .faq-item p,
  .mini p,
  .strength p,
  .flow-item p {
    font-size: 13.6px !important;
    line-height: 1.85 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }


  .compare-card,
  .revenue-card {
    border-radius: 18px !important;
  }

  .compare-card-head {
    padding: 17px 18px !important;
    gap: 10px !important;
  }

  .compare-card-head h3 {
    font-size: 22px !important;
  }

  .compare-pill {
    min-height: 34px !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
  }

  .compare-card-body {
    padding: 17px 15px 18px !important;
  }

  .compare-list li,
  .revenue-list li,
  .info-list li {
    font-size: 13.4px !important;
    line-height: 1.75 !important;
    overflow-wrap: break-word !important;
    margin-left: 1.2em;
  }

  .compare-summary,
  .revenue-summary {
    min-height: 0 !important;
    padding: 12px 13px !important;
    border-radius: 12px !important;
    font-size: 14.5px !important;
  }

  .revenue-card-head {
    padding: 15px !important;
    gap: 10px !important;
  }

  .revenue-card-head h3 {
    font-size: 18px !important;
  }

  .revenue-number {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
    font-size: 18px !important;
  }

  .revenue-card-body {
    padding: 16px 15px 18px !important;
  }

  .revenue-bottom-note {
    border-radius: 14px !important;
    padding: 14px !important;
  }

  .revenue-bottom-note strong {
    font-size: 13.8px !important;
  }

  .service-card {
    border-radius: 18px !important;
  }

  .service-card-media {
    height: 164px !important;
  }



  .service-card-content {
    padding: 20px 18px 22px !important;
  }

  .service-card small {
    min-height: 24px !important;
    margin-bottom: 12px !important;
    font-size: 11px !important;
  }

  .service-card h3,
  .buyer-item h3,
  .panel h3,
  .faq-item h3,
  .flow-item h3,
  .mini strong,
  .strength h3 {
    font-size: 18px !important;
    line-height: 1.55 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .service-card p {
    font-size: 13.6px !important;
    line-height: 1.82 !important;
  }

  .panel,
  .buyer-item,
  .faq-item,
  .strength,
  .model-node,
  .mini {
    padding: 20px 18px !important;
    border-radius: 16px !important;
  }

  .strength-num {
    font-size: 24px !important;
  }

  .area-tags span {
    font-size: 13.5px !important;
    border-radius: 12px !important;
  }

  .company-card {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .company-card img {
    border-radius: 12px !important;
  }

  .company-card p {
    font-size: 13.5px !important;
    line-height: 1.8 !important;
  }

  .company-table {
    border-radius: 16px !important;
  }

  .company-table th,
  .company-table td {
    padding: 13px 16px !important;
    font-size: 13.5px !important;
  }

  #contact {
    padding-top: 56px !important;
    padding-bottom: 58px !important;
  }

  #contact .contact-wrap {
    gap: 30px !important;
  }

  #contact .contact-panel h2 {
    font-size: clamp(27px, 7.4vw, 34px) !important;
    line-height: 1.35 !important;
    margin-bottom: 16px !important;
  }

  #contact .contact-panel p {
    font-size: 13.6px !important;
    line-height: 1.85 !important;
    margin-bottom: 24px !important;
  }

  #contact .contact-list a,
  #contact .contact-list>div {
    grid-template-columns: 75px 1fr !important;
    gap: 7px 12px !important;
    padding: 14px 0 !important;
  }

  #contact .contact-list a>span,
  #contact .contact-list>div>span {
    font-size: 16px !important;
  }

  #contact .contact-list strong {
    font-size: 10px !important;
  }

  #contact .contact-list strong+span {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  #contact .form {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .field {
    margin-bottom: 14px !important;
    gap: 6px !important;
  }

  .field label {
    font-size: 12px !important;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 46px !important;
    border-radius: 12px !important;
    padding: 11px 12px !important;
    font-size: 16px !important;
  }

  .field textarea {
    min-height: 118px !important;
  }

  .submit {
    min-height: 50px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .form-note {
    font-size: 11.5px !important;
    line-height: 1.7 !important;
  }

  .footer-inner {
    gap: 22px !important;
  }

  .footer-brand img {
    width: 142px !important;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 16px !important;
  }

  .footer-nav a {
    font-size: 12.5px !important;
  }

  .copyright {
    font-size: 11px !important;
  }
}

@media (max-width:390px) {
  .container {
    width: min(100% - 26px, var(--max)) !important;
  }

  .brand img {
    width: 142px !important;
  }

  .hero-bg {
    height: 224px !important;
  }

  .hero h1 {
    font-size: 26px !important;
  }

  .section-title h2,
  .compare-heading h2,
  .revenue-heading h2 {
    font-size: 25px !important;
  }

  .stats {
    grid-template-columns: 1fr !important;
  }
}

.area-tags {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px !important;
}

.area-tags span {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 4px !important;
  min-height: 76px;
  padding: 16px 18px 16px 46px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 250, 248, .86)) !important;
  border: 1px solid rgba(34, 111, 72, .14) !important;
  box-shadow: 0 14px 34px rgba(8, 62, 43, .07);
  color: var(--green-deep) !important;
}

.area-tags span:before {
  left: 18px !important;
  top: 50% !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background: linear-gradient(135deg, var(--gold), #ffbe3d) !important;
  box-shadow: 0 0 0 6px rgba(255, 170, 0, .12);
}

.area-tags span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--blue));
  opacity: .78;
}

.area-tags small {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width:720px) {
  .area-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .area-tags span {
    width: auto !important;
    min-height: 68px !important;
    padding: 13px 12px 13px 34px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
  }

  .area-tags span:before {
    left: 13px !important;
    width: 9px !important;
    height: 9px !important;
    box-shadow: 0 0 0 5px rgba(255, 170, 0, .1);
  }

  .area-tags span:after {
    top: 12px;
    bottom: 12px;
    width: 2px;
  }

  .area-tags small {
    font-size: 8.5px !important;
    letter-spacing: .08em !important;
  }
}

html[lang="ko"] body,
html[lang="en"] body,
html[lang="zh-Hans"] body {
  word-break: keep-all;
  overflow-wrap: break-word
}

html[lang="ko"] .hero h1,
html[lang="en"] .hero h1,
html[lang="zh-Hans"] .hero h1 {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0
}

html[lang="ko"] .hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  max-width: 620px
}

html[lang="en"] .hero h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  max-width: 720px
}

html[lang="zh-Hans"] .hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  max-width: 660px
}

html[lang="ko"] .section-title h2,
html[lang="en"] .section-title h2,
html[lang="zh-Hans"] .section-title h2,
html[lang="ko"] .compare-heading h2,
html[lang="en"] .compare-heading h2,
html[lang="zh-Hans"] .compare-heading h2,
html[lang="ko"] .revenue-heading h2,
html[lang="en"] .revenue-heading h2,
html[lang="zh-Hans"] .revenue-heading h2 {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0
}

html[lang="en"] .global-nav {
  gap: 20px
}

html[lang="en"] .global-nav a,
html[lang="ko"] .global-nav a,
html[lang="zh-Hans"] .global-nav a {
  font-size: 12px
}

html[lang="ko"] .hero-copy,
html[lang="en"] .hero-copy,
html[lang="zh-Hans"] .hero-copy {
  max-width: 620px
}

@media (max-width:720px) {
  html[lang="ko"] .hero h1 {
    font-size: 32px;
    line-height: 1.24
  }

  html[lang="en"] .hero h1 {
    font-size: 32px;
    line-height: 1.18
  }

  html[lang="zh-Hans"] .hero h1 {
    font-size: 34px;
    line-height: 1.22
  }

  html[lang="ko"] .hero-lead,
  html[lang="en"] .hero-lead,
  html[lang="zh-Hans"] .hero-lead {
    font-size: 16px;
    line-height: 1.55
  }

  html[lang="ko"] .btn,
  html[lang="en"] .btn,
  html[lang="zh-Hans"] .btn {
    font-size: 14px
  }
}

.coverage-map {
  position: relative;
  min-height: 360px;
  margin: 6px 0 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(34, 111, 72, .12);
  box-shadow: 0 20px 56px rgba(8, 62, 43, .08);
  background: #eef3f0
}

.coverage-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover
}

@media (max-width:720px) {
  .coverage-map {
    min-height: 260px;
    margin: 0 0 20px;
    border-radius: 18px
  }

  .coverage-map img {
    min-height: 260px
  }

}

/* Mobile coverage map: show the full 1200x600 artwork without cropping */
@media (max-width:720px) {
  .coverage-map {
    min-height: 0 !important;
    aspect-ratio: 1200 / 600 !important;
    background: #eef3f0 !important;
  }

  .coverage-map img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

html[lang="ja"] body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

html[lang="ja"] .hero h1,
html[lang="ja"] .section-title h2,
html[lang="ja"] .message-box strong,
html[lang="ja"] .contact-panel h2 {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif
}

html[lang="ko"] body {
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

html[lang="ko"] .hero h1,
html[lang="ko"] .section-title h2,
html[lang="ko"] .message-box strong,
html[lang="ko"] .contact-panel h2,
html[lang="ko"] .compare-heading h2,
html[lang="ko"] .revenue-heading h2 {
  font-family: "Noto Serif KR", "Noto Sans KR", serif
}

html[lang="en"] body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

html[lang="en"] .hero h1,
html[lang="en"] .section-title h2,
html[lang="en"] .message-box strong,
html[lang="en"] .contact-panel h2,
html[lang="en"] .compare-heading h2,
html[lang="en"] .revenue-heading h2 {
  font-family: "Source Serif 4", Georgia, serif
}

html[lang="zh-Hans"] body {
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

html[lang="zh-Hans"] .hero h1,
html[lang="zh-Hans"] .section-title h2,
html[lang="zh-Hans"] .message-box strong,
html[lang="zh-Hans"] .contact-panel h2,
html[lang="zh-Hans"] .compare-heading h2,
html[lang="zh-Hans"] .revenue-heading h2 {
  font-family: "Noto Serif SC", "Noto Sans SC", serif
}

.notice-section {
  display: none;
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid rgba(34, 111, 72, .08);
  border-bottom: 1px solid rgba(34, 111, 72, .08);
}

.notice-section.is-visible {
  display: block;
}

.notice-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(34, 111, 72, .14);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f7fbf8);
  box-shadow: 0 14px 38px rgba(8, 62, 43, .06);
}

.notice-kicker {
  color: #226f48;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.notice-new {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffaa00;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.notice-title {
  margin: 0;
  color: #083e2b;
  font-weight: 900;
  line-height: 1.5;
}

.notice-body {
  margin: 4px 0 0;
  color: #5c6f66;
  font-size: 14px;
  line-height: 1.7;
}

.notice-date {
  color: #5c6f66;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

@media(max-width:720px) {
  .notice-section {
    padding: 22px 0;
  }

  .notice-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .notice-date {
    white-space: normal;
  }
}


.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #edf8f1;
  color: #0d4f35;
  font-weight: 800;
  font-size: 13px;
}

.form-status.is-error {
  background: #fff0f0;
  color: #8a1f1f;
}

.form-status.is-visible {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}


.notice-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.notice-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding: 4px 0;
}

.notice-date-inline {
  color: #5c6f66;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.notice-item-title {
  font-weight: 900;
  color: #083e2b;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media(max-width:720px) {
  .notice-item {
    grid-template-columns: 1fr;
    gap: 2px
  }

  .notice-item-title {
    white-space: normal
  }
}


#contact .contact-list strong+span {
  font-size: clamp(14px, 1.25vw, 18px) !important;
  line-height: 1.55 !important;
  letter-spacing: .01em !important;
}

#contact .contact-list strong {
  font-size: 10.5px !important;
}

#contact .contact-list a>span,
#contact .contact-list>div>span {
  font-size: 16px !important;
}


.site-footer .footer-brand img {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  filter: brightness(0) invert(1) !important;
}


/* Mobile overflow safety patch */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.hero,
.section,
.site-header,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

.card,
.panel,
.mini,
.flow-item,
.strength,
.hero-card,
.service-card,
.compare-card,
.revenue-card,
.company-card,
.form,
.contact-panel,
.notice-card,
.coverage-map,
.compare-shell,
.revenue-shell,
.dc-diagram,
.png-diagram-wrap {
  max-width: 100%;
  min-width: 0;
}

@media (max-width:720px) {
  .container {
    width: min(100% - 40px, var(--max)) !important;
    max-width: 100% !important;
  }

  .cards,
  .strength-list,
  .model-plus,
  .flow,
  .form-grid,
  .buyer-grid,
  .compare-grid,
  .revenue-card-grid,
  .faq-grid,
  .faq-list {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .png-diagram-wrap {
    overflow: hidden !important;
    padding-bottom: 0 !important;
  }

  .png-diagram-wrap .png-diagram,
  .png-diagram,
  .compare-image-box img,
  .revenue-visual img,
  .service-card-media img,
  .coverage-map img {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .compare-image-box,
  .revenue-visual,
  .service-card-media,
  .coverage-map {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .compare-card-body,
  .revenue-card-body,
  .service-card-content,
  .hero-card,
  .form,
  .contact-panel {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-card .stats,
  .stats {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .stat {
    min-width: 0 !important;
  }

  .dc-diagram {
    overflow: hidden !important;
  }

  .dc-flow,
  .dc-revenue-grid {
    width: 100% !important;
    max-width: 100% !important;
  }


  .hero-copy,
  .hero-lead,
  .section-text,
  .hero-card p,
  .card p,
  .compare-heading p,
  .revenue-heading p {
    box-sizing: border-box !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-copy,
  .section-text,
  .hero-card p,
  .card p,
  .compare-heading p,
  .revenue-heading p,
  .contact-panel p {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    line-break: anywhere !important;
  }

  .section-title h2,
  .compare-heading h2,
  .revenue-heading h2,
  .hero h1 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero h1,
  .hero-lead,
  .hero-copy,
  .hero-card p {
    max-width: calc(100vw - 70px) !important;
  }

  .hero-copy,
  .hero-lead,
  .hero-card p {
    word-break: break-all !important;
    line-break: anywhere !important;
  }

  .hero-grid>*,
  .about-grid>*,
  .company-grid>*,
  .contact-wrap>*,
  .cards>*,
  .strength-list>*,
  .model-plus>*,
  .flow>*,
  .buyer-grid>*,
  .compare-grid>*,
  .revenue-card-grid>*,
  .faq-grid>*,
  .faq-list>* {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .about-image,
  .about-content,
  .section-title,
  .message-box,
  .prose,
  .faq-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0px !important;

  }

  .about-image {
    min-height: 90vw !important;
  }

  .prose>*,
  .message-box>*,
  .faq-item>* {
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }
}

@media (max-width:500px) {

  .hero h1,
  .hero-lead,
  .hero-copy,
  .hero-card p {
    max-width: 320px !important;
  }
}

/* Language-specific hero headline wrapping */
@media (max-width:720px) {

  html[lang="ko"] .hero h1,
  html[lang="zh-Hans"] .hero h1,
  html[lang="en"] .hero h1 {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    line-break: strict !important;
  }

  html[lang="ko"] .hero h1 {
    font-size: clamp(26px, 6.7vw, 34px) !important;
    line-height: 1.34 !important;
    max-width: 360px !important;
  }

  html[lang="zh-Hans"] .hero h1 {
    font-size: clamp(31px, 7.8vw, 40px) !important;
    line-height: 1.24 !important;
    max-width: 360px !important;
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(30px, 7.4vw, 38px) !important;
    line-height: 1.18 !important;
    max-width: 360px !important;
  }
}

/* Global Nav Divider */

/* Mobile revenue images: keep full artwork visible */
@media (max-width:720px) {
  .revenue-visual {
    width: 100% !important;
    aspect-ratio: 1787 / 821 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .revenue-visual img,
  .revenue-card--jepx .revenue-visual img,
  .revenue-card--balance .revenue-visual img,
  .revenue-card--capacity .revenue-visual img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (min-width: 1081px) {
  .global-nav a+a::before {
    content: "|";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #b8c4be;
    font-weight: 300;
    pointer-events: none;
  }
}

@media (min-width: 1081px) and (max-width: 1240px) {
  .global-nav a+a::before {
    left: -8px;
  }
}


.hero-video {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 41, 30, .18), rgba(12, 74, 130, .08));
  pointer-events: none;
}

@media (max-width: 720px) {
  .flow-item {
    position: relative;
    padding: 18px 16px 18px 72px !important;
    min-height: 76px;
    display: block !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(8, 62, 43, 0.04) !important;
  }

  .flow-item:before {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
  }

  .flow-item h3 {
    display: inline !important;
    margin: 0 8px 0 0 !important;
    font-size: 16px !important;
    color: var(--green-deep) !important;
    font-weight: 800 !important;
  }

  .flow-item p {
    display: inline !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--muted) !important;
    margin: 0 !important;
  }
}

/* Mobile text containment: prevent long Japanese lines from pushing cards wider */
@media (max-width: 720px) {

  .panel,
  .buyer-item,
  .strength,
  .service-card,
  .card,
  .mini,
  .faq-item,
  .company-card {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .panel *,
  .buyer-item *,
  .strength *,
  .service-card *,
  .card *,
  .mini *,
  .faq-item *,
  .company-card * {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .panel h3,
  .panel p,
  .panel li,
  .buyer-item h3,
  .buyer-item p,
  .strength h3,
  .strength p,
  .service-card h3,
  .service-card p,
  .card h3,
  .card p,
  .mini strong,
  .mini p,
  .faq-item h3,
  .faq-item p,
  .section-title h2,
  .section-text,
  .info-list li {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    line-break: anywhere !important;
  }

  .info-list {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .info-list li {
    display: block !important;
    width: 100% !important;
    padding-left: 22px !important;
    margin-left: 0 !important;
  }

  .strength {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 14px !important;
  }
}

/* Mobile contact info: remove desktop label-column indentation */
@media (max-width: 960px) {

  #contact .contact-list a,
  #contact .contact-list>div {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 16px 0 !important;
  }

  #contact .contact-list strong,
  #contact .contact-list strong+span {
    grid-column: auto !important;
  }

  #contact .contact-list strong+span {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    line-break: anywhere !important;
  }
}

/* Mobile FAQ spacing */
@media (max-width: 720px) {
  .faq-item {
    padding: 18px 16px !important;
    border-radius: 16px !important;
  }

  .faq-item h3 {
    font-size: 17px !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }

  .faq-item p {
    font-size: 13.6px !important;
    line-height: 1.85 !important;
  }
}

/* Mobile/tablet company table: keep label and value close, separate rows */
@media (max-width: 960px) {
  .company-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
  }

  .company-table tr {
    display: block !important;
    padding: 16px 16px 18px !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .company-table tr:last-child {
    border-bottom: 0 !important;
  }

  .company-table th,
  .company-table td {
    display: block !important;
    width: 100% !important;
    border-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .company-table th {
    padding-top: 0 !important;
    padding-bottom: 5px !important;
  }

  .company-table td {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}