/* ============================================================
   PropPal CRM - Landing Page Styles
   Typography: Space Grotesk (headings) + DM Sans (body)
   Colors: Teal + Navy + Yellow accent
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --teal: #3AA6B9;
  --teal-dark: #2D8A9B;
  --teal-light: #E8F7FA;
  --teal-50: #F0FAFB;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --accent: #F5A623;
  --accent-light: #FEF3C7;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --success: #22C55E;
  --success-light: #DCFCE7;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --error: #EF4444;
  --error-light: #FEE2E2;

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-narrow: 800px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.16);
  --shadow-phone: 0 30px 80px rgba(15, 23, 42, 0.2);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--gray-500);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  margin: 0 auto;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--delay-1 {
  transition-delay: 0.15s;
}

.reveal--delay-2 {
  transition-delay: 0.3s;
}

.reveal--delay-3 {
  transition-delay: 0.45s;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn--lg {
  font-size: 17px;
  padding: 18px 40px;
}

.btn--full {
  width: 100%;
}

.btn__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
  font-family: var(--font-body);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {
  height: 34px;
  width: 34px;
}

.nav__logo span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-md);
}

.nav__cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(58, 166, 185, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245, 166, 35, 0.05), transparent),
    linear-gradient(180deg, var(--teal-50) 0%, var(--white) 60%);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 680px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__trust-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: 14px;
  color: var(--gray-500);
}

.hero__trust-text strong {
  color: var(--navy);
}

/* ---------- Phone Frame ---------- */
.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: var(--navy);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-phone);
  margin: 0 auto;
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 39px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.phone-frame__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-frame__screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.phone-frame--feature {
  width: 300px;
  height: 600px;
}

/* ---------- App Screen (inside phone) ---------- */
.app-header {
  background: var(--teal);
  color: var(--white);
  padding: 36px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}

.app-header__icon {
  border-radius: 6px;
}

.app-header__badge {
  margin-left: auto;
  background: rgba(255,255,255,0.25);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

.app-body {
  padding: 12px;
  overflow-y: auto;
  height: calc(100% - 100px);
}

.app-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.app-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: var(--gray-400);
}

.app-nav__item--active {
  color: var(--teal);
}

/* ---------- Lead Cards (inside phone) ---------- */
.lead-card {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}

.lead-card:last-child {
  border-bottom: none;
}

.lead-card__avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}

.lead-card__name {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}

