:root {
  --navy-900: #061a3a;
  --navy-800: #0a254f;
  --blue-600: #0b63ce;
  --green-700: #007a2f;
  --green-600: #009640;
  --green-100: #eaf7ef;
  --sky-100: #eef8ff;
  --sky-50: #f6fbff;
  --yellow: #ffd400;
  --red: #b91c1c;
  --text: #071f3a;
  --muted: #40536a;
  --border: #d9e2ec;
  --border-soft: #e8eef5;
  --white: #ffffff;
  --navy: #061a3a;
  --green: #007a2f;
  --blue: #0b4fa8;
  --shadow-sm: 0 8px 24px rgba(6, 26, 58, 0.06);
  --shadow-md: 0 18px 48px rgba(6, 26, 58, 0.09);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.75;
}

main {
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.03em;
}

p,
li,
input,
textarea,
select {
  font-weight: 500;
  line-height: 1.85;
}

section {
  scroll-margin-top: 76px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 7px clamp(16px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.82);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.logo-brand img {
  width: auto;
  max-width: 220px;
  max-height: 58px;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.logo-brand:focus-visible {
  outline: 3px solid rgba(0, 122, 47, 0.24);
  outline-offset: 4px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-menu-toggle,
.mobile-nav-backdrop,
.mobile-nav-panel {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: rgba(246, 251, 248, 0.96);
  border: 1px solid rgba(0, 122, 47, 0.16);
  border-radius: 50%;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--green);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: top 0.22s ease, transform 0.22s ease, opacity 0.18s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 14px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 21px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 28px;
}

body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

body.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

body.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6, 26, 58, 0.38);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: min(86vw, 360px);
  height: 100dvh;
  padding: 22px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
  border-left: 1px solid rgba(217, 226, 236, 0.95);
  box-shadow: -24px 0 60px rgba(8, 35, 65, 0.18);
  transform: translateX(100%);
  transition: transform 0.26s ease;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.mobile-nav-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 50%;
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  border-bottom: 1px solid rgba(217, 226, 236, 0.82);
}

.mobile-nav-panel > a:not(.mobile-nav-cta)::after {
  margin-left: auto;
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  content: "›";
}

.mobile-nav-panel .mobile-nav-cta {
  justify-content: center;
  margin-top: 22px;
  color: #fff;
  background: linear-gradient(180deg, #009640, #007a2f);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 122, 47, 0.22);
}

.mobile-nav-panel .mobile-nav-cta::after {
  margin-left: 9px;
  content: "→";
}

body.is-menu-open .mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
}

body.is-menu-open .mobile-nav-panel {
  transform: translateX(0);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-weight: 800;
  line-height: 1.25;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: 0.2s ease;
}

.btn-primary,
.header-cta {
  color: var(--white);
  background: linear-gradient(180deg, #009640, #007a2f);
  box-shadow:
    0 12px 26px rgba(0, 122, 47, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.header-nav .header-cta {
  min-height: 46px;
  margin-left: 4px;
  padding-inline: 22px;
  color: var(--white);
}

.btn-primary::after {
  margin-left: 10px;
  font-weight: 900;
  content: "→";
}

.btn-primary:hover,
.header-cta:hover {
  background: #006529;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-color: var(--border);
}

.btn-secondary::after {
  margin-left: 10px;
  font-weight: 900;
  content: "↗";
}

.btn-secondary:hover {
  border-color: var(--blue-600);
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

.hero-slider-track {
  display: grid;
  width: 100%;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide picture {
  display: block;
  width: 100%;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 16px 6px;
  background: var(--white);
}

.hero-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(6, 26, 58, 0.14);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 26, 58, 0.1);
}

.hero-pause {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(6, 26, 58, 0.14);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 26, 58, 0.1);
}

.hero-pause.is-paused {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  background: #dce7f2;
  border: 1px solid rgba(6, 26, 58, 0.2);
  border-radius: 50%;
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--green);
  border-color: var(--green);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 18px 16px 32px;
  background: var(--white);
}

.section {
  position: relative;
  isolation: isolate;
  padding: 96px 24px;
  overflow: hidden;
}

.section::before,
.section::after {
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section.is-sky {
  background:
    radial-gradient(circle at 80% 10%, rgba(11, 99, 206, 0.1), transparent 34%),
    linear-gradient(180deg, #f6fbff 0%, #eef8ff 100%);
}

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

.section.is-solar-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(255, 255, 255, 0.74) 100%),
    url("assets/images/bg-solar-sky.png") right center / cover no-repeat;
}

.section.is-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 150, 64, 0.22), transparent 30%),
    linear-gradient(135deg, #061a3a 0%, #0a254f 100%);
}

.section.is-navy h2,
.section.is-navy h3,
.section.is-navy p {
  color: var(--white);
}

.section-deco-grid {
  background-size: 44px 44px;
}

