/* ============================================================
   CASASINDHU LANDING 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: 90px;
  --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: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 48px;
}

/* ---- 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);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 110, 245, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 110, 245, 0.4);
}

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

.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);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 17px;
}

/* ---- Fade-in Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  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.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  overflow: visible;
  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: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  font-size: 22px;
}

.logo-text strong {
  color: var(--primary);
}

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

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

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

/* ---- Role Toggle ---- */
.role-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  gap: 4px;
}

.role-btn {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.role-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-dark);
}

.role-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 112, 128, 0.3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: calc(var(--header-height) + 40px) 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

.hero-visual {
  position: relative;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8f0fe, #f0fdf8);
  border: 1px solid #bfdbfe;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.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(32px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

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

.hero-subheadline {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.5;
}

.hero-subheadline strong {
  color: var(--text-dark);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 56px;
}

/* ---- Mini Lead Form & Custom Elements ---- */

.live-demand-trigger {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8f0fe, #f0fdf8);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #bfdbfe;
}

.pulse-dot-inline {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: block;
  animation: pulse-dot 2s infinite;
}

.hero-form-wrapper {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
}

.proof-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ebf5ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-title-micro {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-align: center;
}

.form-subtitle-micro {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.hero-mini-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-form-row input,
.mini-form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: var(--transition);
}

.mini-form-row input:focus,
.mini-form-row select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 110, 245, 0.1);
}

.mock-overlay-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 10px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 10;
}

.hero-mock-dashboard {
  transform: rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.live-activity-ticker {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 12px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 20;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}

.sticky-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: auto;
  height: 56px;
  padding: 0 24px;
  background: var(--whatsapp);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 999;
  transition: var(--transition);
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.sticky-wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: white;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 20px 36px;
  border-radius: 16px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 112, 128, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 147, 58, 0.10) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

/* ---- problem icon SVG ---- */
.problem-icon svg {
  color: #dc3545;
  opacity: 0.85;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */

.problem-section {
  background: var(--bg-light);
  text-align: center;
}

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

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f43f5e, #fb923c);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.problem-icon svg {
  color: #dc3545;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.card-body {
  flex: 1;
  min-width: 0;
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section {
  background: #fff;
}

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

.solution-text .section-title {
  margin-bottom: 32px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.solution-feature p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Mock Dashboard */
.mock-dashboard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mock-header {
  background: #f1f5f9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-dot.red {
  background: #ef4444;
}

.mock-dot.yellow {
  background: #f59e0b;
}

.mock-dot.green {
  background: #22c55e;
}

.mock-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 8px;
}

.mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-lead-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  transition: var(--transition);
}

.mock-lead-card.new-lead {
  border-color: var(--primary);
  background: var(--primary-light);
  animation: subtlePulse 2.5s infinite;
}

@keyframes subtlePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 110, 245, 0.2);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(26, 110, 245, 0);
  }
}

.lead-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lead-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.lead-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.lead-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
}

.lead-badge.verified {
  background: #dcfce7;
  color: var(--green-dark);
}

.lead-badge.new {
  background: #dbeafe;
  color: var(--primary-dark);
}

.lead-connect-btn {
  padding: 6px 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.pulse-btn {
  animation: pulseCTA 1.8s infinite;
}

@keyframes pulseCTA {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 110, 245, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(26, 110, 245, 0);
  }
}

.mock-stats-row {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}

.mock-stat {
  flex: 1;
  text-align: center;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 10px 6px;
}

.mock-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.mock-stat-label {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-works-section {
  background: var(--bg-light);
  text-align: center;
}

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

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  margin: 0 8px;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-card:first-child {
  position: relative;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -32px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--primary));
  z-index: 1;
  pointer-events: none;
}

.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}

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

.step-icon svg {
  color: var(--primary);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.how-cta {
  margin-top: 12px;
}

/* ============================================================
   PRODUCT VISUAL SECTION
   ============================================================ */
.product-visual-section {
  background: #fff;
}

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

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #bfdbfe;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  color: var(--primary);
}

.product-card-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.product-desc {
  font-size: 14px;
  color: var(--text-body);
  margin-top: 16px;
  line-height: 1.6;
}

/* Dashboard UI Mock */
.product-mock-ui {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--border);
}

