/* ============================
   CHECKLIST PAGE — LandlordArmor
   Matches existing brand system
   ============================ */

:root {
  --ink: #050d18;
  --ink2: #0a1929;
  --ink3: #0f2238;
  --navy: #0B1F3A;
  --blue: #1a4a8a;
  --gold: #C8922A;
  --gold2: #e8b04a;
  --gold3: #f5d070;
  --red: #c0392b;
  --red2: #e74c3c;
  --white: #ffffff;
  --off: #f0ece4;
  --muted: rgba(255, 255, 255, 0.42);
  --border: rgba(255, 255, 255, 0.07);
  --gold-border: rgba(200, 146, 42, 0.22);
  --glass: rgba(255, 255, 255, 0.04);
  --glass2: rgba(255, 255, 255, 0.07);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--ink);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(200, 146, 42, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(192, 57, 43, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 50% 100%, rgba(19, 45, 82, 0.5) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ============================
   NAV
   ============================ */

nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(5, 13, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3)) brightness(1.2) contrast(1.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-logo-text {
  line-height: 1;
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-wordmark em {
  font-style: normal;
  color: var(--gold);
}

.nav-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 5px;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--gold3);
}

/* ============================
   HERO
   ============================ */

.hero {
  position: relative;
  z-index: 1;
  padding: 72px 48px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(200, 146, 42, 0.08);
  border: 1px solid rgba(200, 146, 42, 0.22);
  color: var(--gold2);
  padding: 6px 14px;
  border-radius: 4px;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================
   PAGE LAYOUT
   ============================ */

.page-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  align-items: start;
}

/* ============================
   CHECKLIST CARD (LEFT)
   ============================ */

.checklist-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.checklist-card-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(200, 146, 42, 0.03);
}

.checklist-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.checklist-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.checklist-items {
  list-style: none;
  padding: 0;
}

.checklist-item {
  display: flex;
  gap: 20px;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.checklist-item:hover::before {
  transform: scaleY(1);
}

.item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(200, 146, 42, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
  transition: color 0.3s;
}

.checklist-item:hover .item-num {
  color: rgba(200, 146, 42, 0.6);
}

.item-content {
  flex: 1;
}

.item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 6px;
}

.item-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 8px;
}

.item-law {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.55);
  background: rgba(200, 146, 42, 0.06);
  border: 1px solid rgba(200, 146, 42, 0.15);
  padding: 3px 8px;
  border-radius: 3px;
}

.checklist-footer-note {
  padding: 20px 40px;
  background: rgba(200, 146, 42, 0.05);
  border-top: 1px solid var(--gold-border);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  letter-spacing: 0.3px;
}

.checklist-footer-note strong {
  color: var(--gold2);
}

/* ============================
   FORM CARD (RIGHT)
   ============================ */

.form-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card {
  background: var(--glass2);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}

.form-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.form-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 28px;
}

.opt-in-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.field-group input,
.field-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 16px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.field-group input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(200, 146, 42, 0.06);
}

.field-group input.error,
.field-group select.error {
  border-color: var(--red2);
  background-color: rgba(231, 76, 60, 0.06);
}

.field-group select option {
  background: #0a1929;
  color: #fff;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--red), #a93226);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.submit-btn:hover::before {
  transform: translateX(0);
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(192, 57, 43, 0.45);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.form-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
  text-align: center;
}

/* Success state */
.success-state {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #81c784;
  margin: 0 auto 8px;
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.success-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.success-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  transition: all 0.25s;
}

.success-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.35);
}

/* Trust row */
.trust-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 8px;
}

.trust-icon {
  font-size: 18px;
}

.trust-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* Urgency box */
.urgency-box {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.28);
  border-radius: 10px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}

.urgency-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red2));
}

.urgency-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff8a80;
  margin-bottom: 8px;
}

.urgency-dot {
  width: 6px;
  height: 6px;
  background: var(--red2);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

.urgency-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-weight: 300;
}

.urgency-body strong {
  color: #ff8a80;
  font-weight: 600;
}

/* ============================
   PROOF STRIP
   ============================ */

.proof-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink2);
  padding: 40px 48px;
}

.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proof-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================
   FOOTER
   ============================ */

footer {
  background: #020810;
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.3), transparent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(200, 146, 42, 0.2));
}

.footer-brand em {
  font-style: normal;
  color: var(--gold);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================
   ANIMATIONS
   ============================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .form-col {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  nav,
  footer,
  .proof-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding: 48px 20px 36px;
  }

  .page-layout {
    padding: 32px 20px;
  }

  .checklist-item,
  .checklist-card-header,
  .checklist-footer-note {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-card {
    padding: 28px 22px;
  }

  .proof-inner {
    flex-wrap: wrap;
    gap: 24px;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    flex: 0 0 calc(50% - 12px);
    padding: 0;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .preview-badges {
    gap: 6px;
  }

  .trust-row {
    flex-direction: column;
  }

  .trust-item {
    flex-direction: row;
    justify-content: center;
    padding: 10px 16px;
  }
}