.section.is-solar-bg.section-deco-grid {
  background:
    linear-gradient(rgba(11, 99, 206, 0.06) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(11, 99, 206, 0.06) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 52%, rgba(255, 255, 255, 0.74) 100%),
    url("assets/images/bg-solar-sky.png") right center / cover no-repeat;
}

.section.is-navy.section-deco-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 80% 20%, rgba(0, 150, 64, 0.22), transparent 30%),
    linear-gradient(135deg, #061a3a 0%, #0a254f 100%);
}

.section-deco-orb::after {
  position: absolute;
  top: -120px;
  right: -120px;
  z-index: 0;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(0, 150, 64, 0.14), transparent 68%);
  border-radius: 50%;
}

.section-deco-solar .section-inner::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  z-index: -1;
  width: 520px;
  height: 300px;
  content: "";
  opacity: 0.12;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(11, 99, 206, 0.28) 18% 20%, transparent 20% 38%, rgba(11, 99, 206, 0.28) 38% 40%, transparent 40%),
    repeating-linear-gradient(90deg, rgba(6, 26, 58, 0.22) 0 2px, transparent 2px 52px);
  border: 2px solid rgba(11, 99, 206, 0.18);
  border-radius: 18px;
  transform: skewX(-16deg) rotate(-4deg);
}

.section-deco-line::after {
  position: absolute;
  bottom: 36px;
  left: 5vw;
  z-index: 0;
  width: 180px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--green), rgba(11, 99, 206, 0));
  border-radius: 999px;
}

.section-divider-top {
  overflow: visible;
}

.section-divider-top > .section-inner::before {
  position: absolute;
  top: -42px;
  left: 50%;
  z-index: -2;
  width: 100vw;
  height: 84px;
  content: "";
  background: rgba(255, 255, 255, 0.48);
  transform: translateX(-50%) skewY(-2deg);
  transform-origin: left top;
}

.bg-pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.96)),
    url("assets/images/bg-silhouette.png");
  background-position: center;
  background-size: cover;
}

.section-head {
  width: min(860px, 100%);
  margin: 0 auto 44px;
}

.section-head.is-center {
  text-align: center;
}

.section-head.is-left {
  margin-left: 0;
  text-align: left;
}

.section-head .label {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 0 0 0 12px;
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: transparent;
  border: none;
  border-left: 4px solid var(--green);
  border-radius: 0;
}

.section.is-navy .section-head .label {
  color: #8eed9b;
}

.section-head .label::before {
  display: none;
}

.section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.section-head h2,
.problem-copy h2,
.before-after-copy h2,
.report-copy h2,
.area-header-row h2,
.pre-form-guide-copy h2,
.form-wrap h2,
.about-energy-copy h2 {
  line-height: 1.28;
  letter-spacing: -0.035em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-head.is-center h2::after,
.section-head.is-left h2::after {
  display: block;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
  border-radius: 999px;
}

.section-head.is-center h2::after {
  width: 72px;
  margin: 18px auto 0;
}

.section-head.is-left h2::after {
  width: 82px;
  margin: 18px 0 0;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] {
  transition-delay: 0.12s;
}

[data-animate-delay="2"] {
  transition-delay: 0.24s;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0;
  color: var(--green);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: transparent;
  border: none;
  border-radius: 0;
}

.section-label::before {
  display: inline-block;
  width: 42px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
  border-radius: 999px;
}

.section-image {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: 22px;
  box-shadow:
    0 20px 48px rgba(6, 26, 58, 0.09),
    0 0 0 8px rgba(255, 255, 255, 0.72);
}

.visual-section .section-inner {
  position: relative;
}

.visual-section .section-inner::before {
  position: absolute;
  top: 36px;
  left: -28px;
  z-index: 0;
  width: 84px;
  height: 84px;
  content: "";
  background: radial-gradient(circle, rgba(0, 150, 64, 0.15), transparent 70%);
  border-radius: 50%;
}

.visual-section .section-inner::after {
  position: absolute;
  right: -34px;
  bottom: 20px;
  z-index: 0;
  width: 140px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(11, 99, 206, 0), var(--blue-600));
  border-radius: 999px;
}

.visual-section .section-image,
.visual-section .image-caption,
.visual-section .flow-text,
.visual-section .center-cta {
  position: relative;
  z-index: 1;
}

.about-energy {
  padding: 104px 24px;
  background:
    radial-gradient(circle at 82% 10%, rgba(11, 99, 206, 0.14), transparent 30%),
    repeating-linear-gradient(135deg, rgba(11, 99, 206, 0.04) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, #f5fbff 0%, #eaf7ff 100%);
}

.about-energy::before {
  display: none;
}

.about-energy-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(560px, 1.1fr);
  gap: 72px;
  align-items: center;
  width: min(1280px, 100%);
  max-width: 1280px;
  padding: 64px 72px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddeaf2;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(8, 35, 65, 0.1);
  overflow: visible;
}

.about-energy-inner::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
}

