/* ============================================================
   CASASINDHU TENANT PAGE - styles.css
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #1a7080;
  --primary-dark: #125a67;
  --primary-light: #e6f4f6;
  --green: #10b981;
  --green-dark: #059669;
  --gold: #c9933a;
  --gold-light: #fdf3e3;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --text-dark: #0f2027;
  --text-body: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 72px;
  --transition: all 0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--text-body);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section ---- */
.section { padding: 80px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-label svg { flex-shrink: 0; color: var(--gold); }

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,112,128,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,112,128,0.4);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 16px;
  border-radius: 12px;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 60px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.header-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.header-cta:hover { background: var(--primary-dark); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: calc(var(--header-height) + 44px) 0 80px;
  background: linear-gradient(160deg, #f0faf8 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
}

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

.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

/* no-spam badge */
.no-spam-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #dcfce7, #d1fae5);
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.no-spam-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-body);
  margin-bottom: 10px;
  max-width: 480px;
  line-height: 1.55;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.trust-line svg { flex-shrink: 0; }

/* ---- Hero Form ---- */
.hero-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  width: 100%;
}

.form-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.form-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: var(--text-dark);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,112,128,0.12);
}

.form-field-full { margin-bottom: 12px; }

.phone-input-wrap { position: relative; }
.phone-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  pointer-events: none;
}
.phone-input-wrap input { padding-left: 42px; }

.privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.wa-secondary-cta {
  margin-top: 14px;
  text-align: center;
}
.wa-secondary-cta p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* form feedback */
.form-error-msg {
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}
.form-success-wrapper {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 56px; height: 56px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--green-dark);
}
.success-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.success-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* Hero background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(26,112,128,0.10) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--primary);
  padding: 16px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.trust-item svg { opacity: 0.85; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-section { background: var(--bg-light); text-align: center; }

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

.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f43f5e, #fb923c);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pain-icon {
  width: 52px; height: 52px;
  background: #fff0f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #dc3545;
}

.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: #fff; text-align: center; }

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

.step-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  margin: 0 auto 18px;
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--primary);
  opacity: 0.4;
  font-size: 24px;
}

/* HOW section CTA */
.how-cta { margin-top: 40px; }

/* ============================================================
   PRODUCT VISUAL / LISTING PREVIEW
   ============================================================ */
.product-section { background: var(--bg-light); }

.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-text .section-title { margin-bottom: 20px; }
.product-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.product-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.bullet-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.product-bullet h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.product-bullet p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Property card mock */
.property-mock-wrap { position: relative; }

.match-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(16,185,129,0.35);
  z-index: 5;
}

.property-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
}

.prop-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  cursor: pointer;
}
.prop-card:hover { background: var(--primary-light); border-color: var(--primary); }
.prop-card.featured { background: linear-gradient(135deg, #e6f4f6, #f0fdf8); border-color: var(--primary); }

.prop-avatar {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.prop-info { flex: 1; min-width: 0; }
.prop-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.prop-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.prop-badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.prop-badge.match {
  background: #dcfce7;
  color: #065f46;
}
.prop-badge.new {
  background: #dbeafe;
  color: #1e40af;
}

.prop-connect-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.prop-connect-btn:hover { background: var(--primary-dark); }

.prop-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.prop-stat {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}
.prop-stat-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.prop-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ============================================================
   LIVE ACTIVITY TICKER
   ============================================================ */
.live-ticker-bar {
  background: var(--primary-light);
  border-top: 1px solid #b2dde6;
  border-bottom: 1px solid #b2dde6;
  padding: 14px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.ticker-live-dot {
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.ticker-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

#ticker-message {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; text-align: center; }

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

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card.featured {
  background: linear-gradient(135deg, #e6f4f6, #f0fdf8);
  border-color: var(--primary);
}

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-quote {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.author-info {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   WHATSAPP CTA SECTION
   ============================================================ */
.wa-section {
  background: linear-gradient(135deg, #0f7040 0%, #128C7E 100%);
  padding: 64px 0;
  text-align: center;
}
.wa-section h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}
.wa-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.wa-btn {
  background: #fff;
  color: #0f7040;
  padding: 17px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.wa-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ============================================================
   URGENCY SECTION
   ============================================================ */
.urgency-section {
  background: var(--bg-light);
  text-align: center;
}
.urgency-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.urgency-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.urgency-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.urgency-spots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.urgency-spot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.urgency-spot-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.urgency-spot-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   FULL-SCREEN LEAD FORM SECTION
   ============================================================ */
.lead-form-section { background: #fff; }
.lead-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.lead-form-wrap .section-title { margin-bottom: 8px; font-size: clamp(22px,3.5vw,34px); }
.lead-form-wrap .section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.lead-form { display: flex; flex-direction: column; gap: 14px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ============================================================
   STICKY FLOATING WA BUTTON
   ============================================================ */
.sticky-wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: auto; height: 54px;
  padding: 0 22px;
  background: var(--whatsapp);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 999;
  transition: var(--transition);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.sticky-wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
  color: #fff;
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 99;
  gap: 10px;
}
.sticky-mobile-cta .btn {
  flex: 1;
  justify-content: center;
  height: 48px;
  padding: 0 14px;
  font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
}
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 220px; margin-top: 8px; }
.footer-logo { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); display: block; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 4px;
}
.footer-col a { font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { align-items: center; text-align: center; }
  .trust-line { justify-content: center; }
  .hero-subheadline { text-align: center; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .product-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .logo-img { height: 50px; }
  .nav-links { display: none; }
  .header-cta { display: none; }
  .sticky-mobile-cta { display: flex; }
  .sticky-wa-float { display: none !important; }

  body { padding-bottom: 74px; }

  .section { padding: 52px 0; }

  .hero {
    padding: calc(var(--header-height) + 28px) 0 44px;
    overflow: hidden;
  }

  .hero-headline { font-size: clamp(26px,7.5vw,38px); }

  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-form-card { padding: 28px 20px 20px; }

  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-card {
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .pain-icon { margin-bottom: 0; min-width: 44px; width: 44px; height: 44px; }

  .steps-grid { gap: 12px; }

  .product-inner { gap: 32px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-card { padding: 20px 16px; }

  .urgency-inner { padding: 32px 20px; }
  .urgency-spots { gap: 12px; }

  .lead-form-wrap { padding: 28px 18px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .trust-strip-inner { gap: 16px; flex-direction: column; }

  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .footer-logo { height: 32px; }

  .wa-section { padding: 44px 0; }

  /* hero content centre alignment already done at 900px */
  .hero-inner-grid > * { min-width: 0; }
}

@media (max-width: 480px) {
  :root { --header-height: 58px; }
  .hero-headline { font-size: 26px; }
  .hero-subheadline { font-size: 15px; }
  .section { padding: 40px 0; }
}
