/* ─── SECTION SCAFFOLD ─── */
.section {
  margin: 25px 30px;
  background: #fff;
  border-radius: 25px;
  box-shadow: var(--rev-shadow-card);
  overflow: hidden;
}

.section-pad {
  padding: clamp(40px, 6vw, 90px) clamp(28px, 5vw, 73px) clamp(28px, 3.5vw, 52px);
}

@media (max-width: 720px) {
  .section {
    margin: 16px 12px;
    border-radius: 20px;
  }
}

.section-dark {
  margin: 25px 30px;
  background: var(--rev-navy-900);
  color: #fff;
  border-radius: 25px;
  box-shadow: var(--rev-shadow-card);
  overflow: hidden;
  position: relative;
}

.section-dark::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--rev-blue-orb-15);
  filter: blur(60px);
  pointer-events: none;
}

@media (max-width: 720px) {
  .section-dark {
    margin: 16px 12px;
    border-radius: 20px;
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  margin: 90px 30px 0;
  border-radius: 40px;
  overflow: hidden;
  background: url('../../images/hero-section-backgroud-blue-gradient.webp') center center / cover no-repeat;
  color: #fff;
  padding: clamp(16px, 2vw, 28px) clamp(32px, 6vw, 80px) clamp(24px, 3vw, 40px);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,18,45,0.25) 0%, rgba(4,18,45,0.65) 100%);
}

@media (max-width: 720px) {
  .hero {
    margin: 16px 12px;
    border-radius: 20px;
    padding: 40px 24px 60px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rev-blue-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  margin-top: 20px;
  margin-bottom: 16px;
}
/* NO ::before on .hero-eyebrow — sitewide ban */

.hero-eyebrow .live-dot,
.sc-float-tag .live-dot {
  width: 7px;
  height: 7px;
}

.sc-float-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 12px;
  margin-top: 20px;
  margin-bottom: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--rev-blue-300);
}

.hero-body-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.hero-body-grid > div {
  min-width: 0;
}

@media (max-width: 900px) {
  .hero-body-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px 14px 26px;
  background: var(--rev-blue);
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-hero-primary:hover { background: #0048c8; }

.btn-hero-primary .circle-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-hero-ghost:hover { background: rgba(255,255,255,0.22); }

.hero-stats {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 6px;
  font-family: 'DM Mono', monospace;
}

.hero-stat-num {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin: 0;
}

.hero-stat-num.neg { color: var(--rev-neg); }
.hero-stat-num.pos { color: var(--rev-blue-300); }

.hero-stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 4px 0 0;
}

.hero-note {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.966);
  max-width: 380px;
  font-family: 'DM Mono', monospace;
}

/* ─── Scorecard card ─── */
.scorecard-shell {
  background: var(--rev-navy-900);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}

.sc-badge {
  background: rgba(255,255,255,0.07);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.sc-badge-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rev-blue);
  animation: pulse-blue 1.4s infinite;
  flex-shrink: 0;
}

@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,86,235,0.7); }
  70% { box-shadow: 0 0 0 5px rgba(0,86,235,0); }
}

.sc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Mono', monospace;
}

.sc-date {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Mono', monospace;
}

.sc-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.sc-total-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 5px;
  font-family: 'DM Mono', monospace;
}

.sc-total {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.0;
}

.sc-mix {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 5px 0 0;
  font-family: 'DM Mono', monospace;
}

.sc-row {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sc-row:last-child { border-bottom: none; }

.sc-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-row-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-row-dot.blue { background: var(--rev-blue); animation: pulse-blue 1.4s infinite; }
.sc-row-dot.warn { background: var(--rev-warn); }
.sc-row-dot.neg  { background: var(--rev-neg); }

.sc-row-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Mono', monospace;
}

.sc-row-val {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-family: 'DM Mono', monospace;
}

.sc-row-val.blue { color: rgba(255,255,255,0.9); }
.sc-row-val.warn { color: var(--rev-warn); }
.sc-row-val.neg  { color: var(--rev-neg); }

.sc-cta {
  padding: 14px 20px;
  background: var(--rev-blue);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sc-cta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 3px;
  font-family: 'DM Mono', monospace;
}

