/* Anti-FOUC: reveal body once this stylesheet is parsed */
body { visibility: visible; }

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
  font-weight: 300;
}

/* Ensure all text elements use Manrope */
h1, h2, h3, h4, h5, h6, p, div, span, button, input {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #39C1D2;
}

.nav-hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.hamburger-line {
  width: 22px;
  height: 2.5px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

/* Active: teal circle with centered clean X */
.nav-hamburger.active {
  background: #edfbfd;
}

.nav-hamburger.active .hamburger-line {
  position: absolute;
  background-color: #39C1D2;
  width: 16px;
  top: 50%;
  left: 50%;
  margin-top: -1.25px;
  margin-left: -8px;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-menu.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 24px;
  gap: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 110px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.logo-container {
  margin-bottom: 20px;
}

.hero-logo {
  height: 60px;
  width: auto;
}

.hero-headline {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero-micro {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  max-width: 600px;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-explainer {
  text-align: center;
  font-size: 0.93rem;
  color: #999;
  max-width: 650px;
  margin: 8px auto 16px;
  line-height: 1.7;
}

.hero-sourcing-caption {
  font-size: 0.82rem;
  color: #aaa;
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.01em;
}

.hero-workflow-caption {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #bbb;
  text-transform: uppercase;
  margin-top: 14px;
}

.hero-workflow-tagline {
  text-align: center;
  font-size: 0.82rem;
  color: #aaa;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.cta-button {
  border: none;
  padding: 14px 29px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button.primary {
  background: #39C1D2;
  color: white;
  box-shadow: 0 4px 12px rgba(57, 193, 210, 0.3);
}

.cta-button.primary:hover {
  background: #2A9BAA;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 193, 210, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #39C1D2;
  border: 2px solid #39C1D2;
}

.cta-button.secondary:hover {
  background: #39C1D2;
  color: white;
}

.hero-app-image {
  width: 100%;
  max-width: 660px;
  height: auto;
}

/* SaaS-style homepage hero overrides */
.hero-saas {
  padding-bottom: 16px;
  min-height: auto;
}

.hero-saas .hero-content {
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 0;
}

.hero-saas .hero-text {
  max-width: 720px;
  padding-bottom: 26px;
}

.hero-saas .hero-micro,
.hero-saas .hero-subheadline {
  margin-left: auto;
  margin-right: auto;
}

.hero-saas .hero-buttons {
  justify-content: center;
}

.hero-product-mockup {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #f0f4f8;
  border: 1px solid #e2e8f0;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  position: relative;
}

.hero-mockup-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Stage: 4-panel product showcase */
.hero-stage {
  width: 100%;
  max-width: 1200px;
  background: #f7f9fb;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 28px 0;
}

.hero-stage::-webkit-scrollbar {
  display: none;
}

.hero-stage-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 76%;
  scroll-snap-align: start;
  padding: 0;
}

.hero-stage-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.2rem;
  color: #ccd6e0;
  padding: 0 6px;
  align-self: center;
  line-height: 1;
}

.hero-stage-img {
  width: 100%;
  max-width: 90%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15), 0 3px 10px rgba(0, 0, 0, 0.09);
  display: block;
}

.hero-stage-panel--featured .hero-stage-img {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.20), 0 4px 12px rgba(0, 0, 0, 0.10);
}


.hero-stage-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hero-stage-step {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.hero-stage-desc {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
}

@media (min-width: 640px) {
  .hero-stage {
    overflow-x: visible;
    scroll-snap-type: none;
    align-items: flex-end;
    padding: 40px 32px;
    gap: 0;
  }

  .hero-stage-panel {
    flex: 1;
    min-width: 0;
    padding: 0;
    scroll-snap-align: none;
  }

  .hero-stage-arrow {
    display: flex;
    font-size: 1.4rem;
    padding: 0 12px;
    padding-bottom: 52px;
    flex-shrink: 0;
    color: #8fa5b8;
  }

  .hero-stage-img {
    max-width: 148px;
  }

  .hero-stage-panel--featured .hero-stage-img {
    max-width: 185px;
  }

  /* Desktop depth hierarchy — Analyze as focal point */
  .hero-stage-panel {
    position: relative;
  }

  .hero-stage-panel--featured {
    z-index: 2;
    transform: translateY(-12px);
  }

  .hero-stage-panel--featured .hero-stage-img {
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22), 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .hero-stage-panel:not(.hero-stage-panel--featured) .hero-stage-img {
    opacity: 0.88;
  }
}

@media (min-width: 1024px) {
  .hero-stage-img {
    max-width: 165px;
  }

  .hero-stage-panel--featured .hero-stage-img {
    max-width: 215px;
  }

  .hero-stage-panel--featured {
    transform: translateY(-16px);
  }

  .hero-stage-panel--featured .hero-stage-img {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24), 0 8px 20px rgba(0, 0, 0, 0.13);
  }

  .hero-stage-arrow {
    padding: 0 8px;
    padding-bottom: 52px;
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) {
  .hero-saas .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-saas .hero-text {
    flex: none;
  }

  .hero-saas .hero-buttons {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-saas .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-saas .hero-text .hero-buttons {
    justify-content: center;
  }

  .hero-product-mockup {
    border-radius: 20px 20px 0 0;
  }
}

/* Why Different Section */
.why-different {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.difference-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-4px);
}

.difference-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 26px;
  color: #00B4D1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.difference-icon svg, .feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: none;
}

.difference-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.difference-card p {
  color: #666;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features .features-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}



.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Two Ways to Use Trovio Section */
.use-modes {
  padding: 8px 0 80px;
  background: white;
}

.use-modes-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.use-modes-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

/* Use-mode cards — full card layout with image, content, button */
.use-mode-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.use-mode-card:hover {
  background: #f7feff;
  border-color: rgba(0, 207, 232, 0.3);
  box-shadow: 0 8px 32px rgba(0, 207, 232, 0.14), 0 2px 8px rgba(0, 0, 0, 0.07);
}

.estate-card {
  transform: scale(1.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .estate-card:hover {
    transform: scale(1.04);
  }
}

.mode-band {
  background: linear-gradient(135deg, rgba(0, 207, 232, 0.08) 0%, rgba(0, 207, 232, 0.04) 100%);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 207, 232, 0.1);
}

.mode-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 207, 232, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 207, 232, 0.2);
  transition: transform 0.3s ease;
}

