:root {
  --brand-green: #1b8e4b;
  --brand-green-light: #27a85a;
  --brand-orange: #f2992e;
  --text-dark: #1f2a37;
  --text-muted: #667085;
  --border-color: #e4e7ec;
  --surface: #ffffff;
  --surface-muted: #f6f7fb;
  --shadow-soft: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.energy-reporting-page {
  background: var(--surface);
  color: var(--text-dark);
  font-family: "Inter", "Arial", sans-serif;
}

.energy-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.energy-hero {
  padding: 72px 0 48px;
  text-align: center;
}

.energy-hero h1 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 18px;
}

.energy-hero p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.energy-hero .hero-accent {
  width: 96px;
  height: 4px;
  border-radius: 999px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
}

.energy-section {
  padding: 24px 0 64px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.report-card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.report-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 142, 75, 0.35);
  box-shadow: var(--shadow-soft);
}

.report-card .report-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27, 142, 75, 0.12);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.report-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.report-card .report-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
  margin-top: -4px;
}

.report-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.report-card .report-meta {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.report-card .report-meta strong {
  font-weight: 500;
  color: inherit;
}

.report-card .energy-button {
  margin-top: auto;
  width: 90%;
  box-sizing: border-box;
}

.energy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.energy-button.primary {
  background: var(--brand-green);
  color: #fff;
}

.energy-button.primary:hover {
  background: var(--brand-green-light);
}

.energy-button.outline {
  border-color: rgba(242, 153, 46, 0.4);
  color: var(--brand-orange);
  background: transparent;
}

.energy-button.outline:hover {
  background: rgba(242, 153, 46, 0.12);
}

.energy-trust {
  background: var(--surface-muted);
  padding: 48px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.05);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(242, 153, 46, 0.12);
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-item span {
  font-size: 14px;
  font-weight: 600;
}

.energy-cta {
  padding: 72px 0;
  text-align: center;
}

.energy-cta h2 {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 24px;
  font-weight: 600;
}

.energy-breadcrumbs {
  margin: 20px 0 8px;
  font-size: 12px;
  color: #98a2b3;
}

.energy-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.energy-breadcrumbs a:hover {
  color: var(--brand-green);
}

.energy-detail-header {
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  margin-bottom: 28px;
}

.energy-detail-copy {
  max-width: 640px;
}

.energy-detail-header h1 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 10px;
  line-height: 1.2;
}

.energy-detail-header p {
  color: #556070;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.text-muted {
  color: var(--text-muted);
  font-size: 12px;
}

.quick-facts {
  border-radius: 16px;
  padding: 16px;
  background: rgba(27, 142, 75, 0.08);
  border: 1px solid rgba(27, 142, 75, 0.2);     
}

.quick-facts h3 {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.quick-fact {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.quick-fact:last-child {
  margin-bottom: 0;
}

.quick-fact .text-muted {
  font-size: 12px;
  color: #7a889b;
  letter-spacing: 0.01em;
}

.quick-fact strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text-dark);
}

.quick-fact.is-emphasis strong {
  font-weight: 700;
}

.fact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(27, 142, 75, 0.12);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-icon.orange {
  background: rgba(242, 153, 46, 0.15);
  color: var(--brand-orange);
}

.fact-icon svg {
  width: 16px;
  height: 16px;
}

.content-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
  color: #4b5568;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.content-card::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: auto;
  background: linear-gradient(90deg, rgba(27, 142, 75, 0.2), rgba(27, 142, 75, 0));
}

.content-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.content-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(27, 142, 75, 0.12);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(27, 142, 75, 0.2);
}

.content-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text-dark);
  font-weight: 650;
}

.content-card__accent {
  width: 32px;
  height: 2px;
  margin-top: 6px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-green) 0 78%, var(--brand-orange) 78% 100%);
}

.content-card__body {
  max-width: 460px;
}

.content-card__label {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin-right: 6px;
  border-radius: 999px;
  background: rgba(27, 142, 75, 0.12);
  color: var(--brand-green);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
}