.about-energy-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 540px;
}

.about-energy-text {
  min-width: 0;
}

.about-energy-copy .label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0;
  color: var(--green);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: transparent;
  border: none;
  border-radius: 0;
}

.about-energy-copy .label::before {
  width: 48px;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
  border-radius: 999px;
}

.about-energy-copy h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.pc-break {
  display: block;
}

.about-energy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.about-energy-points {
  display: grid;
  gap: 16px;
  margin: 34px 0 34px;
  padding: 0;
  list-style: none;
}

.about-energy-points li {
  position: relative;
  min-height: 58px;
  padding: 16px 20px 16px 50px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddeaf2;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(8, 35, 65, 0.05);
}

.about-energy-points li::before {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  font-size: 13px;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.about-energy-visual {
  width: 100%;
  max-width: 640px;
  justify-self: end;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(221, 234, 242, 0.95);
  border-radius: 28px;
  box-shadow: 0 26px 72px rgba(8, 35, 65, 0.16);
}

.about-energy-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.about-energy-cta {
  margin-top: 4px;
  justify-self: start;
}

.visual-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.problem-section {
  background:
    radial-gradient(circle at 9% 12%, rgba(11, 99, 206, 0.12), transparent 24%),
    radial-gradient(circle at 4% 88%, rgba(0, 122, 47, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f2faff 52%, #ffffff 100%);
  padding: 110px 0 120px;
}

.problem-section::before {
  position: absolute;
  top: 6%;
  right: -8%;
  width: 420px;
  height: 260px;
  content: "";
  opacity: 0.13;
  background: repeating-linear-gradient(135deg, var(--blue-600) 0 2px, transparent 2px 16px);
  transform: rotate(-4deg);
}

.problem-section::after {
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  content: "";
  opacity: 0.16;
  background-image: radial-gradient(rgba(6, 26, 58, 0.42) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
}

.problem-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(460px, 0.95fr);
  gap: 56px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.problem-visual {
  position: relative;
  isolation: isolate;
}

.problem-image-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddeaf2;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(8, 35, 65, 0.13);
}

.problem-image-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.problem-image-card img {
  width: 100%;
  height: auto;
}

.problem-copy {
  min-width: 0;
}

.before-after-copy h2,
.report-copy h2 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.35;
}

.problem-copy h2 {
  position: relative;
  margin: 22px 0 20px;
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.text-nowrap {
  white-space: nowrap;
}

.problem-copy h2::after {
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 24px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 999px;
}

.problem-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.owner-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--green);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.015em;
  background: transparent;
  border: none;
  border-radius: 0;
}

.owner-pill::before {
  width: 42px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
  border-radius: 999px;
}

.report-copy h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

.before-after-copy p,
.report-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.problem-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 26px;
}

.problem-list article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #ddeaf2;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(8, 35, 65, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(6, 26, 58, 0.08);
}

.problem-list article > span {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #16a34a, #007a2f);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 122, 47, 0.2);
}

.problem-list article > span::after {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 12px;
  height: 7px;
  content: "";
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.problem-list strong {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.55;
}

.problem-copy .btn {
  min-width: 280px;
  height: 58px;
  min-height: 58px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 122, 47, 0.18);
}

.before-after-section {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(11, 99, 206, 0.035) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, #ffffff 0%, #f3fbff 48%, #ffffff 100%);
  padding-top: 76px;
  padding-bottom: 76px;
}

.before-after-section::before,
.before-after-section::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.before-after-section::before {
  top: 10%;
  left: -8%;
  width: 56%;
  height: 2px;
  opacity: 0.38;
  background: linear-gradient(90deg, transparent, rgba(11, 99, 206, 0.36), rgba(0, 122, 47, 0.28), transparent);
  transform: rotate(11deg);
}

.before-after-section::after {
  right: 4%;
  bottom: 9%;
  width: 170px;
  height: 170px;
  opacity: 0.18;
  background-image: radial-gradient(rgba(6, 26, 58, 0.42) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
}

.before-after-layout {
  display: grid;
  grid-template-areas:
    "copy visual"
    "points visual"
    "cta visual";
  grid-template-columns: minmax(460px, 0.95fr) minmax(520px, 1.05fr);
  gap: 36px 48px;
  align-items: center;
  width: min(1280px, 100%);
  max-width: 1280px;
  margin: 0 auto;
}

.after-points {
  grid-area: points;
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.after-point {
  display: block;
  min-height: 86px;
  padding: 18px 20px 18px 22px;
  background: #fff;
  border: 1px solid #dbe8ef;
  border-left: 4px solid var(--green);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(8, 35, 65, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.after-point::after {
  display: none;
}

.after-point > * {
  position: relative;
  z-index: 1;
}

.after-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8, 35, 65, 0.08);
}

.after-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.after-point span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.before-after-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.before-after-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 1.28;
  letter-spacing: -0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.before-after-copy h2::after {
  display: block;
  width: 92px;
  height: 5px;
  margin-top: 18px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 999px;
}

.before-after-cta {
  grid-area: cta;
  align-self: flex-start;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 122, 47, 0.18);
}

.before-after-visual {
  position: relative;
  grid-area: visual;
  display: grid;
  align-content: center;
}

.before-after-visual::before {
  position: absolute;
  top: 5%;
  right: -9%;
  z-index: -1;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(11, 99, 206, 0.14), rgba(0, 122, 47, 0.06) 42%, transparent 70%);
  border-radius: 50%;
}

