/* ── Hero ── */
.hero {
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(238, 221, 209, 0.7);
  color: var(--brand-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 0.125rem;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.875rem; }
.hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--brand-brown); }
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.625;
}
.hero-subtitle a { text-decoration: underline; }
.hero-subtitle a b { font-weight: 700; }
.span-discount-trigger {
  color: var(--brand-brown);
  border-bottom-width: 1px;
  border-color: var(--brand-brown);
  cursor: pointer;
}

/* ── Comparison Table ── */
.comparison {
  width: 100%;
  padding-bottom: 7rem;
}
.comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* ── Mobile Comparison Cards ── */
.comparison-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compare-card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  padding: 1.5rem 1.25rem;
}
.compare-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.compare-card-row {
  display: flex;
  gap: 1.5rem;
}
.compare-card-col {
  flex: 1;
}
.compare-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.compare-card-label--gray { color: var(--gray-400); }
.compare-card-label--brown { color: var(--brand-brown); }
.compare-card-value {
  font-size: 0.9375rem;
  font-weight: 600;
}
.compare-card-value--gray { color: var(--gray-600); }
.compare-card-value--brown { color: var(--brand-brown); font-weight: 700; }
.compare-card--total {
  background: linear-gradient(135deg, var(--brand-brown) 0%, var(--brand-brown-dark) 100%);
  border-color: transparent;
  color: var(--white);
}
.compare-card--total .compare-card-title {
  color: rgba(255, 255, 255, 0.6);
}
.compare-card--total .compare-card-label {
  color: rgba(255, 255, 255, 0.7);
}
.compare-card--total .compare-card-value--gray {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
}
.compare-card--total .compare-card-value--brown {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ── Desktop Comparison Table (hidden on mobile) ── */
.comparison-card {
  display: none;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.04);
  border: 1px solid var(--gray-100);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  min-width: 700px;
  text-align: left;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 2rem;
}
.comparison-table thead tr {
  background: rgba(249, 250, 251, 0.5);
}
.comparison-table thead th:first-child {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 33.333%;
}
.comparison-table thead th:nth-child(2) {
  border-left: 1px solid var(--gray-100);
  width: 33.333%;
}
.comparison-table thead th:nth-child(3) {
  border-left: 1px solid var(--brand-lightBrown);
  background: rgba(238, 221, 209, 0.1);
  width: 33.333%;
}
.col-header-title {
  font-weight: 700;
  font-size: 1.25rem;
}
.col-header-title--gray { color: var(--gray-600); }
.col-header-title--brown { color: var(--brand-brown); }
.col-header-sub {
  font-size: 11px;
  font-weight: 500;
  margin-top: 0.25rem;
}
.col-header-sub--gray { color: var(--gray-400); }
.col-header-sub--brown { color: rgba(141, 66, 26, 0.7); font-weight: 700; }
.comparison-table tbody tr {
  border-top: 1px solid var(--gray-100);
}
.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--gray-700);
}
.comparison-table tbody td:nth-child(2) {
  border-left: 1px solid var(--gray-100);
  color: var(--gray-500);
}
.comparison-table tbody td:nth-child(3) {
  border-left: 1px solid var(--brand-lightBrown);
  background: rgba(238, 221, 209, 0.1);
  font-weight: 700;
  color: var(--brand-brown);
}
.comparison-table tbody tr.total-row {
  background: rgba(141, 66, 26, 0.05);
}
.comparison-table tbody tr.total-row td:first-child {
  font-weight: 700;
  color: var(--black);
}
.comparison-table tbody tr.total-row td:nth-child(2) {
  color: var(--gray-600);
  font-weight: 700;
  font-size: 1.25rem;
}
.comparison-table tbody tr.total-row td:nth-child(3) {
  font-size: 1.5rem;
}

/* ── Savings Callout ── */
.savings-callout {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(141, 66, 26, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-lightBrown);
}
.savings-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--brand-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.savings-icon i { color: var(--white); font-size: 1.25rem; }
.savings-text {
  color: var(--brand-brown);
  font-weight: 500;
}
.savings-text strong { font-weight: 700; }
.savings-text .underline { text-decoration: underline; }

/* ── Benefits Section ── */
.benefits {
  width: 100%;
  background: var(--white);
  padding: 4rem 0 6rem;
}
.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.benefits-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
}
.benefit-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--brand-lightBrown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.benefit-icon i { color: var(--brand-brown); font-size: 0.75rem; }
.benefit-item h4 {
  font-weight: 700;
  color: var(--black);
}
.benefit-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ── P.IVA Card ── */
.piva-card {
  background: var(--brand-bg);
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.piva-icon {
  width: 4rem;
  height: 4rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.piva-icon i { color: var(--brand-blue); font-size: 2.25rem; }
.piva-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}
.piva-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}
.piva-cta {
  display: block;
  width: 100%;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 600;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  text-align: center;
}
.piva-cta:hover { background: var(--brand-blue-hover); }

/* ── Responsive: md (768px+) ── */
@media (min-width: 768px) {
  .hero-title { font-size: 54px; line-height: 1.05; }
  .comparison-cards { display: none; }
  .comparison-card { display: block; }
}

/* ── Responsive: lg (1024px+) ── */
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