.lead-card__tags {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.tag {
  display: inline-flex;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.tag--positive {
  background: var(--success-light);
  color: #15803D;
}

.tag--neutral {
  background: var(--gray-100);
  color: var(--gray-600);
}

.tag--stage {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.tag--viewing {
  background: #EDE9FE;
  color: #6D28D9;
}

.tag--negotiation {
  background: var(--accent-light);
  color: #B45309;
}

.tag--followup {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.tag--inquiry {
  background: #DBEAFE;
  color: #1D4ED8;
}

.lead-card__summary {
  font-size: 10px;
  color: var(--gray-500);
  line-height: 1.4;
  margin-bottom: 2px;
}

.lead-card__date {
  font-size: 9px;
  color: var(--gray-400);
}

/* ---------- Feature Screens ---------- */
.feature-screen {
  display: none;
  position: absolute;
  inset: 0;
}

.feature-screen--active {
  display: block;
}

.feature-tabs {
  display: flex;
  padding: 0 12px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.feature-tab {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  padding: 8px 4px;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
}

.feature-tab--active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-weight: 600;
}

/* Summary screen components */
.profile-section {
  margin-bottom: 12px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.profile-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}

.profile-status {
  font-size: 10px;
  color: var(--gray-500);
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.profile-stat {
  background: var(--gray-50);
  padding: 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.profile-stat__label {
  display: block;
  font-size: 9px;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.profile-stat__value {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
}

.profile-stat__value--positive {
  color: var(--success);
}

.preferences-section {
  margin-bottom: 12px;
}

.pref-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.pref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.pref-tag {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--gray-100);
  border-radius: 100px;
  color: var(--gray-600);
}

.ai-summary {
  background: var(--teal-50);
  border-left: 3px solid var(--teal);
  padding: 10px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 12px;
}

.ai-summary__label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.ai-summary__text {
  font-size: 10px;
  line-height: 1.5;
  color: var(--gray-600);
}

.key-insights__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.key-insights__list {
  padding-left: 16px;
  list-style: disc;
}

.key-insights__list li {
  font-size: 10px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 2px;
}

/* Timeline screen components */
.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--gray-200);
}

.timeline__item {
  position: relative;
  padding-bottom: 16px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -18px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.timeline__dot--viewing { background: #8B5CF6; }
.timeline__dot--negotiation { background: var(--accent); }
.timeline__dot--followup { background: var(--teal); }
.timeline__dot--inquiry { background: #3B82F6; }

.timeline__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 3px;
}

.timeline__date {
  font-size: 9px;
  color: var(--gray-400);
  margin-top: 3px;
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 10px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Property cards */
.property-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 8px;
}

.property-card__header {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.property-card__icon {
  font-size: 18px;
}

.property-card__address {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
}

.property-card__type {
  font-size: 9px;
  color: var(--gray-500);
}

.property-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.property-card__price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
}

.property-card__meta {
  font-size: 9px;
  color: var(--gray-400);
}

/* Next Steps */
.nextstep {
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border-left: 3px solid;
}

.nextstep--high {
  background: var(--error-light);
  border-left-color: var(--error);
}

.nextstep--medium {
  background: var(--warning-light);
  border-left-color: var(--warning);
}

.nextstep--low {
  background: var(--gray-50);
  border-left-color: var(--gray-300);
}

.nextstep__priority {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.nextstep__tag {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
}

.nextstep__tag--high {
  background: var(--error);
  color: var(--white);
}

.nextstep__tag--medium {
  background: var(--warning);
  color: var(--white);
}

.nextstep__tag--low {
  background: var(--gray-400);
  color: var(--white);
}

.nextstep__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 3px;
}

.nextstep__deadline {
  font-size: 9px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.nextstep__reason {
  font-size: 9px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ---------- ROI Hook (inside pricing) ---------- */
.roi-hook__text {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: -0.01em;
  margin-top: 16px;
  display: inline-block;
  background: rgba(58, 166, 185, 0.1);
  padding: 10px 24px;
  border-radius: 100px;
}

.roi-hook__text strong {
  color: var(--navy);
  font-weight: 700;
}

/* ---------- The Gap Section ---------- */
.gap {
  padding: 80px 0 40px;
  background: var(--white);
}

.gap .container.container--narrow {
  max-width: 960px;
}

.gap__content {
  text-align: center;
}

.gap__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gap__text {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- The Shift Section ---------- */
.shift {
  padding: 40px 0 80px;
  background: var(--white);
}

.shift__content {
  text-align: center;
}

.shift__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.shift__comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.shift__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 40px;
  border-radius: var(--radius-lg);
  min-width: 200px;
}

.shift__item--old {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.shift__item--new {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-md);
}

.shift__label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
}

.shift__item--new .shift__label {
  color: var(--teal-dark);
}

.shift__price {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.shift__item--old .shift__price {
  color: var(--gray-400);
  text-decoration: line-through;
  text-decoration-color: var(--error);
}

.shift__item--new .shift__price {
  color: var(--teal-dark);
}

.shift__period {
  font-size: 16px;
  font-weight: 500;
}

.shift__divider {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-400);
}

.shift__tagline {
  font-size: 17px;
  color: var(--gray-500);
  font-style: italic;
}

/* ---------- Sound Familiar Table ---------- */
.familiar {
  padding: var(--section-padding);
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(58, 166, 185, 0.06), transparent),
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.familiar__table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.familiar__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
}

.familiar__row:last-child {
  border-bottom: none;
}

.familiar__row--header {
  background: var(--navy);
}

.familiar__row--header .familiar__col {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  padding: 20px 28px;
}

.familiar__col {
  padding: 20px 28px;
}

.familiar__col--left {
  border-right: 1px solid var(--gray-100);
}

.familiar__row--header .familiar__col--left {
  border-right-color: rgba(255, 255, 255, 0.1);
}

.familiar__pain {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.familiar__solution {
  font-size: 15px;
  color: var(--teal-dark);
  font-weight: 500;
  line-height: 1.6;
}

.familiar__coming-soon {
  text-align: center;
  font-size: 14px;
  color: #92400E;
  margin-top: 24px;
  font-weight: 500;
  background: var(--accent-light);
  display: table;
  padding: 8px 20px;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Features Section ---------- */
.features {
  padding: var(--section-padding);
  background:
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(58, 166, 185, 0.06), transparent),
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.features__showcase {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.features__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features__tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: left;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.features__tab:hover {
  border-color: var(--teal);
}

.features__tab--active {
  border-color: var(--teal);
  background: var(--teal-light);
  box-shadow: var(--shadow-sm);
}

.features__tab-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--gray-500);
  flex-shrink: 0;
}

.features__tab--active .features__tab-icon {
  background: var(--teal);
  color: var(--white);
}

.features__tab-label strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
}

.features__tab-label small {
  font-size: 12px;
  color: var(--gray-400);
}

.features__phone {
  display: flex;
  justify-content: center;
}

.features__info-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.features__info-panel--active {
  display: block;
}

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

.features__info-panel h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.features__info-panel p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.features__info-list {
  padding-left: 0;
}

.features__info-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}

.features__info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233AA6B9' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ---------- Trust Section ---------- */
.trust {
  padding: var(--section-padding);
  background: var(--white);
}

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

.trust__card {
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.trust__card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

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

.trust__card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust__card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-padding);
  background:
    radial-gradient(ellipse 50% 50% at 10% 50%, rgba(58, 166, 185, 0.05), transparent),
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

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

.testimonial__stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testimonial__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}

.testimonial__role {
  font-size: 13px;
  color: var(--gray-400);
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 300px;
  padding: 0 24px;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  color: var(--teal);
  margin: 0 auto 20px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step__text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

.step__connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  flex-shrink: 0;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: var(--section-padding);
  background:
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(58, 166, 185, 0.06), transparent),
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.pricing__toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
  background: var(--gray-100);
  border-radius: 100px;
  padding: 4px;
  display: inline-flex;
}

.pricing__toggle-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing__toggle-btn--active {
  background: var(--navy);
  color: white;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.pricing__save-badge {
  font-size: 12px;
  font-weight: 600;
  background: #22C55E;
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 100px;
}

.pricing__header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing__plan {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing__currency {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 500;
}

.pricing__amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing__period {
  font-size: 16px;
  color: var(--gray-400);
}

.pricing__trial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-light);
  color: #92400E;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.pricing__features {
  margin-bottom: 28px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.pricing__features li:last-child {
  border-bottom: none;
}

.pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
}

.pricing__roi {
  margin-top: 24px;
  padding: 20px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
}

.pricing__roi-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.pricing__roi p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--section-padding);
  background: var(--white);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item--open {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  gap: 16px;
}

.faq__question:hover {
  color: var(--teal-dark);
}

.faq__chevron {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gray-400);
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- Mission ---------- */
.mission__text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-align: center;
  margin-top: 40px;
}

/* ---------- CTA / Sign Up ---------- */
.cta {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(58, 166, 185, 0.1), transparent),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(245, 166, 35, 0.06), transparent),
    linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
  z-index: -1;
}

