/* ============================================
   CSS RESET & VARIABLES
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colors — Clean, professional real estate palette */
  --col-white: #ffffff;
  --col-offwhite: #f8f9fc;
  --col-light: #f0f2f7;
  --col-border: #e2e6ee;
  --col-muted: #94a3b8;
  --col-body: #475569;
  --col-heading: #1e293b;
  --col-dark: #0f172a;

  /* Primary — Trustworthy navy blue */
  --col-primary: #1e3a5f;
  --col-primary-light: #2d5a8e;
  --col-primary-dark: #142844;
  --col-primary-bg: #eef3f9;

  /* Accent — Warm, approachable teal-green */
  --col-accent: #0d9488;
  --col-accent-light: #14b8a6;
  --col-accent-dark: #0a7a70;
  --col-accent-bg: #ecfdf5;

  /* CTA — Confident coral/orange */
  --col-cta: #e8613a;
  --col-cta-hover: #d4512c;
  --col-cta-bg: rgba(232, 97, 58, 0.08);

  /* Surfaces */
  --col-card: #ffffff;
  --col-card-hover: #fafbfd;
  --col-shadow: rgba(15, 23, 42, 0.08);
  --col-shadow-lg: rgba(15, 23, 42, 0.12);

  /* Typography */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.4s;
  --dur-slow: 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--col-white);
  color: var(--col-body);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--col-white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--col-primary); color: var(--col-white); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 1px 0 var(--col-border), 0 4px 20px var(--col-shadow);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--col-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--col-body);
  transition: color var(--dur-fast);
}

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

.nav-login,
.nav-account {
  font-weight: 500;
  color: var(--col-primary) !important;
  transition: color var(--dur-fast);
}

.nav-account {
  font-weight: 600;
}

.nav-login:hover,
.nav-account:hover {
  color: var(--col-accent) !important;
}

.nav-cta {
  padding: 0.55rem 1.5rem;
  background: var(--col-cta);
  color: var(--col-white) !important;
  font-weight: 600;
  font-size: 0.85rem !important;
  border-radius: 6px;
  transition: background var(--dur-fast), box-shadow var(--dur-fast);
}

.nav-cta:hover {
  background: var(--col-cta-hover);
  box-shadow: 0 4px 16px rgba(232, 97, 58, 0.25);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--col-heading);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--col-heading);
}

@media (max-width: 768px) {
  .nav { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--col-primary-dark) 0%, var(--col-primary) 40%, var(--col-primary-light) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.08;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: white;
}

.hero-bg-shapes .shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-bg-shapes .shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.hero-bg-shapes .shape-3 { width: 200px; height: 200px; top: 40%; left: 15%; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 6rem 2rem 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--col-accent-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--col-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title span.highlight {
  color: var(--col-accent-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--col-cta);
  color: var(--col-white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}

.btn-primary:hover {
  background: var(--col-cta-hover);
  box-shadow: 0 8px 24px rgba(232, 97, 58, 0.3);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--col-white);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background var(--dur-fast);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--col-primary);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--col-primary-dark);
}

.hero-avatars span:nth-child(1) { background: #93c5fd; margin-left: 0; }
.hero-avatars span:nth-child(2) { background: #a5b4fc; }
.hero-avatars span:nth-child(3) { background: #86efac; }
.hero-avatars span:nth-child(4) { background: #fcd34d; }

.hero-proof-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-proof-text strong {
  color: var(--col-white);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: bounce-down 2s ease-in-out infinite;
  animation-delay: 3s;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.5);
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
}

.section-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-lg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--col-accent);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--col-accent);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--col-heading);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--col-muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--col-offwhite);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--col-card);
  border: 1px solid var(--col-border);
  border-radius: 12px;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.step-card:hover {
  box-shadow: 0 8px 30px var(--col-shadow-lg);
  transform: translateY(-3px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--col-primary-bg);
  color: var(--col-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--col-accent-bg);
  border-radius: 10px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--col-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--col-heading);
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--col-body);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Connecting line between steps */
.step-connector {
  display: none;
}

@media (min-width: 769px) {
  .how-grid {
    position: relative;
  }
}

/* ============================================
   DEMO — SEE IT IN ACTION
   ============================================ */
.demo {
  background: var(--col-offwhite);
}

.speed-callout {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--col-accent-bg);
  color: var(--col-accent-dark);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.demo-tab {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--col-border);
  border-radius: 100px;
  background: var(--col-white);
  color: var(--col-body);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}

