/* Shared buttons */

.btn-primary {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.18s,transform 0.12s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--light);
  transition: border-color 0.18s,transform 0.12s;
  display: inline-block;
}

/* HERO — centered */

.hero {
  padding: 160px 48px 110px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 30%,rgba(8,122,107,0.07) 0%,transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
  width: fit-content;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(52px,7vw,108px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 32px;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 22px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

/* EXEC SUMMARY BAND */

.exec {
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  background: var(--off-white);
}

.exec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.exec-cell {
  padding: 44px 28px;
  border-right: 1px solid var(--light);
}

.exec-cell:last-child {
  border-right: none;
}

.exec-num {
  font-size: clamp(36px,4vw,52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
}

.exec-num span {
  color: var(--teal);
}

.exec-num .small {
  font-size: 0.55em;
  color: var(--mid);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.exec-label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mid);
}

.exec-label strong {
  color: var(--ink);
  font-weight: 600;
}

/* AT A GLANCE */

.glance {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.section-h2 {
  font-size: clamp(32px,4.2vw,58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--black);
  max-width: 860px;
  margin-bottom: 20px;
}

.section-h2 em {
  font-style: normal;
  color: var(--teal);
}

.section-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 680px;
  margin-bottom: 64px;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.glance-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: box-shadow 0.2s,transform 0.2s;
}

.glance-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.glance-ico {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 18px;
}

.glance-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glance-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 10px;
}

.glance-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid);
}

.glance-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* HEAD-TO-HEAD TABLE */

.compare {
  background: var(--off-white);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.compare-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px;
}

.compare-table-wrap {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--light);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: left;
  padding: 18px 24px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light);
  font-weight: 500;
}

.compare-table th.db-col {
  color: var(--teal);
  font-weight: 700;
  background: var(--teal-light);
}

.compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--light);
  vertical-align: top;
  line-height: 1.5;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .row-label {
  font-weight: 700;
  color: var(--ink);
  width: 30%;
}

.compare-table .db-cell {
  color: var(--ink);
  font-weight: 600;
  background: rgba(8,122,107,0.035);
}

.compare-table .db-cell strong {
  color: var(--teal);
}

.compare-table .sf-cell {
  color: var(--mid);
}

.compare-table .sf-cell strong {
  color: var(--ink);
  font-weight: 600;
}

.check {
  color: var(--teal);
  font-weight: 700;
  margin-right: 6px;
}

.dash {
  color: var(--warn);
  font-weight: 700;
  margin-right: 6px;
}

.compare-footnote {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 24px;
  max-width: 900px;
}

/* REAL SCENARIO */

.scenario {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.scenario-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.scenario-head .section-h2 {
  text-align: center;
}

.scenario-head .section-sub {
  text-align: center;
}

.scenario-desc {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--off-white);
  padding: 12px 20px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 8px;
}

.scenario-cards {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.scen-card {
  padding: 40px 36px;
  border-radius: 18px;
  border: 1px solid var(--light);
  display: flex;
  flex-direction: column;
}

.scen-card.db {
  background: linear-gradient(180deg,var(--teal-light) 0%,var(--white) 80%);
  border-color: rgba(8,122,107,0.25);
  box-shadow: 0 16px 60px rgba(8,122,107,0.08);
}

.scen-card.sf {
  background: var(--white);
}

.scen-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.scen-card.db .scen-tag {
  color: var(--teal);
}

.scen-card.sf .scen-tag {
  color: var(--mid);
}

.scen-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 6px;
}

.scen-price {
  font-size: clamp(48px,6vw,72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--black);
  margin: 18px 0 6px;
}

.scen-card.db .scen-price {
  color: var(--teal);
}

.scen-price .plus {
  color: var(--mid);
  font-size: 0.6em;
  font-weight: 700;
  vertical-align: top;
}

.scen-unit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 22px;
}

.scen-breakdown {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  padding-top: 22px;
  border-top: 1px solid var(--light);
}

.scen-breakdown strong {
  color: var(--ink);
  font-weight: 600;
}

.scen-footer {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px;
  color: var(--mid);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

.scen-card.db .scen-footer {
  color: var(--teal);
  font-weight: 500;
}

.scen-savings {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  width: fit-content;
}

.scen-savings::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

/* WHERE WE EXCEL */

.excel {
  background: var(--white);
  padding: 120px 48px;
}

.excel-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.excel-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.excel-card {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 40px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.excel-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.14em;
  padding-top: 6px;
}

.excel-body h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}

.excel-body h3 em {
  font-style: normal;
  color: var(--teal);
}

.excel-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 18px;
}

.excel-body p strong {
  color: var(--ink);
  font-weight: 600;
}

.excel-contrast {
  display: flex;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--light);
  font-size: 13px;
  line-height: 1.6;
}

.excel-contrast .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  min-width: 72px;
  padding-top: 2px;
}

.excel-contrast .txt {
  color: var(--mid);
}

.excel-contrast .txt strong {
  color: var(--ink);
  font-weight: 600;
}

/* THE FINE PRINT / POKE SECTION */

.fineprint {
  background: var(--off-white);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 120px 48px;
}

.fineprint-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.fineprint-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 48px;
  align-items: end;
}

.fineprint-h2 {
  font-size: clamp(30px,3.6vw,48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
}

.fineprint-h2 em {
  font-style: normal;
  color: var(--teal);
}

.fineprint-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--mid);
}

.fineprint-lede strong {
  color: var(--ink);
  font-weight: 600;
}

.fineprint-list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 16px;
  overflow: hidden;
}

.fp-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 32px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--light);
  align-items: center;
}

.fp-row:last-child {
  border-bottom: none;
}

.fp-item {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.fp-sf {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.55;
}

.fp-sf strong {
  color: var(--warn);
  font-weight: 600;
}

.fp-db {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  line-height: 1.55;
}

.fp-db::before {
  content: '✓ ';
  color: var(--teal);
  font-weight: 800;
}

.fp-ico {
  width: 34px;
  height: 34px;
  background: var(--warn-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warn);
  flex-shrink: 0;
}

.fp-ico svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA */

.cta {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 40%,rgba(8,122,107,0.07) 0%,transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cta-tag::before,.cta-tag::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
}

.cta-h2 {
  font-size: clamp(48px,7.5vw,108px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--black);
  max-width: 900px;
  margin: 0 auto 30px;
}

.cta-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 620px;
  margin: 0 auto 44px;
}

.cta-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.cta-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* Mobile */

@media (max-width:1100px) {
  .hero {
    padding: 110px 24px 70px;
  }
  .exec-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .exec-cell {
    border-right: none;
    border-bottom: 1px solid var(--light);
  }
  .exec-cell:nth-child(even) {
    border-right: none;
  }
  .exec-cell:nth-child(odd) {
    border-right: 1px solid var(--light);
  }
  .exec-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .glance {
    padding: 80px 24px;
  }
  .glance-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .compare-inner {
    padding: 80px 24px;
  }
  .compare-table {
    font-size: 14px;
  }
  .compare-table th,.compare-table td {
    padding: 14px 16px;
  }
  .compare-table .row-label {
    width: auto;
  }
  .scenario {
    padding: 80px 24px;
  }
  .scenario-cards {
    grid-template-columns: 1fr;
  }
  .excel {
    padding: 80px 24px;
  }
  .excel-grid {
    grid-template-columns: 1fr;
  }
  .excel-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .fineprint {
    padding: 80px 24px;
  }
  .fineprint-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fp-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .fp-ico {
    display: none;
  }
  .cta {
    padding: 80px 24px;
  }
}