.before-after-image,
.report-image-card {
  position: relative;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(221, 234, 242, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(8, 35, 65, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.before-after-image {
  overflow: hidden;
}

.report-image-card {
  padding: 18px;
}

.before-after-image:hover,
.report-image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(6, 26, 58, 0.11);
}

.before-after-image img,
.report-image-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.before-after-image img {
  height: auto;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.image-caption {
  max-width: 880px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.flow-text {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.flow-text h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.flow-text-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow-counter;
}

.flow-text-list li {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px 16px 56px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  counter-increment: flow-counter;
}

.flow-text-list li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  content: counter(flow-counter);
  background: var(--navy);
  border-radius: 50%;
}

.flow-text-list strong {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.flow-text-list span {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.flow-text-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(11, 99, 206, 0.14);
  border-radius: 26px;
  box-shadow:
    0 18px 42px rgba(6, 26, 58, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: visible;
}

.plan-card.is-featured {
  border: 2px solid rgba(0, 122, 47, 0.35);
}

.plan-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--green), #39b54a);
  border-radius: 0 0 999px 999px;
}

.plan-card:not(.is-featured)::before {
  background: linear-gradient(90deg, var(--navy), var(--blue-600));
}

.plan-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  background: radial-gradient(circle, rgba(0, 150, 64, 0.12), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

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

.plan-card .limited-label {
  z-index: 2;
}

.limited-label {
  display: inline-flex;
  position: absolute;
  top: -16px;
  left: 28px;
  margin-bottom: 12px;
  padding: 7px 13px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.18);
}

.plan-label {
  display: inline-flex;
  margin: 14px 0 16px;
  padding: 7px 13px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  background: var(--green-100);
  border-radius: 999px;
}

.plan-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.35;
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  margin-bottom: 22px;
  padding: 20px 22px;
  background: linear-gradient(90deg, rgba(0, 122, 47, 0.1), rgba(0, 122, 47, 0.03));
  border: 1px solid rgba(0, 122, 47, 0.16);
  border-radius: 18px;
}

.plan-price strong {
  color: var(--green);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
}

.plan-price .tax-label {
  color: var(--green);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.2;
}

.plan-price em {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

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

.plan-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 800;
}

.plan-list-note {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.plan-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-choice-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.plan-choice-note strong {
  color: var(--navy);
}

.plan-choice-note span {
  color: var(--muted);
  font-size: 14px;
}

.service-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: 48px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #ddeaf2;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(8, 35, 65, 0.08);
  overflow: hidden;
}

.service-steps::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 22px,
      rgba(11, 99, 206, 0.05) 22px 24px
    );
}

.service-step {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  text-align: left;
}

.service-step + .service-step {
  border-left: 1px solid #ddeaf2;
}

.service-step:not(:last-child)::after {
  position: absolute;
  top: 74px;
  right: -22px;
  z-index: 2;
  width: 44px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
}

.service-step-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 900;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.service-step h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
}

.service-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-detail-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.service-detail-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.service-note {
  max-width: 880px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.report-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 135, 75, 0.1), transparent 34%),
    repeating-linear-gradient(135deg, rgba(11, 99, 206, 0.035) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, #eaf7ff 0%, #f7fcff 100%);
  padding: 110px 24px;
}

.report-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #ddeaf2;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(8, 35, 65, 0.1);
}

.report-checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.report-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 700;
}

.report-checks li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
}

.report-image-card::before {
  position: absolute;
  right: -28px;
  bottom: -28px;
  z-index: -1;
  width: 140px;
  height: 140px;
  content: "";
  background: radial-gradient(circle, rgba(0, 150, 64, 0.14), transparent 68%);
  border-radius: 50%;
}

.area-section {
  background:
    radial-gradient(circle at 18% 48%, rgba(11, 99, 206, 0.08), transparent 30%),
    linear-gradient(180deg, #fff, #f6fbff);
}

.area-header-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}

.area-header-row .section-head {
  margin-bottom: 0;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.area-map {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, #f0f9ff, #ffffff);
  border: 1px solid rgba(11, 99, 206, 0.14);
  border-radius: 28px;
  box-shadow:
    0 18px 42px rgba(6, 26, 58, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.area-map::before {
  position: absolute;
  inset: 22px;
  z-index: 0;
  content: "";
  background: radial-gradient(circle, rgba(11, 99, 206, 0.14), transparent 64%);
  border-radius: 50%;
}

.area-map img {
  position: relative;
  z-index: 1;
}

.area-map img {
  width: 100%;
  border-radius: 18px;
}

.area-list {
  display: grid;
  gap: 12px;
}

.area-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.area-list-item::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--green), var(--blue-600));
  border-radius: 999px;
}

