:root {
  --bg: #221820;
  --bg-soft: #2b1f29;
  --surface: #31252f;
  --surface-2: #392b35;
  --surface-3: #281d27;
  --ink: #fbf7f8;
  --muted: #d5c8cd;
  --brand: #8b2432;
  --brand-dark: #681722;
  --brand-soft: rgba(139, 36, 50, 0.18);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(139, 36, 50, 0.32), transparent 32%),
    radial-gradient(circle at top right, rgba(139, 36, 50, 0.14), transparent 24%),
    linear-gradient(180deg, #24161d 0%, #33202a 38%, #35212b 70%, #271921 100%);
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, var(--brand) 0%, #53111b 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  font-weight: 700;
  color: #f3c3ca;
}

.button {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 16px 28px rgba(140, 32, 48, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(140, 32, 48, 0.34);
}

.button-outline,
.cta-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero {
  padding: 3.2rem 0 1.3rem;
}

.hero-inner {
  text-align: center;
  padding: 1.25rem 0 0;
  position: relative;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -1.5rem 8% auto;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 36, 50, 0.16), transparent 68%);
  filter: blur(10px);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #efc0c6;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-text,
.cta-copy p,
.benefit-card p {
  max-width: 64rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.section {
  padding: 1.6rem 0 2rem;
}

.section-tight {
  padding-top: 1rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.metric-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 14px 14px 0 0;
  background: var(--brand);
}

.metric-label {
  display: block;
  margin-top: 0.4rem;
  color: #efc0c6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.metric-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.details-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 36, 50, 0.45);
}

.detail-column,
.benefit-card,
.cta-panel {
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.metrics-grid .metric-card:nth-child(2),
.benefits-grid .benefit-card:nth-child(2) {
  transition-delay: 80ms;
}

.metrics-grid .metric-card:nth-child(3),
.benefits-grid .benefit-card:nth-child(3) {
  transition-delay: 160ms;
}

.metrics-grid .metric-card:nth-child(4),
.benefits-grid .benefit-card:nth-child(4) {
  transition-delay: 240ms;
}

.section-title {
  display: inline-block;
  padding-top: 0.8rem;
  margin: 0 auto 1.3rem;
  font-size: 1.7rem;
  position: relative;
  text-align: center;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  height: 3px;
  background: var(--brand);
  transform: translateX(-50%);
}

.detail-list,
.property-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-list span {
  color: var(--muted);
}

.detail-list strong {
  text-align: right;
}

.property-list {
  display: grid;
  gap: 1.1rem;
}

.property-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.property-list li::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background: var(--brand);
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(140, 32, 48, 0.45);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem 1.5rem;
}

.benefit-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-radius: 14px;
  padding: 1.3rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 32, 48, 0.45);
}

.benefit-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  flex: 0 0 auto;
  margin-top: 0.35rem;
  box-shadow: 0 0 18px rgba(140, 32, 48, 0.45);
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 0.3rem 0 0;
}

.cta-panel {
  padding: 1.7rem;
  border: 1px solid rgba(140, 32, 48, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(139, 36, 50, 0.42), rgba(27, 21, 29, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

.cta-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-copy p {
  margin: 0.8rem 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(12, 10, 14, 0.42);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.deal-modal {
  width: min(760px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 1.65rem;
  border: 1px solid rgba(140, 32, 48, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, #4a3843 0%, #32252f 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  animation: modal-in 220ms ease both;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.modal-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.modal-eyebrow {
  margin-bottom: 0.4rem;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.deal-form {
  display: grid;
  gap: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.deal-form label {
  display: grid;
  gap: 0.45rem;
}

.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.55rem;
  grid-column: 1 / -1;
}

.choice-group legend {
  padding: 0;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #efc0c6;
}

.bubble-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bubble-option {
  position: relative;
}

.bubble-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bubble-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.bubble-option input:checked + span {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.bubble-option span:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.ltv-input {
  font-size: 0.94rem;
}

.deal-form span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #efc0c6;
}

.deal-form input {
  width: 100%;
  min-height: 50px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.deal-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.deal-form input:focus {
  outline: 2px solid rgba(140, 32, 48, 0.2);
  border-color: rgba(140, 32, 48, 0.55);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.submit-button {
  position: relative;
  min-width: 170px;
  justify-content: center;
  gap: 0.55rem;
}

.submit-button-label {
  text-align: center;
  transform: translateX(14px);
}

.submit-button-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
}

.submit-button.is-loading {
  box-shadow: 0 20px 38px rgba(140, 32, 48, 0.38);
}

.submit-button.is-loading .submit-button-spinner {
  opacity: 1;
  transform: scale(1);
  animation: spin 700ms linear infinite;
}

.submit-button:disabled {
  cursor: wait;
}

.success-modal {
  max-width: 560px;
  text-align: center;
}

.success-celebration {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
}

.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle, rgba(139, 36, 50, 0.3), rgba(139, 36, 50, 0.04));
}

.success-ring-one {
  animation: pulse-ring 1.9s ease-out infinite;
}

.success-ring-two {
  inset: 12px;
  border-color: rgba(255, 255, 255, 0.18);
  animation: pulse-ring 1.9s ease-out infinite 220ms;
}

.success-check {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #b4384a 0%, #761a27 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(118, 26, 39, 0.35);
  animation: success-pop 420ms ease-out both 110ms;
}

.success-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.success-note {
  margin: 0.75rem 0 0;
  color: #efc0c6;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--brand) 0%, #53111b 100%);
  color: #fff;
}

.footer-inner {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.footer-brand strong {
  display: block;
  font-size: 1.15rem;
}

.footer-brand p,
.footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  font-weight: 700;
}

.footer-email {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-email:hover {
  color: #ffe2e6;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes success-pop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.92);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (max-width: 900px) {
  .metrics-grid,
  .details-shell,
  .benefits-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .details-shell,
  .benefits-grid {
    display: grid;
  }

  .cta-panel {
    display: grid;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .footer-inner,
  .footer-brand {
    flex-direction: column;
    align-items: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .phone-link {
    display: none;
  }

  .detail-list li {
    flex-direction: column;
  }

  .detail-list strong {
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    justify-content: stretch;
  }

  .modal-actions .button {
    width: 100%;
  }

  .footer-contact {
    justify-items: center;
    text-align: center;
  }
}
