/* ============================
   Intown Cash Buyers LLC
   Shared styles - dark navy + electric blue theme
   ============================ */

:root {
  --bg-black: #020617;
  --bg-dark: #0B1739;
  --bg-card: #0F172A;
  --bg-card-2: #1E293B;
  --primary: #3B82F6;
  --primary-bright: #60A5FA;
  --primary-glow: #06B6D4;
  --accent: #06B6D4;
  --accent-green: #10B981;
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --border: rgba(148, 163, 184, 0.15);
  --border-bright: rgba(59, 130, 246, 0.3);
  --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #06B6D4 100%);
  --gradient-hero: linear-gradient(135deg, #020617 0%, #0B1739 50%, #0F172A 100%);
  --gradient-glow: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { color: var(--primary-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
  color: white !important;
}

.nav-phone {
  color: var(--primary-bright) !important;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--primary-bright);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 .accent {
  background: linear-gradient(135deg, #3B82F6, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ===== FORM CARD ===== */
.form-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(6, 182, 212, 0.3), transparent);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.form-card .form-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.consent-group {
  display: flex;
  gap: 10px;
  margin: 16px 0;
  padding: 12px;
  background: rgba(2, 6, 23, 0.4);
  border-radius: 10px;
  align-items: flex-start;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.consent-group label {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
}

.consent-group label strong { color: var(--text); }

.btn-submit {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  font-family: inherit;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
}

.btn-submit:active { transform: translateY(0); }

.form-footer-links {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

.form-footer-links a {
  color: var(--primary-bright);
  margin: 0 6px;
}

/* ===== SECTION GENERIC ===== */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  color: var(--primary-bright);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg-black);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  color: white;
  font-size: 24px;
  font-weight: 900;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== WHY SELL ===== */
.why-sell {
  background: linear-gradient(180deg, var(--bg-black), var(--bg-dark));
}

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

@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  color: var(--primary-bright);
  margin-bottom: 16px;
  font-size: 24px;
}

.value-card h4 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== COMPARE TABLE ===== */
.compare {
  background: var(--bg-black);
}

.compare-table {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

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

.compare-cell {
  padding: 18px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
}

.compare-cell:first-child {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.compare-row.header-row .compare-cell {
  background: rgba(2, 6, 23, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: var(--text);
}

.compare-row.header-row .us {
  background: var(--gradient-primary);
  color: white !important;
}

.compare-cell.check { color: var(--accent-green); font-size: 18px; font-weight: 700; }
.compare-cell.x { color: #EF4444; font-size: 18px; font-weight: 700; }
.compare-cell.us { background: rgba(59, 130, 246, 0.08); color: var(--text); font-weight: 600; }

@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .compare-cell { padding: 14px 10px; font-size: 12px; }
}

/* ===== TESTIMONIALS / SOLD HOMES ===== */
.testimonials {
  background: linear-gradient(180deg, var(--bg-black), var(--bg-dark));
}

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

@media (max-width: 900px) { .sold-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sold-grid { grid-template-columns: 1fr; } }

.sold-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.sold-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.sold-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.sold-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sold-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-green);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.sold-content {
  padding: 20px;
}

.sold-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}

.sold-meta {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.sold-story {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.testimonial-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.6));
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-black);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: var(--border-bright); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-bright);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.4s, padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  color: var(--text);
}

.cta-box p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h5 {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 320px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 900px;
}

/* ===== STATIC PAGE CONTENT (PP, Terms, About) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
}

.page-hero h1 {
  position: relative;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}

.page-hero p {
  position: relative;
  color: var(--text-muted);
  font-size: 18px;
}

.content-wrap {
  padding: 80px 0;
  background: var(--bg-black);
}

.content-body {
  max-width: 780px;
  margin: 0 auto;
}

.content-body h2 {
  font-size: 28px;
  margin: 48px 0 16px;
  color: var(--text);
}

.content-body h2:first-child { margin-top: 0; }

.content-body h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--text);
}

.content-body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-body ul, .content-body ol {
  color: var(--text-muted);
  margin: 16px 0;
  padding-left: 24px;
}

.content-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-body strong { color: var(--text); }

.content-body a {
  color: var(--primary-bright);
  text-decoration: underline;
}

.highlight-box {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.05));
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.highlight-box p { color: var(--text); }

/* ===== CONTACT CARDS ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.contact-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.contact-card h4 {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-card p {
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}

.contact-card a {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

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

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