.ui-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.ui-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
}

.ui-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.ui-lead-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
}

.ui-avatar {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
}

.ui-meta {
  font-weight: 400;
  color: var(--text-muted);
}

.ui-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.ui-status.connected {
  background: #dcfce7;
  color: var(--green-dark);
}

.ui-status.new {
  background: #dbeafe;
  color: var(--primary-dark);
}

.ui-graph-bar {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 12px;
  justify-content: space-around;
}

.graph-label {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
}

.graph-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary) 0%, #60a5fa 100%);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

/* Notification UI */
.notif-ui {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.notif-item.new-notif {
  border-color: var(--primary);
  background: var(--primary-light);
}

.notif-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.notif-icon svg {
  color: var(--primary);
}

.new-notif .notif-icon {
  background: #fff;
}

.new-notif .notif-icon svg {
  color: var(--gold);
}

.notif-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.notif-text {
  font-size: 11px;
  color: var(--text-body);
}

.notif-time {
  font-size: 10px;
  color: var(--text-muted);
}

.notif-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--whatsapp-dark);
  padding: 6px 10px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
}

/* Webpage UI */
.webpage-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webpage-header-mock {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.webpage-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webpage-dealer-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.star-icons {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.star-icons svg {
  color: var(--gold);
  fill: var(--gold);
}

.webpage-dealer-loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.webpage-dealer-loc svg {
  color: var(--text-muted);
}

.webpage-rating {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.webpage-rating span {
  font-weight: 600;
  color: var(--text-dark);
}

.webpage-props {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.webpage-prop-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 100px;
}

.webpage-share-url {
  font-size: 11px;
  color: var(--text-muted);
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: monospace;
}

.webpage-share-url strong {
  color: var(--primary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-light);
  text-align: center;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.featured-testimonial {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-light), #fff);
  box-shadow: 0 4px 20px rgba(201, 147, 58, 0.12);
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
}

.stars svg {
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.author-info {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* ============================================================
   URGENCY SECTION
   ============================================================ */
.urgency-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1e3a5f 100%);
  color: #fff;
}

.urgency-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.urgency-badge svg {
  color: #fbbf24;
  flex-shrink: 0;
}

.urgency-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.urgency-count {
  color: #fbbf24;
}

.urgency-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.6;
}

.spots-bar-wrap {
  margin-bottom: 36px;
}

.spots-bar {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.spots-filled {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #34d399);
  border-radius: 100px;
  transition: width 1.5s ease;
}

.spots-text {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.spots-remaining {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #34d399;
  font-weight: 600;
}

.spots-remaining svg {
  color: #34d399;
}

.countdown-wrap {
  margin-bottom: 36px;
}

.countdown-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown-timers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.countdown-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 80px;
}

.countdown-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.countdown-unit-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
}

.countdown-sep {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

.urgency-cta {
  background: #fbbf24;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.urgency-cta:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.5);
}

/* ============================================================
   LEAD FORM SECTION
   ============================================================ */
.form-section {
  background: #fff;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  align-items: center;
}

.form-left .section-label {
  margin-bottom: 8px;
}

.form-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 28px;
}

.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
}

.form-benefits li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.form-secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.form-secure-note svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Form styles */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 110, 245, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group select option[value=""][disabled] {
  color: var(--text-muted);
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
  background: #fff5f5;
}

.field-error {
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  min-height: 16px;
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-light);
  transition: var(--transition);
}

.phone-input-wrap:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 110, 245, 0.1);
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.phone-input-wrap input {
  border: none;
  border-radius: 0;
  flex: 1;
  background: transparent;
  box-shadow: none !important;
}

.phone-input-wrap input:focus {
  border: none;
  box-shadow: none !important;
}

.form-footer-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.success-icon {
  display: flex;
  justify-content: center;
  font-size: 56px;
  margin-bottom: 16px;
  color: var(--primary);
}

.success-icon svg {
  color: var(--primary);
}

.form-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ============================================================
   WHATSAPP SECTION
   ============================================================ */
.whatsapp-section {
  background: var(--bg-light);
  padding: 64px 0;
}

.wa-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 40px;
}

.wa-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.wa-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

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