.area-list-item strong {
  color: var(--navy);
  font-size: 18px;
}

.area-list-item strong::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  content: "";
  vertical-align: middle;
  background: var(--green);
  border-radius: 50%;
}

.area-list-item span {
  color: var(--muted);
  font-size: 14px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.9;
}

.pre-form-guide {
  padding: 72px 24px 40px;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 150, 64, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.pre-form-guide-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(6, 26, 58, 0.07);
  overflow: hidden;
}

.pre-form-guide-inner::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
}

.pre-form-guide-copy {
  grid-column: 1 / -1;
}

.guide-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  background: var(--green-100);
  border: 1px solid #b7e1c2;
  border-radius: 999px;
}

.pre-form-guide-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.35;
}

.pre-form-guide-copy p {
  margin: 0;
  color: var(--muted);
}

.guide-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.guide-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
}

.guide-item span {
  display: inline-flex;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.guide-item strong {
  color: var(--navy);
  font-size: 15px;
}

.form-section {
  background:
    linear-gradient(rgba(11, 99, 206, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(11, 99, 206, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 85% 20%, rgba(0, 150, 64, 0.09), transparent 32%),
    linear-gradient(180deg, #eef8ff, #f8fcff);
}

.form-section .section-inner {
  width: min(920px, 100%);
}

.form-wrap {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(11, 99, 206, 0.14);
  border-radius: 28px;
  box-shadow:
    0 18px 42px rgba(6, 26, 58, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.form-wrap::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
}

.form-wrap::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  z-index: 0;
  width: 240px;
  height: 160px;
  content: "";
  opacity: 0.08;
  background:
    repeating-linear-gradient(90deg, var(--blue-600) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(0deg, var(--blue-600) 0 2px, transparent 2px 40px);
  transform: rotate(-8deg);
}

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

.form-wrap .section-head {
  margin-bottom: 26px;
}

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

.form-message {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  border-radius: 12px;
}

.form-message ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.form-message-error {
  color: #7f1d1d;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.estimate-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

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

.estimate-form em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  background: var(--red);
  border-radius: 999px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(0, 122, 47, 0.14);
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--red);
  background: #fff7f7;
}

.field-error {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.estimate-form small {
  color: var(--muted);
  font-weight: 700;
}

.submit {
  grid-column: 1 / -1;
  min-height: 58px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.submit:disabled,
.submit.is-sending {
  cursor: progress;
  opacity: 0.72;
}

.form-notes {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14px;
}

.company-info-section {
  display: none;
  padding: 64px 24px;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
}

.company-info {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  width: min(1040px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddeaf2;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(8, 35, 65, 0.05);
}

.company-info-left {
  padding: 30px 34px;
  color: #fff;
  background: #071f3a;
}

.company-info-left > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 0;
  color: #a7f3d0;
  font-size: 13px;
  font-weight: 900;
  background: transparent;
  border: none;
  border-radius: 0;
}

.company-info-left .section-label {
  color: #a7f3d0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.company-info-left h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 32px);
}

.company-info-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.company-info-right {
  padding: 30px 34px;
}

.company-info-right p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.company-info-right dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.company-info-right dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}

.company-info-right dt {
  color: var(--green);
  font-weight: 800;
}

.company-info-right dd {
  margin: 0;
  color: var(--text);
}

.company-profile-section {
  padding: 72px 24px 88px;
  background: #fff;
  border-top: 1px solid var(--border-soft);
}

.company-profile-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.company-profile-heading {
  margin-bottom: 30px;
  text-align: left;
}

.company-profile-heading .section-label {
  margin-bottom: 14px;
}

.company-profile-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.company-profile-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.company-profile-table {
  background: #fff;
  border-top: 1px solid rgba(205, 216, 226, 0.95);
}

.company-profile-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid rgba(205, 216, 226, 0.95);
}

.company-profile-term {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  border-right: 3px solid rgba(0, 136, 68, 0.72);
}

.company-profile-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 28px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.company-profile-desc p {
  margin: 0;
}

.site-footer {
  color: var(--white);
  background: #071f3a;
  padding: 64px 0 32px;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-size: 20px;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

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

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

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 36px;
  padding: 24px 24px 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-main {
  min-height: 70vh;
  background:
    linear-gradient(rgba(11, 99, 206, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 206, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--sky-50) 0, #fff 360px);
  background-size: 40px 40px, 40px 40px, auto;
}

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

.privacy-hero {
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--border-soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.25;
}

.privacy-hero h1::after {
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 22px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue-600));
  border-radius: 999px;
}

.privacy-hero p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.privacy-content {
  padding-block: 64px 88px;
}

.privacy-intro {
  margin: 0 0 52px;
  padding: 24px 26px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.privacy-content section {
  margin-top: 48px;
}

.privacy-content h2 {
  margin: 0 0 18px;
  padding-bottom: 13px;
  color: var(--navy);
  font-size: clamp(22px, 2.7vw, 28px);
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
}

.privacy-content h2::before {
  display: inline-block;
  width: 5px;
  height: 1.15em;
  margin-right: 12px;
  vertical-align: -0.15em;
  content: "";
  background: linear-gradient(180deg, var(--green), var(--blue-600));
  border-radius: 999px;
}

.privacy-content p,
.privacy-content li,
.privacy-content dd {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.privacy-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.4em;
}

.privacy-contact-list {
  margin: 22px 0 0;
  border-top: 1px solid var(--border);
}

.privacy-contact-list > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px solid var(--border);
}

.privacy-contact-list dt,
.privacy-contact-list dd {
  margin: 0;
  padding: 17px 20px;
}

.privacy-contact-list dt {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  background: var(--sky-50);
}

.privacy-contact-list dd {
  color: var(--text);
  font-weight: 700;
}

.privacy-contact-list a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-date {
  margin: 48px 0 0;
  text-align: right;
}

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  color: var(--green);
  font-weight: 900;
}

.privacy-back-link::before {
  margin-right: 8px;
  content: "←";
}

.header-nav a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  color: var(--green);
}

@media (max-width: 768px) {
  .privacy-container {
    width: min(100% - 32px, 920px);
  }

  .privacy-hero {
    padding: 48px 0 42px;
  }

  .privacy-hero h1 {
    font-size: 32px;
    word-break: keep-all;
  }

  .privacy-hero p {
    font-size: 14px;
  }

  .privacy-content {
    padding-block: 44px 64px;
  }

  .privacy-intro {
    margin-bottom: 40px;
    padding: 20px 18px;
  }

  .privacy-content section {
    margin-top: 40px;
  }

  .privacy-content h2 {
    font-size: 21px;
  }

  .privacy-content p,
  .privacy-content li,
  .privacy-content dd {
    font-size: 14px;
    line-height: 1.9;
  }

  .privacy-contact-list > div {
    display: block;
  }

  .privacy-contact-list dt {
    padding: 13px 16px 4px;
    background: transparent;
  }

  .privacy-contact-list dd {
    padding: 4px 16px 14px;
  }

  .privacy-date {
    text-align: left;
  }
}

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

  .privacy-hero h1 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .privacy-content h2 {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .privacy-content h2::before {
    width: 4px;
    margin-right: 9px;
  }
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  padding: 48px 18px;
  place-items: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 150, 64, 0.12), transparent 32%),
    repeating-linear-gradient(135deg, rgba(11, 99, 206, 0.04) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, #f5fbff 0%, #eaf7ff 100%);
}

.thanks-card {
  width: min(720px, 100%);
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(8, 35, 65, 0.12);
}

.thanks-logo {
  width: min(240px, 72%);
  height: auto;
  margin-bottom: 22px;
}

.thanks-card h1 {
  margin: 16px 0 18px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
}

.thanks-card p {
  margin: 0 auto 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.thanks-card .btn {
  margin-top: 18px;
}

.thanks-note {
  font-size: 13px;
}

.mobile-read-toggle {
  display: none;
}

.mobile-collapsible-content {
  display: contents;
}

@keyframes mobileAccordion {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-nav-backdrop,
  .mobile-nav-panel {
    display: block;
  }

  .about-energy-inner,
  .pricing-grid,
  .before-after-layout,
  .report-card,
  .area-header-row,
  .area-layout,
  .pre-form-guide-inner,
  .company-info {
    grid-template-columns: 1fr;
  }

  .about-energy-inner {
    grid-template-areas:
      "copy"
      "visual"
      "points"
      "cta";
  }

  .problem-layout {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
    min-height: 0;
    padding: 34px 24px 38px;
  }

  .before-after-layout {
    grid-template-areas:
      "copy"
      "visual"
      "points"
      "cta";
    grid-template-columns: 1fr;
  }

  .problem-copy {
    align-self: start;
    padding-top: 0;
    text-align: center;
  }

  .problem-copy p {
    max-width: 620px;
    margin-inline: auto;
  }

  .problem-copy h2::after {
    margin-inline: auto;
  }

  .problem-copy .btn {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .section-head h2,
  .problem-copy h2,
  .before-after-copy h2,
  .report-copy h2,
  .area-header-row h2,
  .pre-form-guide-copy h2,
  .form-wrap h2,
  .about-energy-copy h2 {
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .site-header {
    position: sticky;
    min-height: 62px;
    padding: 8px 14px;
  }

  .logo-brand img {
    max-width: 148px;
    max-height: 48px;
  }

  .hero-slide img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .hero-arrow {
    display: none;
  }

  .hero-pause {
    display: none;
  }

  .hero-controls {
    padding: 10px 16px 4px;
  }

  .hero-actions,
  .center-cta {
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
    padding: 16px 18px 28px;
  }

  .btn {
    width: 100%;
  }

  .service-steps,
  .guide-items,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 18px;
  }

  .visual-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

  .mobile-read-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 16px;
    padding: 0 18px;
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(0, 122, 47, 0.2);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(8, 35, 65, 0.06);
  }

  .mobile-read-toggle::after {
    margin-left: 8px;
    content: "＋";
  }

  .mobile-read-toggle[aria-expanded="true"]::after {
    content: "－";
  }

  .mobile-collapsible-content {
    display: none;
  }

  .mobile-collapsible-content.is-open {
    display: block;
    animation: mobileAccordion 0.22s ease both;
  }

  .report-copy .mobile-collapsible-content.is-open,
  .flow-text .mobile-collapsible-content.is-open,
  .form-wrap .mobile-collapsible-content.is-open,
  .company-profile-inner .mobile-collapsible-content.is-open {
    margin-top: 16px;
  }

  .form-note-toggle {
    width: 100%;
    margin-top: 20px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .section-image,
  .about-energy-inner,
  .about-energy-visual,
  .plan-card,
  .area-map,
  .report-image-card,
  .before-after-image,
  .form-wrap,
  .pre-form-guide-inner {
    border-radius: 18px;
  }

  .flow-text {
    margin-top: 20px;
    padding: 22px 16px;
    border-radius: 16px;
  }

  .flow-text h3 {
    font-size: 22px;
    text-align: left;
  }

  .flow-text-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 16px 16px 52px;
  }

  .flow-text-list strong {
    font-size: 15px;
  }

  .flow-text-list span {
    font-size: 14px;
  }

  .flow-text-note {
    text-align: left;
  }

  .about-energy-inner,
  .form-wrap,
  .pre-form-guide-inner {
    padding: 24px 18px;
  }

  .about-energy {
    padding: 68px 18px;
  }

  .about-energy::before {
    display: none;
  }

  .about-energy-inner {
    grid-template-areas:
      "copy"
      "visual"
      "points"
      "cta";
    gap: 28px;
    border-radius: 24px;
  }

  .about-energy-copy {
    display: contents;
  }

  .about-energy-text {
    grid-area: copy;
  }

  .about-energy-copy h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.32;
  }

  .about-energy-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-energy-copy .label,
  .owner-pill,
  .section-label,
  .section-head .label {
    gap: 10px;
    font-size: 18px;
  }

  .about-energy-copy .label::before,
  .owner-pill::before,
  .section-label::before,
  .section-head .label::before {
    width: 32px;
    height: 4px;
  }

  .pc-break {
    display: inline;
  }

  .about-energy-copy .pc-break {
    display: block;
  }

  .about-energy-visual {
    grid-area: visual;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 8px;
    border-radius: 22px;
  }

  .about-energy-visual img {
    border-radius: 16px;
  }

  .about-energy-points {
    grid-area: points;
    gap: 12px;
    margin: 4px 0 20px;
  }

  .about-energy-points li {
    min-height: 54px;
    padding: 14px 16px 14px 46px;
    font-size: 14px;
  }

  .about-energy-cta {
    grid-area: cta;
    justify-self: stretch;
    width: 100%;
  }

  .plan-card {
    padding: 26px 20px;
  }

  .plan-price strong {
    font-size: 42px;
  }

  .plan-price .tax-label {
    font-size: 18px;
  }

  .plan-list-note {
    font-size: 12px;
    line-height: 1.7;
  }

  .plan-choice-note,
  .area-list-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-steps {
    gap: 14px;
    margin-top: 28px;
    overflow: visible;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .service-steps::before {
    display: none;
  }

  .service-step {
    padding: 24px 22px;
    text-align: left;
    background: #fff;
    border: 1px solid #ddeaf2;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(8, 35, 65, 0.06);
  }

  .service-step + .service-step {
    border-left: 1px solid #ddeaf2;
  }

  .service-step:not(:last-child)::after {
    display: none;
  }

  .service-step-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .service-step h3 {
    margin: 0 0 8px;
  }

  .service-step p {
    max-width: none;
    font-size: 14px;
    line-height: 1.8;
  }

  .service-detail-list {
    gap: 7px;
    margin-top: 12px;
  }

  .service-detail-list li {
    font-size: 13px;
    line-height: 1.65;
  }

  .area-map {
    padding: 18px;
  }

  .before-after-layout,
  .report-card,
  .company-info {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .before-after-layout {
    grid-template-areas:
      "copy"
      "visual"
      "points"
      "cta";
    gap: 26px;
  }

  .after-points {
    gap: 12px;
    margin: 24px 0;
  }

  .before-after-copy {
    justify-content: start;
    max-width: none;
  }

  .before-after-copy h2::after {
    margin-top: 16px;
  }

  .before-after-image {
    padding: 10px;
    border-radius: 20px;
  }

  .before-after-image img {
    border-radius: 14px;
  }

  .after-point {
    padding: 16px 18px;
    min-height: auto;
    border-radius: 16px;
  }

  .after-point strong {
    font-size: 17px;
  }

  .after-point span {
    font-size: 13px;
  }

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

  .problem-layout {
    gap: 24px;
    padding: 0;
  }

  .problem-copy {
    text-align: left;
  }

  .problem-copy p {
    margin-inline: 0;
  }

  .problem-image-card {
    margin-top: 28px;
    border-radius: 22px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-list article {
    min-height: auto;
  }

  .problem-copy .btn {
    margin-inline: 0;
  }

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

  .footer-nav {
    gap: 14px;
  }

  .company-info-right dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-profile-section {
    padding: 64px 18px 72px;
  }

  .company-profile-heading h2 {
    font-size: 28px;
  }

  .company-profile-row {
    display: block;
  }

  .company-profile-term {
    padding: 15px 18px 4px;
    border-right: none;
    font-size: 13px;
  }

  .company-profile-desc {
    padding: 4px 18px 16px;
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 520px) {
  .problem-section {
    padding-inline: 10px;
  }

  .problem-layout {
    padding: 0;
  }

  .problem-copy h2 {
    font-size: 27px;
  }

  .problem-copy p {
    font-size: 15px;
  }

  .problem-image-card {
    border-radius: 18px;
  }

  .problem-list article {
    padding: 16px;
  }

  .problem-list strong {
    font-size: 15px;
  }

}

@media (max-width: 390px) {
  .section-head h2,
  .problem-copy h2,
  .before-after-copy h2,
  .report-copy h2,
  .area-header-row h2,
  .pre-form-guide-copy h2,
  .form-wrap h2,
  .about-energy-copy h2,
  .company-profile-heading h2,
  .flow-text h3 {
    word-break: auto-phrase;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .section {
    padding: 56px 14px;
  }

  .about-energy {
    padding: 56px 14px;
  }

  .visual-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .company-profile-section {
    padding: 56px 14px 64px;
  }

  .site-header {
    gap: 8px;
    padding: 8px 10px;
  }

  .logo-brand img {
    max-width: 132px;
    max-height: 42px;
  }

  .btn {
    min-height: 46px;
    padding-inline: 14px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
  }

  .problem-copy .btn {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }

  .plan-card {
    padding: 24px 16px;
  }

  .plan-card h3 {
    font-size: 23px;
    line-height: 1.35;
  }

  .plan-price {
    gap: 6px 8px;
    padding: 18px 16px;
  }

  .plan-price strong {
    font-size: clamp(36px, 11vw, 42px);
    line-height: 1.05;
  }

  .plan-price .tax-label {
    font-size: 15px;
    line-height: 1.2;
  }

  .plan-price em {
    flex-basis: 100%;
    font-size: 13px;
    line-height: 1.4;
  }

  .plan-list {
    gap: 9px;
  }

  .plan-list li {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  .plan-list-note {
    font-size: 11.5px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .plan-choice-note {
    padding: 16px 14px;
  }

  .plan-choice-note strong,
  .plan-choice-note span {
    overflow-wrap: anywhere;
  }

  p,
  li,
  span,
  small,
  summary,
  .faq-list p,
  .service-note,
  .form-notes,
  .report-checks li,
  .service-detail-list li,
  .flow-text-list span {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section-image {
    border-radius: 14px;
    box-shadow:
      0 12px 28px rgba(6, 26, 58, 0.08),
      0 0 0 4px rgba(255, 255, 255, 0.72);
  }

  .flow-text {
    margin-top: 18px;
    padding: 18px 14px;
  }

  .flow-text-list li {
    padding: 14px 14px 14px 48px;
  }

  .flow-text-list li::before {
    left: 14px;
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .flow-text-list span {
    font-size: 13px;
    line-height: 1.75;
  }

  .form-wrap {
    padding: 22px 14px;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .estimate-form small {
    font-size: 12px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .form-notes {
    padding-left: 1.1em;
    font-size: 12.5px;
    line-height: 1.8;
  }
}

@media (max-width: 360px) {
  .section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .about-energy-copy h2 {
    font-size: 27px;
  }

  .problem-copy h2 {
    font-size: 25px;
  }

  .before-after-copy h2,
  .report-copy h2,
  .pre-form-guide-copy h2,
  .form-wrap h2 {
    font-size: 24px;
  }

  .plan-price strong {
    font-size: 34px;
  }

  .plan-price .tax-label {
    font-size: 14px;
  }

  .plan-card h3 {
    font-size: 21px;
  }

  .plan-label,
  .limited-label {
    font-size: 12px;
  }
}
