:root {
  --ink: #10141f;
  --muted: #647086;
  --line: #d9e0ea;
  --blue: #0b43c6;
  --blue-dark: #062f91;
  --cyan: #31d7ff;
  --green: #8fe35a;
  --paper: #f7f9fc;
  --white: #ffffff;
  --steel: #dfe6ef;
  --shadow: 0 22px 60px rgba(16, 20, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 224, 234, 0.82);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 170px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: #273244;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(11, 67, 198, 0.22);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: rgba(11, 67, 198, 0.24);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid rgba(11, 67, 198, 0.28);
}

.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(28px, 5vw, 82px);
  min-height: calc(100vh - 74px);
  padding: clamp(54px, 7vw, 108px) clamp(20px, 5vw, 70px) 64px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(9, 37, 88, 0.08), rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 84% 22%, rgba(49, 215, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #f6f9fd 72%, #eef4fb);
}

.page-hero {
  padding: clamp(64px, 9vw, 126px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(115deg, rgba(9, 37, 88, 0.08), rgba(255, 255, 255, 0) 50%),
    linear-gradient(180deg, #ffffff, #f4f8fd);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1100px;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
}

.page-hero.compact {
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(48px, 7vw, 86px);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 20, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 31, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.catalog-section {
  background: var(--white);
}

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

.catalog-card {
  display: grid;
  grid-template-rows: 260px auto;
  min-height: 520px;
  background: #f8fafc;
  border: 1px solid var(--line);
  overflow: hidden;
}

.catalog-card.priority {
  grid-column: span 3;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: auto;
  min-height: 420px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  border-color: rgba(11, 67, 198, 0.26);
}

.catalog-card img {
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
  background: var(--white);
}

.catalog-card div {
  padding: 24px;
}

.catalog-card.priority div {
  align-self: center;
}

.catalog-card p,
.catalog-card dd {
  color: var(--muted);
}

.catalog-card dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.catalog-card dt {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card dd {
  margin: 2px 0 0;
}

.product-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 74px);
  padding: clamp(58px, 8vw, 116px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(135deg, #07142d, #08368c 58%, #0c5de2);
  color: var(--white);
  overflow: hidden;
}

.product-hero-copy {
  align-self: center;
}

.product-hero-copy .eyebrow {
  color: var(--cyan);
}

.product-hero-copy p {
  max-width: 720px;
  color: #d7e7fb;
  font-size: 20px;
}

.product-hero-image {
  position: relative;
  display: grid;
  place-items: center;
}

.product-hero-image::before {
  position: absolute;
  width: min(72%, 560px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(8deg);
}

.product-hero-image img {
  position: relative;
  max-height: 700px;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.24));
}

.product-detail-section {
  background: #f7f9fc;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
}

.detail-layout.reverse {
  grid-template-columns: 1.22fr 0.78fr;
}

.detail-layout.reverse .detail-summary {
  order: 2;
}

.detail-summary {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.detail-summary img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  margin-bottom: 20px;
  background: #f8fafc;
}

.check-list.dark li {
  color: #2f3b4f;
}

.detail-content {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
}

.spec-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.spec-matrix div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-matrix span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-matrix strong {
  color: #1b2638;
  font-size: 17px;
  line-height: 1.25;
}

.product-gallery-section {
  background: var(--white);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.product-gallery img {
  width: 100%;
  height: 430px;
  padding: 22px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.buyer-section {
  background: #f5f8fc;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.buyer-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.buyer-grid p {
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 44px clamp(20px, 5vw, 70px);
  color: var(--white);
  background: #07142d;
}

.contact-band h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 42px);
}

.contact-band p {
  margin-bottom: 0;
  color: #c7d8ee;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: #48566e;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0;
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 224, 234, 0.9);
}

.hero-stats dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  align-self: center;
  min-height: 620px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 12% 3% 4% 18%;
  z-index: -2;
  content: "";
  background: linear-gradient(135deg, #082a7a, #0d56d9 55%, #36d4ff);
  border-radius: 6px;
  transform: skewX(-8deg);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  right: 0;
  bottom: 5%;
  left: 30%;
  z-index: -1;
  height: 26%;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 18px);
  transform: skewX(-8deg);
}

.hero-visual img {
  width: min(94%, 650px);
  max-height: 690px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(10, 21, 40, 0.2));
}