.mode-icon-badge svg {
  width: 30px;
  height: 30px;
  stroke: #00B4D1;
}

.mode-content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mode-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00b5c8;
  margin-bottom: 6px;
}

.use-mode-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.use-mode-card .mode-subtitle {
  color: #666;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}

.use-mode-card .mode-body {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex: 1;
}

.use-mode-card .mode-bullets {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 24px 0;
  flex: 1;
}

.use-mode-card .mode-bullets li {
  color: #444;
  padding: 4px 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.use-mode-card .mode-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

/* Estate Pros Section */
.estate-pros {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.estate-pros-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.estate-pros-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.estate-pro-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

.estate-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.estate-pro-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.estate-pro-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: none;
}

.estate-pro-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.estate-pro-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Pain Point Section */
.pain-point-section {
  padding: 72px 0 64px;
  background: #fff;
  text-align: center;
}

.pain-point-subtext {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}

.pain-point-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 340px;
  text-align: left;
  display: inline-block;
}

.pain-point-bullets li {
  font-size: 0.98rem;
  color: #444;
  padding: 6px 0 6px 28px;
  position: relative;
  line-height: 1.5;
}

.pain-point-bullets li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #e05252;
  font-size: 0.85rem;
  font-weight: 700;
  top: 7px;
}

.pain-point-closing {
  font-size: 1.05rem;
  font-weight: 700;
  color: #00B4D1;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: #f8f9fa;
}

.how-it-works-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

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

.hiw-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 12px;
}

.hiw-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00CFE8 0%, #39C1D2 100%);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.hiw-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hiw-step-body {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.hiw-step-divider {
  font-size: 1.25rem;
  color: #00B4D1;
  padding: 0 4px;
  margin-top: 14px;
  flex-shrink: 0;
  opacity: 0.6;
}

@media (max-width: 639px) {
  .how-it-works-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hiw-step {
    max-width: 320px;
    width: 100%;
  }
  .hiw-step-divider {
    transform: rotate(90deg);
    margin: 0;
  }
}

/* Do the Work in the Field Section */
.field-work {
  padding: 80px 0;
  background: #0f1318;
}

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

.field-work-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.field-work-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.field-work-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.field-work-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 420px;
}

.field-work-bullets li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.field-work-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00B4D1;
  font-weight: 700;
}

.field-work-closing {
  font-size: 1.25rem;
  font-weight: 800;
  color: #00B4D1;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Bridge line between sections */
.section-bridge {
  text-align: center;
  font-size: 0.88rem;
  color: #aaa;
  padding: 20px 20px 0;
  letter-spacing: 0.01em;
}

.workflow-reinforcement {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  margin: 0 auto 12px;
  padding: 24px 24px 0;
  max-width: 560px;
}

/* Build Your Listing Section */
.build-listing {
  padding: 96px 0 80px;
  background: #f7fdfe;
}

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

.build-listing-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00B4D1;
  background: rgba(0, 207, 232, 0.08);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.build-listing-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.build-listing-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: #00B4D1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.build-listing-no-scratch {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.build-listing-subtext {
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.build-listing-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.build-listing-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.build-listing-points li svg {
  width: 18px;
  height: 18px;
  stroke: #00B4D1;
  flex-shrink: 0;
}

.build-listing-helper {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.build-listing-note {
  font-size: 0.875rem;
  color: #999;
  font-style: italic;
}

.build-listing-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.build-listing-img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .build-listing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .build-listing-visual {
    order: -1;
  }
  .build-listing-title {
    font-size: 1.6rem;
  }
  .build-listing-img {
    max-width: 220px;
  }
}

/* Demo Section */
.demo-section {
  padding: 68px 0 80px;
  background: #f8f9fb;
}

.demo-header {
  text-align: center;
  margin-bottom: 48px;
}

.demo-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: #666;
  margin-top: 10px;
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.demo-card {
  background: white;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.demo-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: none;
}

.demo-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.demo-card-desc {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.demo-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 9px 18px;
  background: transparent;
  color: #00B4D1;
  border: 1.5px solid #00CFE8;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.demo-play-btn:hover {
  background: #00CFE8;
  color: white;
}

@media (max-width: 767px) {
  .demo-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* Coming Soon Section */
.coming-soon-section {
  padding: 80px 0;
  background: white;
}

.coming-soon-cards {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.coming-soon-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 520px;
  text-align: center;
  position: relative;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  background: #e9ecef;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.coming-soon-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.coming-soon-card-body {
  font-size: 0.975rem;
  color: #666;
  line-height: 1.65;
}

/* Demo cards — single card variant */
.demo-cards--single {
  justify-content: center;
}

/* Pricing Section */
.pricing {
  padding: 24px 0 80px;
  background: white;
}

.community-line {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #00CFE8;
  margin-bottom: 12px;
}

.pricing-trust-line {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #bbb;
  margin: 24px auto 0;
  letter-spacing: 0.04em;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.toggle-label {
  font-weight: 500;
  color: #666;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #39C1D2;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

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

/* Pricing Carousel Container */
.pricing-carousel-container {
  position: relative;
  margin-bottom: 40px;
  padding: 20px 0 8px;
}

/* SwiperJS Mobile Carousel Styles */
@media (max-width: 767px) {
  .comparison-section,
  .why-trovio,
  .use-modes,
  .demo-section,
  .pricing,
  .faq,
  .final-cta,
  .homepage-features,
  .thrift-steps,
  .thrift-features-section,
  .thrift-workflow,
  .thrift-callout,
  .estate-steps,
  .estate-features-section,
  .estate-workflow,
  .estate-callout {
    padding-top: 36px;
    padding-bottom: 36px;
  }

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

  .features-subtitle,
  .thrift-section-subtitle,
  .estate-section-subtitle,
  .comparison-subtitle,
  .why-trovio-subtitle,
  .use-modes-subtitle,
  .demo-subtitle {
    margin-bottom: 24px;
  }

  .pricing-carousel-container {
    padding: 30px 0 0;
  }

  .pricing-swiper {
    width: 100%;
    padding: 0 20px 50px 20px;
    overflow: visible !important;
  }

  /* Clip overflow at the section level so off-screen slides don't show */
  .pricing-carousel-container {
    overflow: hidden;
  }

  .pricing-swiper .swiper-slide {
    height: auto;
  }

  .pricing-card {
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
  }

  .swiper-pagination {
    bottom: 10px !important;
  }

  .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #d1d5db !important;
    opacity: 1 !important;
    margin: 0 6px !important;
  }

  .swiper-pagination-bullet-active {
    background: #39C1D2 !important;
    transform: scale(1.2);
  }
}

/* Desktop Pricing - Display as grid */
@media (min-width: 768px) {
  .pricing-swiper {
    overflow: visible !important;
  }

  .pricing-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transform: none !important;
  }

  .pricing-swiper .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }

  .swiper-pagination {
    display: none;
  }
}

.pricing-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 16px 16px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: auto;
}