.content-card li {
  margin-bottom: 6px;
}

.content-card li:last-child {
  margin-bottom: 0;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card:hover {
  border-color: rgba(27, 142, 75, 0.25);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.09);
}

@media (min-width: 720px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .content-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .energy-detail-header {
    grid-template-columns: 1fr;
  }

  .energy-detail-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .energy-section {
    padding-top: 16px;
  }

  .energy-breadcrumbs {
    margin-bottom: 6px;
  }

  .energy-detail-header {
    gap: 16px;
    margin-bottom: 24px;
  }
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 16px;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.icon-card {
  border-radius: 14px;
  border: 1px solid var(--border-color);
  padding: 16px;
  background: var(--surface);
}

.icon-card .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(27, 142, 75, 0.12);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.icon-card p,
.icon-card ul {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.icon-card ul li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.icon-card ul li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--brand-green);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.download-card {
  border: 1px solid var(--border-color);
  border-left: 4px solid rgba(27, 142, 75, 0.35);
  border-radius: 14px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--surface-muted);
}

.download-list {
  display: grid;
  gap: 12px;
}

.intro-download-list {
  margin-bottom: 12px;
}

.download-card.info-card {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
}

.download-card.info-card .download-info p {
  margin-top: 8px;
  line-height: 1.6;
}

.download-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27, 142, 75, 0.12);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-icon.instruction {
  background: rgba(242, 153, 46, 0.16);
  color: var(--brand-orange);
}

.download-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.download-info p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.download-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  padding-left: 62px;
}

.download-note-star {
  color: var(--brand-orange);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--brand-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding-bottom: 14px;
}

.faq-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.energy-detail-cta {
  margin-top: 32px;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(27, 142, 75, 0.08);
  text-align: center;
}

.energy-detail-cta h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.help-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  margin-bottom: 24px;
}

.help-card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}

.help-card.benefits-card {
  position: relative;
  border-color: rgba(27, 142, 75, 0.25);
  background: linear-gradient(145deg, rgba(27, 142, 75, 0.08), rgba(27, 142, 75, 0.02));
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.help-card h3 {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

.help-card.benefits-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-list {
  position: relative;
  padding-left: 14px;
  margin-left: 4px;
}

.benefit-list::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 4px;
  width: 1px;
  background: rgba(27, 142, 75, 0.2);
}

.step-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.step-item:not(:last-child) .step-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  width: 2px;
  height: calc(100% - 8px);
  background: rgba(27, 142, 75, 0.2);
}

.benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
}

.benefit-item:last-child {
  padding-bottom: 0;
}

.benefit-item:not(:last-child) {
  border-bottom: 1px solid rgba(31, 42, 55, 0.08);
}

.benefits-card .benefit-item {
  gap: 12px;
  padding: 8px 0 8px 4px;
}

.benefits-card .benefit-item.is-primary {
  padding-top: 6px;
  border-bottom: none;
}

.benefits-card .benefit-item.is-primary + .benefit-item {
  padding-top: 10px;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(242, 153, 46, 0.12);
  color: rgba(242, 153, 46, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits-card .benefit-icon {
  background: rgba(27, 142, 75, 0.1);
  color: rgba(27, 142, 75, 0.65);
}

.benefits-card .benefit-item.is-primary .benefit-icon {
  background: rgba(27, 142, 75, 0.2);
  color: rgba(27, 142, 75, 0.9);
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
}

.benefit-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.benefits-card .benefit-item.is-primary strong {
  font-weight: 700;
}

.benefit-item p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  border: 1px solid rgba(27, 142, 75, 0.2);
  border-radius: 16px;
  padding: 20px;
}

.service-card.orange {
  border-color: rgba(242, 153, 46, 0.3);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

.service-card ul {
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-card li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .energy-hero {
    padding-top: 48px;
  }

  .download-card {
    grid-template-columns: auto 1fr;
    align-items: flex-start;
  }

  .download-card .energy-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .download-note {
    padding-left: 0;
  }
}
