/* ═══════════════════════════════ RESET & BASE ═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A2540;
  --navy-light: #0d2e4e;
  --yellow: #FFD447;
  --yellow-light: #FFF4CC;
  --yellow-hover: #ffc800;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --green: #22c55e;
  --green-light: #dcfce7;
  --red: #ef4444;
  --red-light: #fee2e2;
  --blue: #3b82f6;
  --blue-light: #dbeafe;
  --apt-a: #8b5cf6;
  --apt-a-light: #ede9fe;
  --apt-b: #0ea5e9;
  --apt-b-light: #e0f2fe;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10,37,64,0.10);
  --shadow-lg: 0 12px 48px rgba(10,37,64,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.15; }
em { font-style: italic; color: inherit; }

/* ═══════════════════════════════ BUTTONS ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-primary:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,212,71,0.4); }
.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--gray-50); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-size: 17px;
  padding: 16px 36px;
}
.btn-white:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════ SECTION COMMON ═══════════════════════════════ */
.section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.highlight {
  color: transparent;
  background: linear-gradient(135deg, #f59e0b, #FFD447);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ═══════════════════════════════ NAVBAR ═══════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon { font-size: 24px; }
.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-200);
  background: white;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .btn { margin-top: 8px; text-align: center; }

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
  background: linear-gradient(160deg, var(--yellow-light) 0%, var(--white) 60%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: fadeDown 0.5s ease both;
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  animation: fadeDown 0.5s 0.1s ease both;
  max-width: 800px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #f59e0b, #FFD447);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeDown 0.5s 0.2s ease both;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeDown 0.5s 0.3s ease both;
}
.trust-line {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 56px;
  animation: fadeDown 0.5s 0.4s ease both;
}

/* ── Mockup ── */
.hero-mockup {
  animation: fadeUp 0.7s 0.5s ease both;
  width: 100%;
  display: flex;
  justify-content: center;
}
.mockup-phone {
  width: 340px;
  background: #1e293b;
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(10,37,64,0.25), 0 0 0 1px rgba(255,255,255,0.1);
}
.mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mockup-app {
  background: #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  padding: 0 0 12px;
}
.mockup-topbar {
  background: #0f172a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.mockup-sync { cursor: pointer; }
.mockup-filters {
  display: flex;
  gap: 6px;
  padding: 10px 12px 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mf {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: white;
  border: 2px solid #e2e8f0;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  font-family: 'Sora', sans-serif;
}
.mf.active { background: #0f172a; border-color: #0f172a; color: white; }
.mockup-today {
  margin: 6px 12px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}
.mockup-card {
  margin: 8px 12px 0;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px 7px;
  border-bottom: 1px solid #f1f5f9;
}
.mc-apt {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}
.mc-apt.a { background: var(--apt-a-light); color: var(--apt-a); }
.mc-apt.b { background: var(--apt-b-light); color: var(--apt-b); }
.mc-src {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
}
.mc-src.airbnb { background: #fff0eb; color: #ff5a5f; }
.mc-src.booking { background: var(--blue-light); color: #003580; }
.mc-dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;
}
.mc-lbl { display: block; font-size: 9px; font-weight: 800; color: #94a3b8; letter-spacing: 0.5px; font-family: 'Sora', sans-serif; }
.mc-val { display: block; font-size: 15px; font-weight: 900; color: #1e293b; font-family: 'Sora', sans-serif; }
.mc-arrow { font-size: 16px; color: #cbd5e1; }
.mc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 10px;
}
.mc-guests {
  font-size: 12px;
  font-weight: 700;
  background: #f8fafc;
  padding: 4px 8px;
  border-radius: 8px;
}
.mc-pay {
  flex: 1;
  padding: 6px;
  border-radius: 10px;
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.mc-pay.unpaid { background: #fee2e2; color: #dc2626; }
.mc-pay.paid { background: #dcfce7; color: #15803d; }

/* ═══════════════════════════════ LOGOS BAR ═══════════════════════════════ */
.logos-bar {
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.logos-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.platform-pill {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ═══════════════════════════════ PROBLEM ═══════════════════════════════ */
.problem {
  padding: 100px 0;
  background: white;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--gray-200);
  transition: all 0.25s;
}
.problem-card:hover { border-color: var(--yellow); background: var(--yellow-light); transform: translateY(-3px); }
.problem-icon { font-size: 32px; margin-bottom: 14px; }
.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.problem-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }
.problem-punchline {
  text-align: center;
  padding: 32px;
  background: var(--navy);
  border-radius: var(--radius);
}
.punchline-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--yellow);
  font-style: italic;
}

/* ═══════════════════════════════ SOLUTION ═══════════════════════════════ */
.solution {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--yellow-light) 0%, white 50%);
}
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-list {
  list-style: none;
  margin-bottom: 32px;
}
.solution-list li {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-200);
  color: var(--navy);
}
.solution-list li:last-child { border-bottom: none; }

/* Roles card */
.roles-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 2px solid var(--gray-200);
}
.role-block { padding: 24px; }
.role-block.admin { background: var(--navy); }
.role-block.cleaner { background: white; }
.role-label {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--yellow);
}
.role-block.cleaner .role-label { color: var(--navy); }
.role-items { display: flex; flex-direction: column; gap: 8px; }
.role-item {
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.role-block.cleaner .role-item {
  background: var(--gray-50);
  color: var(--navy);
  border: 1px solid var(--gray-200);
}
.role-divider {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.role-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  text-align: center;
}

/* ═══════════════════════════════ HOW IT WORKS ═══════════════════════════════ */
.how {
  padding: 100px 0;
  background: white;
  text-align: center;
}
.how .section-sub { margin: 0 auto 56px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  padding: 36px 28px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.25s;
}
.step:hover { border-color: var(--yellow); background: var(--yellow-light); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.step p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }
.step-connector {
  font-size: 28px;
  color: var(--yellow);
  padding: 0 12px;
  align-self: center;
  flex-shrink: 0;
  font-weight: 900;
  margin-top: -20px;
}

/* ═══════════════════════════════ FEATURES ═══════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--gray-50);
  text-align: center;
}
.features .section-sub { margin: 0 auto 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  border: 2px solid var(--gray-200);
  transition: all 0.25s;
}
.feature-card:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card-highlight {
  border-color: var(--yellow);
  background: var(--yellow-light);
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.feature-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }
.coming-soon {
  background: var(--navy);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════ CLEANER SECTION ═══════════════════════════════ */
.cleaner-section {
  padding: 100px 0;
  background: white;
}
.cleaner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cleaner-phone {
  background: #1e293b;
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  margin: 0 auto;
}
.cp-bar {
  background: #0f172a;
  border-radius: 12px 12px 0 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
}
.cp-banner {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}
.cp-card {
  background: white;
  margin: 8px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cpc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
  border-bottom: 1px solid #f1f5f9;
}
.cpc-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 14px 8px;
  gap: 4px;
}
.cpc-block { display: flex; flex-direction: column; gap: 2px; }
.cpc-block.right { text-align: right; }
.cpc-lbl { font-size: 10px; font-weight: 800; color: #94a3b8; letter-spacing: 0.5px; font-family: 'Sora', sans-serif; }
.cpc-val { font-size: 20px; font-weight: 900; color: #1e293b; font-family: 'Sora', sans-serif; }
.cpc-day { font-size: 11px; color: #94a3b8; font-weight: 600; }
.cpc-arrow { font-size: 18px; color: #cbd5e1; }
.cpc-guests {
  margin: 0 14px 8px;
  background: #f8fafc;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}
.cpc-notes {
  margin: 0 14px 10px;
  background: #f8fafc;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.cpc-pay {
  width: calc(100% - 28px);
  margin: 0 14px 12px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  display: block;
}
.cpc-pay.unpaid { background: #fee2e2; color: #dc2626; }
.cp-wa {
  background: #25d366;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 8px;
  box-shadow: 0 2px 8px rgba(37,211,102,0.4);
}

.cleaner-proof { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.proof-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}
.proof-icon { font-size: 22px; flex-shrink: 0; }
.proof-item strong { display: block; margin-bottom: 2px; color: var(--navy); }
.proof-item div { font-size: 14px; color: var(--gray-600); }

/* ═══════════════════════════════ PRICING ═══════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--gray-50);
  text-align: center;
}
.pricing-inner { max-width: 540px; margin: 0 auto; }
.pricing .section-sub { margin: 0 auto 40px; }
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--yellow);
}
.pricing-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.pricing-amount {
  font-family: 'Sora', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-amount span { font-size: 22px; color: var(--gray-400); }
.pricing-tagline {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 32px;
  font-weight: 500;
}
.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 10px;
}
.pricing-no {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.pricing-no span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ═══════════════════════════════ ROADMAP ═══════════════════════════════ */
.roadmap {
  padding: 100px 0;
  background: white;
  text-align: center;
}
.roadmap .section-sub { margin: 0 auto 48px; }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.roadmap-item {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
  text-align: left;
  transition: all 0.25s;
}
.roadmap-item:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow); }
.roadmap-status {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.roadmap-status.soon { background: var(--yellow); color: var(--navy); }
.roadmap-status.planned { background: var(--gray-200); color: var(--gray-600); }
.roadmap-icon { font-size: 28px; margin-bottom: 12px; }
.roadmap-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.roadmap-item p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* ═══════════════════════════════ FINAL CTA ═══════════════════════════════ */
.final-cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,212,71,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--yellow);
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-trust {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .logo-text { color: white; font-size: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }

/* ═══════════════════════════════ ANIMATIONS ═══════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════ RESPONSIVE ═══════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 60px 0 40px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }

  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .cleaner-inner { grid-template-columns: 1fr; gap: 40px; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .step { max-width: 100%; width: 100%; }
  .step-connector { transform: rotate(90deg); }

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

  .pricing-card { padding: 32px 24px; }
  .pricing-amount { font-size: 56px; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .mockup-phone { width: 100%; max-width: 320px; }
}