.sc-cta-text {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.sc-footnote {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  font-family: 'DM Mono', monospace;
}

/* ─── Section eyebrow ─── */
.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rev-blue);
  font-family: 'DM Mono', monospace;
  margin-bottom: 20px;
}
/* NO ::before on .s-eyebrow — sitewide ban */

.s-eyebrow-light { color: var(--rev-blue-300); }

.s-title {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.s-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--rev-text-muted);
  max-width: 600px;
}

.s-lede-dark { color: rgba(255,255,255,0.65); }

.s-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

@media (max-width: 800px) {
  .s-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ─── Five leaks ─── */
.leak-list { border-top: 1px solid rgba(255,255,255,0.1); }

.leak-item {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

@media (max-width: 900px) {
  .leak-item { grid-template-columns: 1fr; gap: 16px; }
}

.leak-num {
  font-size: 48px;
  font-weight: 500;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.leak-title-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
  margin-bottom: 6px;
}

.leak-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}

.leak-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.leak-stat-box {
  background: rgba(208,129,129,0.08);
  border: 1px solid rgba(208,129,129,0.2);
  border-radius: 14px;
  padding: 18px 20px;
}

.leak-stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rev-neg);
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
}

.leak-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--rev-neg);
  line-height: 1.1;
}

.leak-stat-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  font-family: 'DM Mono', monospace;
}

.leak-footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.leak-footer-quote {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  max-width: 680px;
}

.leak-footer-cta { margin-top: 20px; }

.link-cta-light {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.link-cta-light:hover { color: #fff; }

/* ─── Three alerts ─── */
.alerts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--rev-navy-900);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .alerts-grid { grid-template-columns: 1fr; }
}

.alert-card {
  padding: 36px 32px;
  border-right: 1px solid rgba(4,18,45,0.12);
  display: flex;
  flex-direction: column;
}

.alert-card:last-child { border-right: none; }

@media (max-width: 860px) {
  .alert-card { border-right: none; border-bottom: 1px solid rgba(4,18,45,0.12); }
  .alert-card:last-child { border-bottom: none; }
}

.alert-card-dark { background: var(--rev-navy-900); color: #fff; }

.alert-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--rev-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  margin-bottom: 12px;
}

.alert-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rev-text-muted);
  font-family: 'DM Mono', monospace;
  margin-bottom: 16px;
}

.alert-tag-dark { color: rgba(255,255,255,0.4); }

.alert-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.alert-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--rev-text-muted);
  flex: 1;
  margin-bottom: 20px;
}

.alert-body-dark { color: rgba(255,255,255,0.65); }

.alert-footer {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-blue);
  font-family: 'DM Mono', monospace;
  padding-top: 16px;
  border-top: 1px solid rgba(4,18,45,0.1);
  margin-top: auto;
}

.alert-footer-dark { border-top-color: rgba(255,255,255,0.1); }

.delivery-strip {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(4,18,45,0.1);
}

.delivery-text {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--rev-text-body);
}

/* ─── Moneyball form ─── */
.mb-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 860px) {
  .mb-grid { grid-template-columns: 1fr; gap: 36px; }
}

.mb-card {
  background: var(--rev-navy-900);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 36px 32px;
}

.mb-card-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.mb-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rev-blue);
  animation: pulse-blue 1.4s infinite;
}

.mb-card-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
}

.mb-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.mb-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.mb-field { margin-bottom: 18px; }

.mb-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
}

.mb-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 0;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.mb-input::placeholder { color: rgba(255,255,255,0.25); }
.mb-input:focus { outline: none; border-bottom-color: var(--rev-blue); }

.mb-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}

.mb-select option { background: var(--rev-navy-900); color: #fff; }

.mb-submit {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--rev-blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.mb-submit:hover { background: #0048c8; }

.mb-fine {
  font-size: 10px;
  color: rgba(255,255,255,0.966);
  margin-top: 10px;
  text-align: center;
  font-family: 'DM Mono', monospace;
}

/* ─── Integrations grid ─── */
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .int-grid { grid-template-columns: 1fr; }
}

.int-card { background: var(--rev-navy-900); padding: 32px 28px; }

.int-card-accent {
  background: rgba(0,86,235,0.12);
  border: 1px solid rgba(0,86,235,0.25);
}

.int-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
  margin-bottom: 4px;
}

.int-tag-live { color: var(--rev-blue-300); }

.int-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.int-badge-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-blue-300);
  font-family: 'DM Mono', monospace;
}