.demo-tab:hover {
  border-color: var(--col-primary-light);
  color: var(--col-primary);
}

.demo-tab.active {
  background: var(--col-primary);
  color: var(--col-white);
  border-color: var(--col-primary);
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Input side */
.demo-input {
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px var(--col-shadow);
}

.demo-input-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--col-heading);
  margin-bottom: 1rem;
}

.demo-input-header svg { stroke: var(--col-primary); }

.demo-photos {
  display: grid;
  grid-template-columns: repeat(var(--photo-cols, 3), 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.demo-photo {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
}

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

.demo-desc-block {
  border-top: 1px solid var(--col-light);
  padding-top: 1rem;
}

.demo-desc-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--col-heading);
  margin-bottom: 0.6rem;
}

.demo-desc-header svg { stroke: var(--col-muted); }

.demo-desc-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--col-muted);
}

.demo-desc-fade {
  overflow: hidden;
}

.demo-desc-line {
  margin: 0 0 0.15rem;
}

/* Arrow */
.demo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--col-primary);
  color: var(--col-white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.demo-arrow svg { stroke: var(--col-white); }

/* Output side */
.demo-output {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: stretch;
}

.demo-video-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--col-dark);
  box-shadow: 0 8px 32px var(--col-shadow-lg);
  cursor: pointer;
  flex: 1 1 0%;
  min-height: 0;
  aspect-ratio: 9/16;
  max-height: 70vh;
}

.demo-video-player.landscape {
  aspect-ratio: 16/9;
  flex: 0 0 auto;
  max-height: none;
  margin-top: auto;
  margin-bottom: auto;
}

.demo-video-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.demo-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: opacity var(--dur-fast);
}

.demo-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.demo-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.demo-play-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.08);
}

.demo-play-btn svg {
  margin-left: 3px;
}

.demo-output-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--col-accent);
}

/* Demo responsive */
@media (max-width: 768px) {
  .demo-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }

  .demo-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .demo-output {
    align-self: auto;
  }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  background: var(--col-white);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  padding: var(--space-lg) 0;
}

.feature-row + .feature-row {
  border-top: 1px solid var(--col-border);
}

.feature-row:nth-child(even) .feature-visual { order: -1; }

.feature-text { max-width: 480px; }

.feature-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--col-heading);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-text p {
  color: var(--col-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--col-primary-bg);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--col-primary);
}

.feature-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--col-offwhite);
  border-radius: 12px;
  border: 1px solid var(--col-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual .phone-frame {
  width: 130px;
  height: 250px;
  border: 2px solid var(--col-border);
  border-radius: 20px;
  background: var(--col-white);
  box-shadow: 0 12px 40px var(--col-shadow-lg);
  position: relative;
}

.feature-visual .phone-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--col-light);
}

.phone-lines {
  padding: 26px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-lines span {
  display: block;
  height: 3px;
  border-radius: 1.5px;
  background: var(--col-light);
}

.phone-lines span:nth-child(1) { width: 80%; background: var(--col-primary-bg); }
.phone-lines span:nth-child(2) { width: 60%; }
.phone-lines span:nth-child(3) { width: 90%; }
.phone-lines span:nth-child(4) { width: 40%; }
.phone-lines span:nth-child(5) {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  margin-top: 6px;
  background: var(--col-light);
}

.feature-time {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--col-accent);
}

.feature-time-label {
  font-size: 0.85rem;
  color: var(--col-muted);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: var(--space-md) 0;
  }
  .feature-row:nth-child(even) .feature-visual { order: 0; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--col-offwhite);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2rem;
  background: var(--col-card);
  border: 1px solid var(--col-border);
  border-radius: 12px;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px var(--col-shadow-lg);
  transform: translateY(-3px);
}

.stat-highlight {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--col-accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--col-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--col-muted);
  font-style: italic;
}

