.trz-solar-page {
  --trz-dark: #111827;
  --trz-text: #334155;
  --trz-muted: #64748b;
  --trz-primary: #f7b500;
  --trz-primary-dark: #d89b00;
  --trz-green: #15945f;
  --trz-soft: #f7fafc;
  --trz-border: #e2e8f0;
  --trz-white: #ffffff;
  font-family: inherit;
  color: var(--trz-dark);
  background: #ffffff;
  overflow-x: hidden;
}

.trz-solar-page,
.trz-solar-page * {
  box-sizing: border-box;
}

.trz-solar-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.trz-solar-page h1,
.trz-solar-page h2,
.trz-solar-page h3,
.trz-solar-page p {
  margin-top: 0;
}

.trz-solar-page p {
  color: var(--trz-text);
  line-height: 1.75;
  font-size: 16px;
}

.trz-solar-hero {
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 85% 12%, rgba(247,181,0,0.22), transparent 28%),
    linear-gradient(135deg, #fff9e9 0%, #ffffff 45%, #eefaf4 100%);
}

.trz-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 46px;
  align-items: center;
}

.trz-badge,
.trz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(247, 181, 0, 0.15);
  color: #805c00;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.trz-badge::before,
.trz-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--trz-primary);
  flex: 0 0 auto;
}

.trz-hero-content h1 {
  margin: 18px 0 18px;
  color: var(--trz-dark);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -1.8px;
  font-weight: 900;
}

.trz-hero-content p {
  max-width: 670px;
  margin-bottom: 0;
  font-size: 18px;
}

.trz-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.trz-btn-primary {
  background: var(--trz-primary);
  color: #1b1400 !important;
  box-shadow: 0 14px 34px rgba(247,181,0,0.28);
}

.trz-btn-primary:hover {
  background: var(--trz-primary-dark);
  transform: translateY(-2px);
}

.trz-btn-outline {
  background: #ffffff;
  border-color: var(--trz-border);
  color: var(--trz-dark) !important;
}

.trz-btn-outline:hover {
  border-color: var(--trz-primary);
  transform: translateY(-2px);
}

.trz-btn-white {
  background: #ffffff;
  color: var(--trz-dark) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,0.15);
}

.trz-btn-white:hover {
  transform: translateY(-2px);
}

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

.trz-trust-grid div {
  padding: 16px;
  border: 1px solid var(--trz-border);
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
}

.trz-trust-grid strong {
  display: block;
  color: var(--trz-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.trz-trust-grid span {
  display: block;
  color: var(--trz-muted);
  font-size: 13px;
  line-height: 1.4;
}

.trz-hero-visual {
  position: relative;
  min-width: 0;
}

.trz-solar-svg-card,
.trz-illustration-box {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: 0 26px 70px rgba(15,23,42,0.16);
}

.trz-solar-svg-card svg,
.trz-illustration-box svg {
  width: 100%;
  height: auto;
  display: block;
}

.trz-estimate-box {
  position: relative;
  z-index: 2;
  width: calc(100% - 56px);
  margin: -92px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 24px 56px rgba(15,23,42,0.18);
}

.trz-estimate-box h2 {
  margin: 0 0 9px;
  color: var(--trz-dark);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
}

.trz-estimate-box p {
  margin: 0 0 14px;
  color: var(--trz-muted);
  font-size: 15px;
  line-height: 1.65;
}

.trz-estimate-box a {
  color: var(--trz-green) !important;
  font-weight: 900;
  text-decoration: none !important;
}

.trz-section {
  padding: 76px 0;
}

.trz-soft-bg {
  background: var(--trz-soft);
}

.trz-section-head {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.trz-section-head .trz-kicker {
  margin-left: auto;
  margin-right: auto;
}

.trz-solar-page h2 {
  margin: 14px 0 14px;
  color: var(--trz-dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
}

.trz-solar-page h3 {
  color: var(--trz-dark);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.trz-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.trz-align-center {
  align-items: center;
}

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

.trz-problem-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--trz-border);
  box-shadow: 0 12px 32px rgba(15,23,42,0.05);
}

.trz-problem-item span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(247,181,0,0.18);
  color: #805c00;
  font-weight: 900;
}

.trz-problem-item p {
  margin: 0;
}

.trz-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trz-service-grid article {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--trz-border);
  box-shadow: 0 16px 44px rgba(15,23,42,0.06);
  transition: 0.25s ease;
}

.trz-service-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(247,181,0,0.75);
}