.int-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 14px; }

.int-list { list-style: none; padding: 0; margin: 0 0 16px; }

.int-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  font-family: 'DM Mono', monospace;
}

.int-list li::before { content: "- "; color: rgba(255,255,255,0.966); }

.int-body { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 16px; }

.int-footer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'DM Mono', monospace;
  line-height: 1.5;
}

.int-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'DM Mono', monospace;
  transition: color 0.2s;
}

.int-link:hover { color: #fff; }

.int-footer-quote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: clamp(17px, 1.8vw, 22px);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  font-style: italic;
  max-width: 640px;
}

/* ─── Why Roofing grid ─── */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(4,18,45,0.08);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 860px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fit-grid { grid-template-columns: 1fr; } }

.fit-card { background: #fff; padding: 32px 28px; }

.fit-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rev-blue);
  font-family: 'DM Mono', monospace;
  margin-bottom: 12px;
}

.fit-title { font-size: 18px; font-weight: 600; color: var(--rev-navy-900); margin-bottom: 12px; line-height: 1.25; }
.fit-body { font-size: 14px; color: var(--rev-text-muted); line-height: 1.7; }

/* ─── Proof cards ─── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 720px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-card {
  background: var(--rev-navy-900);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.proof-placeholder-banner {
  background: rgba(208,129,129,0.15);
  border-bottom: 1px solid rgba(208,129,129,0.25);
  padding: 10px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(208,129,129,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-card-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }

.proof-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

.proof-meta-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
}

.proof-leak-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
  margin-bottom: 12px;
}

.proof-num {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--rev-blue-300);
  line-height: 1.0;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.proof-quote { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.75); flex: 1; margin-bottom: 28px; }

.proof-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.proof-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rev-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
}

.proof-name { font-size: 14px; font-weight: 600; color: #fff; }

.proof-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
}

.proof-footnote {
  font-size: 12px;
  color: var(--rev-text-muted);
  text-align: center;
  margin-top: 20px;
  font-family: 'DM Mono', monospace;
}

/* ─── FAQ ─── */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 860px) { .faq-wrap { grid-template-columns: 1fr; gap: 32px; } }

.faq-item { border-bottom: 1px solid rgba(4,18,45,0.1); }
.faq-item:first-child { border-top: 2px solid var(--rev-navy-900); }
.faq-item:last-child  { border-bottom: 2px solid var(--rev-navy-900); }

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--rev-navy-900);
  gap: 16px;
}

.faq-icon {
  font-size: 26px;
  font-weight: 300;
  color: var(--rev-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

details[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 48px 20px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--rev-text-muted);
}

/* ─── CTA section ─── */
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 52px;
  align-items: end;
  margin-top: 36px;
}

@media (max-width: 800px) { .cta-grid { grid-template-columns: 1fr; gap: 28px; } }

.cta-lede {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 10px 16px 28px;
  background: var(--rev-blue);
  color: #fff;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-cta-primary:hover { background: #0048c8; }

.btn-cta-primary .circle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-cta-ghost:hover { background: rgba(255,255,255,0.2); }

.cta-note {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Mono', monospace;
}

.cta-aside { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }

.cta-aside-text {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ─── Buttons (shared) ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px 14px 24px;
  background: var(--rev-blue);
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-primary:hover { background: #0048c8; }

.btn-primary .circle-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #fff;
  color: var(--rev-navy-900);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-white:hover { background: var(--rev-blue-100); }

/* ─── Mobile responsive ─── */
@media (max-width: 640px) {
  .btn-hero-primary,
  .btn-cta-primary {
    font-size: 13px !important;
    padding: 10px 6px 10px 16px !important;
  }
  .btn-hero-primary .circle-arrow,
  .btn-cta-primary .circle-arrow {
    width: 28px !important;
    height: 28px !important;
  }
  .mb-submit {
    font-size: 12px !important;
    white-space: nowrap !important;
    padding: 10px 4px !important;
    margin-top: 8px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