.energy-panel {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 2;
  width: min(250px, 48%);
  padding: 18px;
  color: var(--white);
  background: rgba(7, 20, 45, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.energy-panel span {
  display: block;
  margin-bottom: 8px;
  color: #a9d9ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.energy-panel strong {
  font-size: 22px;
  line-height: 1.1;
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 5vw, 70px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 0.9fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.narrow {
  display: block;
  max-width: 840px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.product-section {
  background: var(--white);
}

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

.product-card {
  display: grid;
  grid-template-rows: 260px auto;
  min-height: 480px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.product-card.featured {
  background: linear-gradient(180deg, #f6fbff, #eef5ff);
  border-color: rgba(11, 67, 198, 0.3);
}

.product-card img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  background: var(--white);
}

.product-card div {
  padding: 22px;
}

.product-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  color: var(--muted);
}

.s-series {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(70px, 9vw, 126px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 20, 48, 0.96), rgba(7, 49, 126, 0.95)),
    #061a40;
}

.s-copy p {
  color: #d5e7ff;
  font-size: 18px;
}

.s-copy .eyebrow {
  color: var(--cyan);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #eaf4ff;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--green);
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.spec-table div {
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.spec-table span {
  display: block;
  margin-bottom: 7px;
  color: #9bc5f4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-table strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  line-height: 1.22;
}

.s-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 14px;
}

.s-gallery img {
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.s-gallery .main-shot {
  grid-row: span 2;
}

.specs-section {
  background: #f7f9fc;
}

.range-table {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.range-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 2fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.range-row:first-child {
  border-top: 0;
}

.range-row span {
  min-height: 74px;
  padding: 18px;
  border-left: 1px solid var(--line);
  color: #344054;
}

.range-row span:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 900;
}

.range-row.head {
  background: #0b43c6;
}

.range-row.head span {
  min-height: 54px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(70px, 9vw, 126px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 45, 0.92), rgba(7, 20, 45, 0.72)),
    linear-gradient(135deg, #061a40, #0b43c6);
}

.about-copy .eyebrow {
  color: var(--cyan);
}

.about-copy p {
  color: #d7e7fb;
  font-size: 18px;
}

.about-proof {
  display: grid;
  gap: 12px;
}

.about-proof article {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-proof strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 22px;
}

.about-proof span {
  color: #bcd0ea;
}

.applications {
  background: var(--white);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.application-grid article {
  min-height: 230px;
  padding: 26px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.application-grid h3 {
  margin-bottom: 54px;
}

.application-grid p {
  color: var(--muted);
}

.capabilities {
  background: #f5f8fc;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.capability-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.capability-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--blue);
  font-weight: 900;
}

.capability-grid p {
  color: var(--muted);
}

.certificates {
  background: var(--white);
}

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

.certificate-grid a {
  min-height: 170px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f3f7fc);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.certificate-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.certificate-grid strong {
  display: block;
  margin-bottom: 48px;
  color: var(--blue-dark);
  font-size: 24px;
}

.certificate-grid span {
  color: var(--muted);
}

.oem-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(62px, 8vw, 98px) clamp(20px, 5vw, 70px);
  background: #eaf2ff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.oem-strip li {
  padding: 16px 18px;
  color: #1c2b41;
  background: var(--white);
  border-left: 4px solid var(--blue);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(70px, 9vw, 126px) clamp(20px, 5vw, 70px);
  background: #07142d;
  color: var(--white);
}

.contact-copy p {
  color: #c7d8ee;
}

.contact-copy .eyebrow {
  color: var(--cyan);
}

.contact-card {
  max-width: 440px;
  margin-top: 34px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card span {
  display: block;
  color: #9db7d8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  font-size: 22px;
  font-weight: 900;
}

.contact-card p {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.5;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
}

.rfq-form label {
  display: grid;
  gap: 8px;
  color: #2d3748;
  font-size: 13px;
  font-weight: 900;
}

.rfq-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #f8fafc;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 70px);
  color: #667085;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 150px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  border-bottom: 1px solid rgba(11, 67, 198, 0.25);
}

.legal-section {
  max-width: 920px;
  padding: clamp(52px, 7vw, 86px) clamp(20px, 5vw, 70px);
}

.legal-section h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: clamp(24px, 3vw, 34px);
}

.legal-section h2:first-child {
  margin-top: 0;
}

.legal-section p {
  color: #48566e;
  font-size: 18px;
}

.legal-section a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .desktop-nav.is-open {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .hero,
  .s-series,
  .about-section,
  .product-hero,
  .detail-layout,
  .contact-section,
  .oem-strip,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
  }

  .brand img {
    width: 140px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-stats,
  .product-grid,
  .catalog-grid,
  .capability-grid,
  .application-grid,
  .buyer-grid,
  .certificate-grid,
  .detail-layout,
  .detail-layout.reverse,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .catalog-card.priority {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .detail-layout.reverse .detail-summary {
    order: 0;
  }

  .spec-matrix,
  .product-gallery,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band .button {
    justify-self: start;
  }

  .spec-table,
  .range-row {
    grid-template-columns: 1fr;
  }

  .range-row.head {
    display: none;
  }

  .range-row span {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .range-row span:first-child {
    border-top: 0;
    background: #eef5ff;
  }

  .hero-visual {
    min-height: 420px;
  }

  .energy-panel {
    width: 70%;
  }

  .s-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .s-gallery .main-shot {
    grid-row: auto;
  }

  .site-footer {
    display: block;
  }
}