.cta__content {
  text-align: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta__subtitle {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.cta__form {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58, 166, 185, 0.15);
}

.form-input::placeholder {
  color: var(--gray-300);
}

.form-input-group {
  display: flex;
  align-items: stretch;
}

.form-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
}

.form-input--phone {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.cta__reassurance {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 32px;
  background: var(--navy);
  color: var(--gray-400);
}

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

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__brand-logo img {
  width: 36px;
  height: 36px;
}

.footer__brand-logo span {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-300);
}

.footer__links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features__showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features__tabs {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .features__tab {
    min-width: 200px;
  }

  .features__tab-label small {
    display: none;
  }

  .features__phone {
    order: -1;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .nav__menu--open {
    display: flex;
  }

  .nav__cta {
    text-align: center;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__subtitle {
    margin: 0 auto 36px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .shift__comparison {
    flex-direction: column;
    gap: 16px;
  }

  .shift__item {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }

  .shift__divider {
    font-size: 16px;
  }

  .familiar__table {
    border: none;
    box-shadow: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .familiar__row {
    grid-template-columns: 1fr;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
  }

  .familiar__row:last-child {
    border-bottom: 1px solid var(--gray-200);
  }

  .familiar__col--left {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 20px 12px;
  }

  .familiar__col--right {
    padding: 12px 20px 16px;
    background: rgba(58, 166, 185, 0.04);
  }

  .familiar__row--header {
    display: none;
  }

  .familiar__row:not(.familiar__row--header) .familiar__col--right::before {
    content: "✓";
    display: inline;
    font-weight: 700;
    color: var(--teal);
    margin-right: 6px;
  }

  .features__tabs {
    flex-direction: column;
  }

  .features__tab {
    min-width: auto;
  }

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

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step__connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: 16px;
  }

  .phone-frame {
    width: 260px;
    height: 530px;
  }

  .phone-frame--feature {
    width: 270px;
    height: 560px;
  }

  .pricing__card {
    padding: 32px 24px;
  }

  .pricing__amount {
    font-size: 44px;
  }

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

/* ---------- Lead Card Avatar Outline Style ---------- */
.lead-card__avatar--outline {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
}

.lead-card__emoji {
  font-size: 11px;
  margin-left: 2px;
}

/* ---------- Coming Soon Badges ---------- */
.coming-soon-badge {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  background: var(--accent-light);
  color: #92400E;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

.coming-soon-inline {
  color: var(--gray-400);
  font-style: italic;
}

/* ---------- Nav Toggle Animation ---------- */
.nav__toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