.trz-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff5d6;
  font-size: 27px;
}

.trz-service-grid h3 {
  margin-bottom: 10px;
}

.trz-service-grid p {
  margin: 0;
  color: var(--trz-muted);
}

.trz-check-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.trz-check-list div {
  position: relative;
  padding-left: 38px;
}

.trz-check-list div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--trz-green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.trz-check-list strong {
  display: block;
  color: var(--trz-dark);
  font-size: 18px;
  margin-bottom: 4px;
}

.trz-check-list p {
  margin: 0;
  color: var(--trz-muted);
}

.trz-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trz-step-grid > div {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--trz-border);
  box-shadow: 0 14px 36px rgba(15,23,42,0.05);
}

.trz-step-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--trz-dark);
  color: #ffffff;
  font-weight: 900;
}

.trz-step-grid h3 {
  margin-bottom: 10px;
}

.trz-step-grid p {
  margin: 0;
  color: var(--trz-muted);
}

.trz-dark-section {
  background: var(--trz-dark);
  color: #ffffff;
}

.trz-dark-section h2 {
  color: #ffffff;
}

.trz-kicker-dark {
  background: rgba(255,255,255,0.13);
  color: #ffffff;
}

.trz-usecase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trz-usecase-grid div {
  padding: 17px 12px;
  border-radius: 18px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.trz-cta-section {
  padding: 68px 0;
  background: linear-gradient(135deg, #15945f, #0d6846);
  color: #ffffff;
}

.trz-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.trz-cta-section h2,
.trz-cta-section p {
  color: #ffffff;
}

.trz-cta-section p {
  max-width: 760px;
  margin-bottom: 0;
  opacity: 0.92;
}

.trz-related-section {
  background: #fff9e9;
}

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

.trz-related-grid a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(247,181,0,0.28);
  color: var(--trz-dark) !important;
  font-weight: 900;
  text-decoration: none !important;
  transition: 0.25s ease;
}

.trz-related-grid a::after {
  content: "→";
  color: var(--trz-primary-dark);
}

.trz-related-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--trz-primary);
}

.trz-faq-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.trz-faq-item {
  border: 1px solid var(--trz-border);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.trz-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: var(--trz-dark);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.trz-faq-question span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff4ce;
  color: #805c00;
  font-weight: 900;
}

.trz-faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--trz-muted);
  line-height: 1.75;
}

.trz-faq-item.is-open .trz-faq-answer {
  display: block;
}

.trz-faq-item.is-open .trz-faq-question span {
  background: var(--trz-primary);
  color: #1b1400;
}

.trz-final-cta {
  padding: 78px 0;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(247,181,0,0.18), transparent 34%),
    #ffffff;
}

.trz-final-cta h2 {
  margin-bottom: 12px;
}

.trz-final-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}

@media (max-width: 1024px) {
  .trz-hero-grid {
    grid-template-columns: 1fr;
  }

  .trz-hero-content {
    text-align: left;
  }

  .trz-hero-visual {
    max-width: 720px;
  }

  .trz-two-col,
  .trz-cta-grid {
    grid-template-columns: 1fr;
  }

  .trz-service-grid,
  .trz-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trz-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trz-usecase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trz-cta-grid {
    text-align: center;
  }

  .trz-cta-grid .trz-btn {
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .trz-solar-container {
    width: min(100% - 24px, 1180px);
  }

  .trz-solar-hero {
    padding: 52px 0 50px;
  }

  .trz-section {
    padding: 54px 0;
  }

  .trz-hero-content h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .trz-hero-content p {
    font-size: 16px;
  }

  .trz-button-row,
  .trz-btn {
    width: 100%;
  }

  .trz-trust-grid,
  .trz-service-grid,
  .trz-step-grid,
  .trz-usecase-grid,
  .trz-related-grid {
    grid-template-columns: 1fr;
  }

  .trz-estimate-box {
    width: calc(100% - 24px);
    margin-top: -42px;
    padding: 20px;
  }

  .trz-estimate-box h2 {
    font-size: 20px;
  }

  .trz-solar-page h2 {
    font-size: 31px;
  }

  .trz-problem-item {
    grid-template-columns: 46px 1fr;
    padding: 16px;
  }

  .trz-problem-item span {
    width: 42px;
    height: 42px;
  }

  .trz-faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .trz-faq-answer {
    padding: 0 18px 18px;
  }
}