

.guide-intro {
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid #eadcae;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(45, 52, 54, 0.07);
}

.guide-intro__definition {
  margin-top: 0;
  color: var(--guide-ink);
  font-size: clamp(1.05rem, 2.3vw, 1.22rem);
  line-height: 1.9;
}

.column-cost-guide .guide-section {
  border-bottom: 1px solid #ebebeb;
}

.guide-table-scroll {
  overflow-x: auto;
  margin: 26px 0 12px;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}

.cost-table,
.monthly-table {
  min-width: 680px;
}

.cost-table thead th,
.monthly-table thead th {
  background: #2d3436;
  color: #fff;
}

.cost-table tbody tr:nth-child(even),
.monthly-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.monthly-table tbody tr.monthly-row--peak {
  background: #fff5f5;
}

.monthly-table tbody tr.monthly-row--low {
  background: #f0fff4;
}

.monthly-table tbody tr.monthly-row--high-soft {
  background: #fffaf0;
}

.trend-chart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin: 34px 0 18px;
  padding: clamp(24px, 4vw, 34px);
  min-height: 360px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--guide-border);
  border-radius: 18px;
}

.trend-chart__item {
  display: grid;
  grid-template-rows: auto 280px auto;
  align-items: end;
  text-align: center;
}

.trend-chart__value {
  margin: 0 0 10px;
  color: var(--guide-ink);
  font-weight: 800;
}

.trend-chart__bar {
  width: min(88px, 70%);
  justify-self: center;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #f1d35e 0%, #d9a900 100%);
  box-shadow: 0 10px 24px rgba(177, 124, 0, 0.18);
}

.trend-bar--2023 {
  height: 242px;
}

.trend-bar--2024 {
  height: 258px;
}

.trend-bar--2025 {
  height: 268px;
}

.trend-chart__year {
  margin: 10px 0 0;
  color: #5d6265;
  font-weight: 700;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 30px 0;
}

.included-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--guide-border);
  border-radius: 16px;
}

.included-card--yes {
  background: #f0fff4;
  border-top: 5px solid #3b9d69;
}

.included-card--check {
  background: #fff5f5;
  border-top: 5px solid #d9717f;
}

.included-card h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--guide-ink);
  font-size: 1.2rem;
}

.included-card h3 span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #258454;
  font-weight: 900;
}

.included-card--check h3 span {
  color: #ad4e5a;
}

.included-card ul {
  margin: 0;
  padding-left: 1.35em;
}

.included-card li + li {
  margin-top: 9px;
}

.cost-notice {
  margin-top: 24px;
  background: #fff9e6;
  border-left: 5px solid var(--guide-gold);
}

.cost-notice h3 {
  margin: 0 0 12px;
  color: var(--guide-ink);
  font-size: 1.15rem;
}

.license-link-grid,
.saving-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
}

.license-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.license-link-card,
.saving-card {
  padding: clamp(22px, 4vw, 30px);
  background: #fff;
  border: 1px solid var(--guide-border);
  border-top: 5px solid var(--guide-gold);
  border-radius: 16px;
  box-shadow: 0 9px 28px rgba(45, 52, 54, 0.06);
}

.license-link-card {
  display: grid;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.license-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(45, 52, 54, 0.1);
}

.license-link-card strong {
  color: var(--guide-ink);
  font-size: 1.12rem;
}

.license-link-card span {
  color: #5d6265;
  line-height: 1.75;
}

.saving-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.saving-card__label {
  margin: 0 0 8px;
  color: #b17c00;
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.saving-card h3 {
  margin: 0 0 12px;
  color: var(--guide-ink);
  font-size: 1.18rem;
  line-height: 1.5;
}

.saving-card p:last-child {
  margin-bottom: 0;
}

.saving-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #b17c00;
  font-weight: 800;
}

.column-cost-guide .guide-cta {
  margin-bottom: 90px;
}

.column-cost-guide .guide-cta .guide-button {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .license-link-grid,
  .saving-list,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .trend-chart {
    min-width: 560px;
  }

  #trend {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {

  .column-cost-guide .guide-cta {
    margin-bottom: 110px;
  }

  .column-cost-guide .guide-cta .guide-button {
    font-size: 0.95rem;
    padding-right: 22px;
    padding-left: 22px;
  }
}