.stats-source {
  text-align: center;
  font-size: 0.8rem;
  color: var(--col-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: var(--space-lg) auto 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--col-card);
  border: 1px solid var(--col-border);
  border-radius: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--col-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--col-muted);
  margin-top: 0.4rem;
}

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

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--col-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid-three {
  max-width: 1000px;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid-four {
  max-width: 1200px;
  grid-template-columns: repeat(4, 1fr);
}

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

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

.pricing-card {
  padding: 2.5rem 2rem;
  background: var(--col-card);
  border: 1px solid var(--col-border);
  border-radius: 12px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.pricing-card.featured {
  border-color: var(--col-primary);
  box-shadow: 0 8px 30px var(--col-shadow-lg);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--col-shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: var(--col-primary);
  color: var(--col-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-badge-sale {
  background: #d4380d;
}

.pricing-original {
  text-decoration: line-through;
  color: var(--col-muted);
  font-size: 0.85em;
  font-weight: 400;
  margin-right: 0.15rem;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--col-accent);
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--col-heading);
  margin-bottom: 0.4rem;
}

.pricing-desc {
  color: var(--col-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.pricing-currency {
  font-size: 1.1rem;
  color: var(--col-muted);
  font-weight: 600;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--col-heading);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--col-muted);
  margin-left: 0.25rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--col-body);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--col-accent-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-feature-highlight {
  color: var(--col-accent) !important;
  font-weight: 600;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--col-border);
  color: var(--col-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}

.btn-outline:hover {
  border-color: var(--col-primary);
  color: var(--col-primary);
  background: var(--col-primary-bg);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--col-muted);
  font-size: 0.85rem;
}

.pricing-ai-note {
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8rem;
}

/* ============================================
   COMPARE — HOW WE'RE DIFFERENT
   ============================================ */
.compare {
  background: var(--col-offwhite);
}

.compare-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.93rem;
}

.compare-table thead th {
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--col-border);
}

.compare-feature-col {
  width: 28%;
  color: var(--col-muted);
}

.compare-other-col {
  width: 36%;
  color: var(--col-muted);
}

.compare-ll-col {
  width: 36%;
  color: var(--col-primary) !important;
}

.compare-table tbody td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--col-border);
  vertical-align: top;
  line-height: 1.5;
}

.compare-feature {
  font-weight: 600;
  color: var(--col-heading);
  font-size: 0.88rem;
}

.compare-other {
  color: var(--col-muted);
}

.compare-ll {
  color: var(--col-heading);
  font-weight: 500;
  background: var(--col-accent-bg);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Highlight the ListingLoops column */
.compare-ll-col,
.compare-ll {
  position: relative;
}

.compare-table thead .compare-ll-col {
  background: var(--col-accent-bg);
  border-radius: 12px 12px 0 0;
}

.compare-table tbody tr:last-child .compare-ll {
  border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
  .compare-table {
    font-size: 0.82rem;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 0.75rem 1rem;
  }

  .compare-feature-col { width: 30%; }
  .compare-other-col { width: 35%; }
  .compare-ll-col { width: 35%; }
}

/* ============================================
   MYTH BUSTER
   ============================================ */
.mythbuster {
  background: var(--col-white);
}

.mythbuster-vs {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--col-muted);
  font-style: italic;
}

.myth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.myth-card {
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--col-border);
}

.myth-card-old {
  background: var(--col-offwhite);
  border-color: var(--col-border);
}

.myth-card-new {
  background: var(--col-accent-bg);
  border-color: var(--col-accent);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.1);
}

.myth-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--col-border);
}

.myth-label-old {
  color: var(--col-muted);
}

.myth-label-new {
  color: var(--col-accent-dark);
  border-bottom-color: rgba(13, 148, 136, 0.2);
}

.myth-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.myth-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--col-body);
}

.myth-icon-x {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  stroke: var(--col-muted);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  opacity: 0.5;
}

.myth-icon-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  stroke: var(--col-accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
}

.myth-card-new .myth-list li {
  color: var(--col-heading);
  font-weight: 500;
}

.myth-bottom {
  text-align: center;
  max-width: 600px;
  margin: var(--space-lg) auto 0;
}

.myth-bottom-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--col-heading);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .myth-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .myth-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(165deg, var(--col-primary-dark) 0%, var(--col-primary) 50%, var(--col-primary-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-shapes {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}

.final-cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: white;
}

.final-cta-shapes .shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.final-cta-shapes .shape-2 { width: 200px; height: 200px; bottom: -80px; left: -40px; }

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta .section-title {
  color: var(--col-white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.final-cta .section-title span {
  color: var(--col-accent-light);
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.final-cta .hero-actions { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--col-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto var(--space-lg);
}

.footer-brand-wrap {}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--col-white);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-vfashify {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-vfashify strong {
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--col-white);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.25rem 0;
  transition: color var(--dur-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