.wa-inner .btn {
  margin-left: auto;
  min-width: 200px;
  justify-content: center;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 99;
  gap: 12px;
}

.sticky-mobile-cta .btn {
  flex: 1;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding-bottom: 48px;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 240px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .solution-inner {
    gap: 40px;
  }

  .form-wrapper {
    gap: 40px;
    padding: 40px;
  }
}

@media (max-width: 900px) {
  .hero-inner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    width: 100%;
  }

  .hero-content {
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .hero-inner-grid > * {
    min-width: 0;
  }

  .hero-form-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  #hero-form-error,
  #hero-form-success {
    text-align: center;
  }

  .hero-mock-dashboard {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .live-activity-ticker {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    justify-content: center;
  }

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

  .solution-inner {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    order: -1;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .product-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  /* Logo — centered and bigger on mobile, header height unchanged */
  .logo-img {
    height: 86px;
  }

  .header {
    height: 68px;
    overflow: visible;
  }

  .header-inner {
    justify-content: center;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  /* Header nav */
  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  .sticky-wa-float,
  #sticky-wa-float {
    display: none !important;
  }

  /* Body padding for sticky CTA bar */
  body {
    padding-bottom: 80px;
  }

  /* Hero — tighten up */
  .hero {
    padding: calc(var(--header-height) + 40px) 0 48px;
    overflow: hidden;
  }

  .hero-headline {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.25;
  }

  .hero-subheadline {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .live-demand-trigger {
    font-size: 13px;
    padding: 8px 12px;
    height: auto;
    line-height: 1.4;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-form-wrapper {
    padding-top: 32px; /* Give space for proof badge */
    max-width: 100%;
    box-sizing: border-box;
  }

  .proof-badge {
    white-space: normal;
    text-align: center;
    font-size: 10px;
    padding: 6px 10px;
    width: 90%;
    max-width: 100%;
  }

  .hero-mock-dashboard {
    width: 100%;
    margin-top: 10px;
  }

  .mock-overlay-badge {
    right: 0;
    top: -15px;
    padding: 8px 12px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
    width: 90%;
    left: 5%;
    max-width: 100%;
  }

  .btn {
    white-space: normal;
    line-height: 1.4;
    flex-wrap: wrap;
    height: auto;
  }

  .trust-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding: 14px 16px;
    justify-content: space-around;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 1 1 33%;
    text-align: center;
    padding: 6px 4px;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Problem cards — horizontal layout on mobile */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .problem-card {
    padding: 20px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  .problem-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-bottom: 0;
    border-radius: 10px;
  }

  .problem-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .problem-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Step cards — horizontal layout on mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    margin: 0;
    padding: 20px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin: 0;
    border-radius: 12px;
  }

  .step-number {
    margin-bottom: 4px;
  }

  .step-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .step-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Product cards */
  .product-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    padding: 20px 16px;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  /* Solution section */
  .solution-inner {
    gap: 32px;
  }

  /* Forms */
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  .lead-form {
    padding: 20px 16px;
    gap: 16px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
  }

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

  .footer-logo {
    height: 36px;
  }

  .footer {
    padding-top: 36px;
  }

  /* WhatsApp section */
  .wa-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }

  .wa-inner .btn {
    margin-left: 0;
    width: 100%;
  }

  /* Urgency section */
  .urgency-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .urgency-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Countdown */
  .countdown-timers {
    gap: 8px;
  }

  .countdown-unit {
    min-width: 60px;
    padding: 10px 12px;
  }

  .countdown-num {
    font-size: 26px;
  }

  .countdown-sep {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  .logo-img {
    height: 48px;
  }

  .header {
    height: 60px;
  }

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

  .hero-headline {
    font-size: 24px;
  }

  .hero-subheadline {
    font-size: 14px;
  }

  .section {
    padding: 40px 0;
  }

  .countdown-timers {
    gap: 6px;
  }

  .countdown-unit {
    min-width: 52px;
    padding: 8px 8px;
  }

  .countdown-num {
    font-size: 22px;
  }

  .countdown-sep {
    font-size: 16px;
  }

  .form-wrapper {
    padding: 16px 12px;
  }

  .lead-form {
    padding: 16px 12px;
  }
}

/* Hide scrollbar for smooth feel */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 100px;
}