.pricing-card.featured {
  border-color: #39C1D2;
  box-shadow: 0 12px 40px rgba(57, 193, 210, 0.2);
  margin-top: 0;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #39C1D2;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.plan-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00B4D1;
  margin-bottom: 6px;
  opacity: 0.85;
}

.pricing-card.featured .plan-eyebrow {
  margin-top: 6px;
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.plan-subtitle {
  font-size: 0.875rem;
  color: #39C1D2;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: center;
  flex-grow: 0;
}

.plan-supporting {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.45;
  margin-bottom: 16px;
  text-align: center;
  font-style: italic;
}

.plan-upgrade-hint {
  font-size: 0.8rem;
  color: #00B4D1;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #39C1D2;
  margin-bottom: 16px;
}

.price span {
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
}

.plan-features {
  list-style: none;
  margin-bottom: 16px;
  text-align: left;
  padding: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  padding: 2px 0;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.3;
  word-wrap: break-word;
}

.checkmark {
  color: #39C1D2;
  font-weight: 600;
  margin-right: 8px;
  flex-shrink: 0;
}

.plan-button {
  width: 100%;
  background: #39C1D2;
  color: white;
  border: none;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background: #2A9BAA;
}

.pricing-footer {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.guarantee-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 16px;
  height: 16px;
  fill: #00B4D1;
}

/* FAQ Section */
.faq {
  padding: 32px 0 80px;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1.5px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 28px rgba(0, 207, 232, 0.15);
  border-color: #00CFE8;
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #39C1D2 0%, #2A9BAA 100%);
  text-align: center;
  color: white;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.final-cta .cta-button.primary {
  background: white;
  color: #39C1D2;
}

.final-cta .cta-button.primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Features Page Styles */
.features-hero {
  padding: 80px 0 48px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.features-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.detailed-features {
  padding: 80px 0;
  background: white;
}

.detailed-features-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.detailed-feature-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detailed-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detailed-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.detailed-feature-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.features-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #39C1D2 0%, #2a9bb8 100%);
  text-align: center;
  color: white;
}

.features-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-cta p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* About Us Page */
.about-section {
  padding: 80px 1rem 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image img {
  width: 440px;
  height: auto;
}

.about-text {
  max-width: 600px;
  text-align: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

/* Desktop layout */
@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .about-text {
    text-align: left;
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #39C1D2;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ccc;
  border: 1.5px solid #3a3a3a;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: #39C1D2;
  border-color: #39C1D2;
  transform: translateY(-2px);
}

/* Demo Coming Soon toast */
.demo-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  border: 1px solid rgba(57, 193, 210, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  white-space: nowrap;
}

.demo-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.demo-toast-icon {
  font-size: 18px;
  line-height: 1;
}

/* Terms & Conditions Page */
.terms-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.terms-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.terms-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.terms-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 500;
}

.terms-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

.terms-content {
  padding: 80px 0;
  background: white;
}

.terms-sections {
  max-width: 800px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.terms-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.terms-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-section li {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.terms-section li:before {
  content: "•";
  color: #39C1D2;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-section a {
  color: #39C1D2;
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .nav-container {
    padding: 0 40px;
  }

  .nav-menu {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

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

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

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

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

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

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
  }

  .hero-headline {
    font-size: 3.5rem;
  }

  .hero-subheadline {
    font-size: 1.25rem;
  }

  .hero-content {
    align-items: center;
    gap: 60px;
  }

  .hero-text .hero-buttons {
    justify-content: flex-start;
  }

  /* About Us Desktop Layout */
  .about-main-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
  }

  .about-image {
    text-align: left;
  }

  .about-us-img {
    width: 280px;
    height: 280px;
  }

  .differences-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .detailed-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .estate-pros-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
  }

  .guarantee-item {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   Estate Mode Page Styles
   ============================================ */

.estate-hero {
  padding-top: 100px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.estate-page-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00b5c8;
  background: rgba(0, 207, 232, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.estate-hero-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 12px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Estate hero mobile base: text above, carousel below */
.estate-hero .hero-content {
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  gap: 0;
}

/* Estate Hero Workflow Composition */
.estate-workflow-comp {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  padding: 24px 0;
  scrollbar-width: none;
}

.estate-workflow-comp::-webkit-scrollbar {
  display: none;
}

.estate-comp-screen {
  flex: 0 0 78%;
  scroll-snap-align: start;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.estate-comp-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: block;
}

.estate-comp-label {
  margin-top: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.estate-comp-label strong {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
}

.estate-comp-label span {
  font-size: 0.72rem;
  color: #999;
  line-height: 1.3;
}

/* Estate floating animation */
@keyframes estateFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes estateFloatAlt {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(6px); }
}

/* Desktop: 3-column grid matching thrift layout */
@media (min-width: 768px) {
  .estate-hero .hero-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .estate-workflow-comp {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px 10px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    align-items: end;
    flex: 1;
  }

  .estate-comp-screen {
    flex: unset;
    scroll-snap-align: none;
    padding: 0;
  }

  /* Create Job: upper left */
  .estate-comp-screen--job {
    grid-column: 1;
    grid-row: 1;
    transform: rotate(-2deg) translateY(-10px);
    animation: estateFloat 10s ease-in-out infinite;
    animation-delay: 0s;
  }

  /* Tag & Price: focal center, spans both rows */
  .estate-comp-screen--price {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    z-index: 2;
    transform: rotate(0deg) translateY(-8px);
    animation: estateFloat 10s ease-in-out infinite;
    animation-delay: -3s;
  }

  /* Capture Rooms: upper right */
  .estate-comp-screen--capture {
    grid-column: 3;
    grid-row: 1;
    transform: rotate(2deg) translateY(6px);
    animation: estateFloatAlt 10s ease-in-out infinite;
    animation-delay: -1.5s;
  }

  /* Export Data: lower left */
  .estate-comp-screen--export {
    grid-column: 1;
    grid-row: 2;
    transform: rotate(1deg) translateY(12px);
    animation: estateFloatAlt 10s ease-in-out infinite;
    animation-delay: -5s;
  }

  .estate-comp-img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.05);
  }

  .estate-comp-screen--price .estate-comp-img {
    max-height: 400px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(0, 0, 0, 0.10);
  }

  .estate-comp-screen:not(.estate-comp-screen--price) .estate-comp-img {
    opacity: 0.92;
  }
}

/* Steps Section */
.estate-steps {
  padding: 80px 0;
  background: white;
}

.estate-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.estate-steps-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.estate-step-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estate-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.estate-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.estate-step-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #00b5c8;
  background: rgba(0, 207, 232, 0.12);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.estate-step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estate-step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #00B4D1;
}

.estate-step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.estate-step-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Feature SVG icons on estate page */
.estate-feature-svg {
  width: 36px;
  height: 36px;
  stroke: #00B4D1;
}

.estate-features-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Workflow Section */
.estate-workflow {
  padding: 80px 0;
  background: white;
}

.estate-workflow-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}

.estate-workflow-col {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e9ecef;
}

.estate-workflow-col-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 207, 232, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.estate-workflow-col-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00B4D1;
}

.estate-workflow-col h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.estate-workflow-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.estate-workflow-col ul li {
  color: #444;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.estate-workflow-col ul li:last-child {
  border-bottom: none;
}

.estate-workflow-col ul li::before {
  content: "→";
  color: #00B4D1;
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Callout Band */
.estate-callout {
  padding: 72px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
  color: white;
}

.estate-callout h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.estate-callout p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Back to Home link in estate CTA */
.estate-cta-back {
  margin-top: 20px;
}

.estate-cta-back a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.estate-cta-back a:hover {
  color: white;
}

/* Estate page responsive — tablet */
@media (min-width: 768px) {
  .estate-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Estate page responsive — desktop */
@media (min-width: 1024px) {
  .estate-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .estate-features-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .estate-callout h2 {
    font-size: 2.5rem;
  }
}

/* Hero Stage Eyebrow Label */
.hero-stage-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aab;
  margin-bottom: 12px;
}

/* Mobile swipe hint — hidden on desktop */
.hero-swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.68rem;
  color: #ccc;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

/* Pagination dots — hidden on desktop */
.hero-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dde;
  transition: background 280ms ease, transform 280ms ease;
}

.hero-dot.is-active {
  background: #39C1D2;
  transform: scale(1.25);
}

/* Mobile carousel improvements (below tablet breakpoint) */
@media (max-width: 639px) {
  .hero-swipe-hint {
    display: block;
  }

  .hero-dots {
    display: flex;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .hero-stage {
    align-items: flex-start;
    padding: 20px 0;
    gap: 16px;
  }

  .hero-stage-panel {
    flex: 0 0 216px;
    gap: 6px;
  }

  .hero-stage-img,
  .hero-stage-panel--featured .hero-stage-img {
    max-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.07);
  }

  .hero-stage-label {
    gap: 2px;
  }
}

/* Trust Line */
.trust-line {
  text-align: center;
  font-size: 0.78rem;
  color: #bbb;
  letter-spacing: 0.06em;
  margin: 8px auto 0;
  padding: 0 16px;
}

.problem-awareness {
  text-align: center;
  font-size: 0.95rem;
  color: #999;
  line-height: 1.7;
  margin: 48px auto 0;
  padding: 0 24px;
  max-width: 520px;
}

.problem-awareness-cta {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #444;
  margin: 8px auto 0;
  padding: 0 24px;
  max-width: 520px;
}

/* ============================================
   Comparison Section (Homepage)
   ============================================ */

.comparison-section {
  padding: 58px 0 80px;
  background: #f8f9fa;
}

.comparison-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.comparison-col {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e9ecef;
}

.comparison-col--with {
  border-color: rgba(0, 207, 232, 0.25);
  background: #f0fdff;
}

.comparison-col h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.comparison-col--without h3 {
  color: #aaa;
}

.comparison-col--with h3 {
  color: #00b5c8;
}

.comparison-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comparison-icon {
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.comparison-icon--no {
  color: #ccc;
}

.comparison-icon--yes {
  color: #00B4D1;
}

.comparison-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.comparison-col--without .comparison-text {
  color: #888;
}

@media (min-width: 640px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Comparison table (row-by-row layout) */
.comparison-table {
  max-width: 680px;
  margin: 0 auto;
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
  padding: 0 2px;
}

.comparison-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 4px;
}

.comparison-col-label--no { color: #bbb; }
.comparison-col-label--yes { color: #00b5c8; }

.comparison-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.comparison-cell {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
}

.comparison-cell--no {
  background: white;
  border: 1px solid #e9ecef;
}

.comparison-cell--yes {
  background: #f0fdff;
  border: 1px solid rgba(0, 207, 232, 0.22);
}

/* ============================================
   Why Trovio Section
   ============================================ */

.why-trovio {
  padding: 32px 0 80px;
  background: white;
}

.why-trovio-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.why-trovio-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-trovio-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.why-check {
  color: #00B4D1;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============================================
   Thrift Mode Page Styles
   ============================================ */

.thrift-hero {
  padding-top: 100px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thrift-page-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00b5c8;
  background: rgba(0, 207, 232, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.thrift-hero-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 12px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Thrift Hero Workflow Composition */
.thrift-workflow-comp {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  padding: 24px 0;
  scrollbar-width: none;
}

.thrift-workflow-comp::-webkit-scrollbar {
  display: none;
}

.thrift-comp-screen {
  flex: 0 0 78%;
  scroll-snap-align: start;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thrift-comp-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  display: block;
}

.thrift-comp-label {
  text-align: center;
  margin-top: 10px;
}

.thrift-comp-label strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a2636;
}

.thrift-comp-label span {
  display: block;
  font-size: 0.78rem;
  color: #999;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .thrift-workflow-comp {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px 10px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    align-items: end;
    flex: 1;
  }

  .thrift-comp-screen {
    flex: unset;
    scroll-snap-align: none;
    padding: 0;
  }

  .thrift-comp-screen--capture {
    grid-column: 1;
    grid-row: 1;
    transform: rotate(-2deg) translateY(-10px);
    animation: estateFloat 10s ease-in-out infinite;
    animation-delay: 0s;
  }

  .thrift-comp-screen--analyze {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    z-index: 2;
    transform: rotate(0deg) translateY(-8px);
    animation: estateFloat 10s ease-in-out infinite;
    animation-delay: -3s;
  }

  .thrift-comp-screen--list {
    grid-column: 3;
    grid-row: 1;
    transform: rotate(2deg) translateY(6px);
    animation: estateFloatAlt 10s ease-in-out infinite;
    animation-delay: -1.5s;
  }

  .thrift-comp-screen--items {
    grid-column: 1;
    grid-row: 2;
    transform: rotate(1deg) translateY(12px);
    animation: estateFloatAlt 10s ease-in-out infinite;
    animation-delay: -5s;
  }

  .thrift-comp-img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.05);
  }

  .thrift-comp-screen--analyze .thrift-comp-img {
    max-height: 400px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 8px 20px rgba(0, 0, 0, 0.10);
  }

  .thrift-comp-screen:not(.thrift-comp-screen--analyze) .thrift-comp-img {
    opacity: 0.90;
  }
}

/* Steps Section */
.thrift-steps {
  padding: 80px 0;
  background: white;
}

.thrift-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.thrift-steps-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.thrift-step-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thrift-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.thrift-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.thrift-step-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #00b5c8;
  background: rgba(0, 207, 232, 0.12);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thrift-step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thrift-step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #00B4D1;
}

.thrift-step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.thrift-step-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Feature SVG icons on thrift page */
.thrift-feature-svg {
  width: 36px;
  height: 36px;
  stroke: #00B4D1;
}

.thrift-features-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Workflow Section */
.thrift-workflow {
  padding: 80px 0;
  background: white;
}

.thrift-workflow-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}

.thrift-workflow-col {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e9ecef;
}

.thrift-workflow-col-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 207, 232, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.thrift-workflow-col-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00B4D1;
}

.thrift-workflow-col h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.thrift-workflow-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thrift-workflow-col ul li {
  color: #444;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.thrift-workflow-col ul li:last-child {
  border-bottom: none;
}

.thrift-workflow-col ul li::before {
  content: "→";
  color: #00B4D1;
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Callout Band */
.thrift-callout {
  padding: 72px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
  color: white;
}

.thrift-callout h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.thrift-callout p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Back to Home link in CTA */
.thrift-cta-back {
  margin-top: 20px;
}

.thrift-cta-back a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.thrift-cta-back a:hover {
  color: white;
}

/* Thrift page responsive — tablet */
@media (min-width: 768px) {
  .thrift-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Thrift page responsive — desktop */
@media (min-width: 1024px) {
  .thrift-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .thrift-features-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .thrift-callout h2 {
    font-size: 2.5rem;
  }
}

/* ============================================
   Hero Stage Walkthrough Highlight (desktop only)
   ============================================ */

@media (min-width: 769px) {
  .hero-stage-panel {
    opacity: 0.82;
    transition: opacity 400ms ease;
  }

  .hero-stage-panel .hero-stage-img {
    transition: box-shadow 400ms ease;
  }

  .hero-stage-panel.is-active {
    opacity: 1;
  }

  .hero-stage-panel.is-active .hero-stage-img {
    box-shadow: 0 16px 48px rgba(0, 207, 232, 0.18), 0 4px 16px rgba(0, 0, 0, 0.12);
  }
}

/* ============================================
   Hero Eyebrow Label
   ============================================ */

.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00B4D1;
  margin-bottom: 12px;
  opacity: 0.85;
}

/* ============================================
   Homepage Features Section (combined)
   ============================================ */

.homepage-features {
  padding: 56px 0 80px;
  background: #f8f9fa;
}

.homepage-features .features-grid {
  gap: 20px;
}

.homepage-features .feature-card {
  padding: 24px;
}

.homepage-features .feature-icon {
  height: 36px;
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.homepage-features .feature-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.homepage-features .feature-card p {
  font-size: 0.8rem;
}

.thrift-features-section .features-grid,
.estate-features-section .features-grid {
  gap: 20px;
}

.thrift-features-section .feature-card,
.estate-features-section .feature-card {
  padding: 24px;
}

.thrift-features-section .feature-icon,
.estate-features-section .feature-icon {
  height: 36px;
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.thrift-features-section .feature-card h3,
.estate-features-section .feature-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.thrift-features-section .feature-card p,
.estate-features-section .feature-card p {
  font-size: 0.8rem;
}

.homepage-features-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ============================================
   Dual Workflow Section (Homepage)
   ============================================ */

.dual-workflow {
  padding: 56px 0;
  background: #f8f9fa;
}

.dual-workflow-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.dual-workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dual-workflow-col {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid #e9ecef;
}

.dual-workflow-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00B4D1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dual-workflow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dual-workflow-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.dw-step-num {
  background: #f0fdfe;
  color: #00B4D1;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 8px;
  min-width: 30px;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .dual-workflow-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Homepage Estate Feature Cards
   ============================================ */

.homepage-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.homepage-feature-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.homepage-feature-icon {
  width: 44px;
  height: 44px;
  background: #f0fdfe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.homepage-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: #00B4D1;
}

.homepage-feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.homepage-feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .homepage-feature-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Estate Screenshots Preview (Homepage)
   ============================================ */

.estate-screens-preview {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.estate-preview-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 200px;
}

.estate-preview-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.estate-preview-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 767px) {
  .estate-screens-preview {
    display: none;
  }
}

/* ============================================
   WORKFLOW OVERVIEW SECTION
   ============================================ */

.workflow-overview {
  background: #fff;
  padding: 80px 0;
}

.workflow-overview-subtitle {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.workflow-overview-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.wos-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 80px;
}

.wos-step-icon {
  width: 52px;
  height: 52px;
  background: #f0fdff;
  border: 2px solid #00B4D1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00B4D1;
}

.wos-step-icon svg {
  width: 22px;
  height: 22px;
}

.wos-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wos-arrow {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.workflow-overview-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.workflow-overview-copy p {
  font-size: 1rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .workflow-overview {
    padding: 56px 0;
  }

  .workflow-overview-steps {
    gap: 6px;
  }

  .wos-step {
    min-width: 64px;
  }

  .wos-step-icon {
    width: 44px;
    height: 44px;
  }

  .wos-step-icon svg {
    width: 18px;
    height: 18px;
  }

  .wos-step-label {
    font-size: 0.65rem;
  }

  .wos-arrow {
    font-size: 1rem;
    margin-bottom: 22px;
  }
}

/* ============================================
   DESKTOP PORTAL SECTION
   ============================================ */

.dtp-section {
  background: #f8f9fb;
  padding: 80px 0;
}

.dtp-header {
  text-align: center;
  margin-bottom: 48px;
}

.dtp-badge {
  display: inline-block;
  background: #00CFE8;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.dtp-subtitle {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.dtp-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.dtp-screenshot-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.dtp-screenshot-img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.dtp-screenshot-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  margin: 0;
}

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

.dtp-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dtp-feature-icon {
  width: 40px;
  height: 40px;
  background: #f0fdff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00B4D1;
  margin-bottom: 14px;
}

.dtp-feature-icon svg {
  width: 20px;
  height: 20px;
}

.dtp-feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.dtp-feature-card p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1023px) {
  .dtp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .dtp-section {
    padding: 56px 0;
  }

  .dtp-screenshots {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dtp-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================
   REFINEMENT PASS — NEW ELEMENTS
   ============================================ */

/* Hero supporting line */
.hero-supporting-line {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
  margin: 12px auto 28px;
  max-width: 560px;
  text-align: center;
}

/* Unlimited Drafts callout */
.unlimited-drafts-callout {
  background: #f0fdff;
  border-left: 3px solid #00CFE8;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-top: 20px;
}

.unlimited-drafts-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #00afc5;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.unlimited-drafts-copy {
  font-size: 0.87rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Reseller outcomes grid */
.reseller-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.outcome-card {
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.outcome-icon {
  width: 40px;
  height: 40px;
  background: #f0fdff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00B4D1;
  margin: 0 auto 12px;
}

.outcome-icon svg {
  width: 20px;
  height: 20px;
}

.outcome-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: none;
}

.outcome-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1023px) {
  .reseller-outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-supporting-line {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .reseller-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .outcome-card:last-child {
    grid-column: 1 / -1;
  }
}

/* DTP secondary subtitle */
.dtp-subtitle--secondary {
  color: #444;
  margin-top: 8px;
}

/* Pricing plan tagline */
.plan-tagline {
  font-size: 0.82rem;
  color: #888;
  margin: 2px 0 0;
  font-weight: 500;
}

.pricing-card.featured .plan-tagline {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   LISTING COCKPIT SECTION
   ============================================ */

.listing-cockpit-section {
  background: #fff;
  padding: 80px 0;
}

.lc-header {
  text-align: center;
  margin-bottom: 40px;
}

.lc-subtitle {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.lc-screenshot-wrap {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #eef0f2;
}

.lc-screenshot-img {
  width: 100%;
  display: block;
}

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

.lc-feature-card {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eef0f2;
}

.lc-feature-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00B4D1;
  margin-bottom: 14px;
}

.lc-feature-icon svg {
  width: 20px;
  height: 20px;
}

.lc-feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.lc-feature-card p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1023px) {
  .lc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .listing-cockpit-section {
    padding: 56px 0;
  }

  .lc-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Fix outcomes grid for 6 items (3x2) */
.reseller-outcomes-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1023px) {
  .reseller-outcomes-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .reseller-outcomes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .outcome-card:last-child {
    grid-column: auto !important;
  }
}

/* ============================================
   DOCUMENTATION SYSTEM SECTION
   ============================================ */

.doc-system-section {
  background: #f8f9fb;
  padding: 80px 0;
}

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

.doc-system-title {
  text-align: left;
  margin-bottom: 12px;
}

.doc-system-subtitle {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.doc-system-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-system-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
}

.doc-system-bullets li svg {
  width: 16px;
  height: 16px;
  color: #00B4D1;
  flex-shrink: 0;
}

.doc-system-closing {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #e8eaed;
}

.doc-system-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-system-fpo {
  background: #eef0f2;
  border: 1px solid #dde0e4;
  border-radius: 14px;
  width: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  gap: 8px;
}

.fpo-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.fpo-detail {
  font-size: 0.78rem;
  color: #bbb;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .doc-system-section {
    padding: 56px 0;
  }

  .doc-system-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .doc-system-title {
    text-align: center;
  }

  .doc-system-fpo {
    min-height: 200px;
  }
}

/* ============================================
   MERGED LISTING COCKPIT SECTION
   ============================================ */

.listing-cockpit-merged {
  background: #fff;
  padding: 80px 0;
}

.listing-cockpit-merged .lc-header {
  text-align: center;
  margin-bottom: 40px;
}

.lc-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00B4D1;
  margin-bottom: 10px;
}

.lc-closing {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
  margin: 36px 0 0;
}

.lc-features-grid--five {
  grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 1100px) {
  .lc-features-grid--five {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .listing-cockpit-merged {
    padding: 56px 0;
  }

  .lc-features-grid--five {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   BRIDGE SECTION — From Sourcing Trip to Listing-Ready
   ============================================ */

.bridge-section {
  background: #fff;
  padding: 72px 0;
  border-bottom: 1px solid #eef0f3;
}

.bridge-section .section-title {
  margin-bottom: 12px;
}

.bridge-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 52px;
}

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

.bridge-column {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}

.bridge-column-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00B4D1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bridge-column-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .bridge-section {
    padding: 52px 0;
  }

  .bridge-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bridge-subtitle {
    margin-bottom: 36px;
  }
}

/* ============================================
   LISTING COCKPIT STANDALONE SECTION
   ============================================ */

.listing-cockpit-standalone {
  background: #f8f9fb;
  padding: 80px 0;
}

.listing-cockpit-standalone .lc-header {
  text-align: center;
  margin-bottom: 40px;
}

.listing-cockpit-standalone .section-title {
  margin-bottom: 12px;
}

.lc-bullet-list {
  list-style: none;
  padding: 0;
  max-width: 640px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lc-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.lc-bullet-list li svg {
  width: 18px;
  height: 18px;
  color: #00B4D1;
  flex-shrink: 0;
  margin-top: 2px;
}

.listing-cockpit-standalone .lc-closing {
  margin-top: 36px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #444;
}

@media (max-width: 767px) {
  .listing-cockpit-standalone {
    padding: 56px 0;
  }
}

/* ============================================
   BRIDGE SECTION — column icons
   ============================================ */

.bridge-column-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: #00B4D1;
}

.bridge-column-icon svg {
  width: 28px;
  height: 28px;
}

.bridge-column-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #00B4D1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================
   DOC SECTION — emotional story copy
   ============================================ */

.doc-system-story {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 28px;
}

.doc-system-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* ============================================
   FIELD TOOL SECTION — Act 1
   ============================================ */

.positioning-statement {
  padding: 56px 24px;
  text-align: center;
  background: #fff;
}

.positioning-statement p {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.field-tool-section {
  padding: 70px 0 72px;
  background: #fff;
}

.field-tool-header {
  text-align: center;
  margin-bottom: 56px;
}

.field-tool-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 520px;
  margin: 12px auto 0;
}

/* Field steps — desktop: static flex row */
.field-steps {
  overflow: hidden;
}

.field-swiper {
  overflow: visible;
}

/* Desktop: neutralise swiper, render as normal flex row */
@media (min-width: 768px) {
  .field-swiper-prev,
  .field-swiper-next {
    display: none !important;
  }
  .field-swiper {
    overflow: visible !important;
  }
  .field-swiper .swiper-wrapper {
    display: flex !important;
    transform: none !important;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .field-swiper .field-step {
    width: auto !important;
    flex: 1;
    max-width: 220px;
  }
  /* Teal arrows between steps via CSS */
  .field-swiper .field-step:not(:last-child) {
    position: relative;
  }
  .field-swiper .field-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 80px;
    color: #00B4D1;
    font-size: 1.9rem;
    font-weight: 300;
    pointer-events: none;
  }
  .field-swiper-pagination {
    display: none !important;
  }
}

.field-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.field-step-img {
  width: 100%;
  max-width: 200px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: block;
  margin: 0 auto 20px;
}

.field-step-content {
  padding: 0 8px;
}

.field-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.field-step-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Controls bar — hidden on desktop */
.field-swiper-controls {
  display: none;
}
.field-swiper-prev,
.field-swiper-next {
  display: none;
}

/* Mobile: swiper carousel */
@media (max-width: 767px) {
  .field-steps {
    overflow: visible;
    position: relative;
  }
  .field-swiper {
    overflow: hidden !important;
    position: relative;
  }
  .field-swiper .field-step {
    max-width: 100%;
  }
  .field-step-img {
    max-width: 240px;
  }
  .field-step-content {
    margin-bottom: 0;
  }
  /* Arrows: absolute inside swiper, vertically centred with the image */
  .field-swiper-prev,
  .field-swiper-next {
    display: flex;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    background: white;
    border: 1.5px solid #00CFE8;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .field-swiper-prev {
    left: 4px;
  }
  .field-swiper-next {
    right: 4px;
  }
  .field-swiper-prev::after {
    content: '←';
    font-size: 14px;
    font-weight: 700;
    color: #00B4D1;
  }
  .field-swiper-next::after {
    content: '→';
    font-size: 14px;
    font-weight: 700;
    color: #00B4D1;
  }
  /* Dots row — 8px below the label, centred */
  .field-swiper-controls {
    display: block;
    text-align: center;
    margin-top: 8px;
  }
  .field-swiper-pagination {
    position: static !important;
    transform: none !important;
    display: block;
    left: auto !important;
    bottom: auto !important;
  }
}

/* ============================================
   TRANSITION BRIDGE
   ============================================ */

.transition-bridge {
  background: #f8f9fb;
  padding: 100px 0 96px;
  text-align: center;
}

.transition-bridge-headline {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.transition-bridge-body {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .transition-bridge-headline {
    font-size: 1.5rem;
  }
}

/* ============================================
   PORTAL SECTION — Carousel
   ============================================ */

.portal-section {
  padding: 80px 0 72px;
  background: #fff;
}

.portal-header {
  text-align: center;
  margin-bottom: 40px;
}

.portal-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  max-width: 540px;
  margin: 12px auto 0;
}

.portal-carousel-wrap {
  position: relative;
}

.portal-swiper {
  padding: 12px 4px 48px !important;
}

.portal-slide {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #f8f9fb;
  display: flex;
  flex-direction: column;
}

.portal-slide--featured {
  box-shadow: 0 6px 28px rgba(0, 207, 232, 0.18), 0 2px 8px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(0, 207, 232, 0.3);
}

.portal-slide-img {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}

.portal-slide-label {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  text-align: center;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.portal-slide--fpo .portal-slide-label {
  border-top: none;
}

.portal-slide-fpo-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 24px;
  gap: 8px;
  min-height: 180px;
}

.portal-slide-fpo-inner svg {
  width: 32px;
  height: 32px;
  color: #00B4D1;
  margin-bottom: 4px;
}

.portal-slide-fpo-inner p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.portal-slide-fpo-inner span {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portal-nav-next,
.portal-nav-prev {
  color: #333 !important;
  background: white !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.portal-nav-next::after,
.portal-nav-prev::after {
  font-size: 0.9rem !important;
}

.portal-pagination .swiper-pagination-bullet-active {
  background: #00CFE8 !important;
}

/* ============================================
   LISTING COCKPIT SPOTLIGHT
   ============================================ */

.lc-spotlight {
  padding: 84px 0 112px;
  background: #f0fdff;
}

.lc-spotlight-header {
  text-align: center;
  margin-bottom: 56px;
}

.lc-spotlight-subheadline {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: #00B4D1;
  letter-spacing: 0.01em;
  margin: 10px 0 28px;
}

.lc-spotlight-intro-single {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  font-weight: 300;
}

.lc-spotlight-screenshot {
  max-width: 1080px;
  margin: 0 auto 56px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,207,232,0.18), 0 16px 48px rgba(0,0,0,0.10);
}

.lc-spotlight-img {
  width: 100%;
  display: block;
}

.lc-spotlight-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 48px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lc-spotlight-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #333;
  font-weight: 300;
}

.lc-spotlight-bullets li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #00B4D1;
}

.lc-spotlight-closing {
  text-align: center;
  font-size: 1.25rem;
  color: #1a1a1a;
  margin: 0;
}

/* ============================================
   DESKTOP FEATURES SECTION (supporting)
   ============================================ */

.desktop-features-section {
  padding: 72px 0 64px;
  background: #fff;
}

.desktop-features-title {
  margin-bottom: 12px;
}

.desktop-features-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.feature-group {
  margin-bottom: 48px;
}

.feature-group:last-child {
  margin-bottom: 0;
}

.feature-group-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00B4D1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.desktop-features-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
}

.desktop-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e4e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.desktop-feature-icon {
  width: 36px;
  height: 36px;
  color: #00B4D1;
  margin-bottom: 4px;
}

.desktop-feature-icon svg {
  width: 100%;
  height: 100%;
}

.desktop-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.desktop-feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-feature-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.pro-badge {
  background: #00CFE8;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .desktop-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-features-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .desktop-features-grid,
  .desktop-features-grid--two {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ONE CONNECTED WORKFLOW — Positioning section
   ============================================ */

.positioning-section {
  padding: 56px 0;
  background: #f8f9fb;
  text-align: center;
}

.positioning-headline {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #1a1a1a;
  margin: 0 0 14px;
}

.positioning-subheadline {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   TRANSITION DIVIDER — phone → desktop visual
   ============================================ */

.transition-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.transition-divider-icon {
  width: 36px;
  height: 36px;
  color: #00B4D1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-divider-icon svg {
  width: 100%;
  height: 100%;
}

.transition-divider-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #00CFE8, #c8f0f7);
}

/* ============================================
   PORTAL SLIDE — hint text & interactions
   ============================================ */

.portal-slide-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.portal-slide-hint {
  font-size: 0.72rem;
  color: #00B4D1;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: block;
}

.portal-slide[data-action] {
  cursor: pointer;
}

/* ============================================
   LC BULLET — Future roadmap item
   ============================================ */

.lc-bullet-future {
  opacity: 0.55;
  font-style: italic;
}

.lc-bullet-future svg {
  color: #999 !important;
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */

.trovio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.trovio-lightbox.is-open {
  opacity: 1;
}

.trovio-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: block;
}

.trovio-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.8;
}

.trovio-lightbox-close:hover {
  opacity: 1;
}

/* ============================================
   CARD SUBCOPY — Manrope 300 throughout
   ============================================ */

.feature-card p,
.homepage-feature-card p,
.desktop-feature-card p,
.dtp-feature-card p,
.outcome-card p,
.lc-feature-card p,
.detailed-feature-card p,
.plan-description,
.faq-item p {
  font-weight: 300 !important;
}

/* ============================================
   FIELD FEATURES SECTION — Why Resellers Start
   ============================================ */

.field-features-section {
  padding: 80px 0 72px;
  background: #f8f9fb;
}

.field-features-header {
  text-align: center;
  margin-bottom: 48px;
}

.field-features-subtitle {
  font-size: 1.05rem;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
  max-width: 680px;
  margin: 12px auto 0;
}

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

@media (max-width: 767px) {
  .field-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .field-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 72px 0 80px;
  background: #f8f9fb;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #888;
  font-weight: 300;
  margin: 8px auto 48px;
  max-width: 420px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-quote {
  font-size: 1rem;
  color: #333;
  line-height: 1.55;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  font-size: 0.82rem;
  color: #aaa;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ============================================
   FAQ SHOW MORE
   ============================================ */

.faq-show-more {
  text-align: center;
  margin-top: 32px;
}

.faq-show-more-btn {
  background: none;
  border: none;
  color: #00B4D1;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-show-more-btn:hover {
  color: #00CFE8;
}

/* ============================================
   EMAIL CAPTURE — footer signup + slide-in
   ============================================ */

.footer-signup {
  display: none;
  background: #0d1b1e;
  padding: 40px 0;
}

.footer-signup-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-signup-text h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-signup-text p {
  font-size: 0.88rem;
  color: #9fb3b7;
  font-weight: 300;
  max-width: 420px;
  line-height: 1.5;
}

.email-capture-form {
  width: 100%;
}

.email-capture-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}

.email-capture-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid #2b3d40;
  background: #142a2e;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
}

.email-capture-input::placeholder {
  color: #6d8285;
}

.email-capture-input:focus {
  outline: none;
  border-color: #00CFE8;
}

.email-capture-submit {
  flex-shrink: 0;
  background: #00CFE8;
  color: #06181a;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.email-capture-submit:hover {
  background: #33dcf0;
}

.email-capture-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.email-capture-message {
  margin-top: 10px;
  font-size: 0.85rem;
  min-height: 1.2em;
  color: #7de6c0;
}

.email-capture-message.is-error {
  color: #ff9a9a;
}

@media (min-width: 768px) {
  .footer-signup-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .email-capture-form {
    width: auto;
    flex-shrink: 0;
  }
}

/* Scroll-triggered slide-in */
.email-slidein {
  position: fixed;
  right: 20px;
  bottom: -400px;
  z-index: 1200;
  width: calc(100% - 40px);
  max-width: 340px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 22px 20px 20px;
  transition: bottom 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.email-slidein.is-visible {
  bottom: 20px;
}

.email-slidein-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: #aaa;
  cursor: pointer;
  padding: 6px;
}

.email-slidein-close:hover {
  color: #666;
}

.email-slidein-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00B4D1;
  margin-bottom: 8px;
}

.email-slidein h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  padding-right: 20px;
}

.email-slidein p {
  font-size: 0.85rem;
  color: #666;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 14px;
}

.email-slidein .email-capture-row {
  max-width: none;
  flex-direction: column;
}

.email-slidein .email-capture-input {
  border: 1.5px solid #e0e0e0;
  background: #fafafa;
  color: #1a1a1a;
}

.email-slidein .email-capture-submit {
  width: 100%;
}

.email-slidein .email-capture-message {
  color: #0d9e6b;
}

.email-slidein .email-capture-message.is-error {
  color: #d64545;
}

@media (max-width: 420px) {
  .email-slidein {
    right: 10px;
    width: calc(100% - 20px);
  }
}
