/* Landing Page CSS - Clean Modern White Medical SaaS Aesthetic */

.landing-body {
  font-family: 'Public Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  color: #334155;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.landing-container-wrapper {
  display: block;
  font-family: 'Public Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  color: #334155;
  background-color: #ffffff;
  overflow-x: hidden;
}

.landing-container-wrapper .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan { color: #0284c7 !important; }
.text-emerald { color: #059669 !important; }
.text-purple { color: #7c3aed !important; }
.text-white { color: #ffffff !important; }

.shadow-glow {
  box-shadow: 0 10px 30px -5px rgba(2, 132, 199, 0.25);
}

.glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Buttons */
.landing-container-wrapper .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.landing-container-wrapper .btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0284c7 100%);
  color: #ffffff !important;
}

.landing-container-wrapper .btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0369a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.35);
}

.landing-container-wrapper .btn-outline {
  background: #ffffff;
  border: 1.5px solid #0284c7;
  color: #0284c7 !important;
}

.landing-container-wrapper .btn-outline:hover {
  background: #f0f9ff;
  border-color: #0369a1;
  color: #0369a1 !important;
}

.landing-container-wrapper .btn-ghost {
  background: transparent;
  color: #475569 !important;
}

.landing-container-wrapper .btn-ghost:hover {
  color: #0284c7 !important;
}

.landing-container-wrapper .btn-hero-primary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
}

.landing-container-wrapper .btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.4);
}

.landing-container-wrapper .btn-hero-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #1e293b !important;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.landing-container-wrapper .btn-hero-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

/* Header Navigation */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
}

.landing-header .header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-header .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.landing-header .brand-logo .logo-img-wrapper {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.landing-header .brand-logo .logo-img-wrapper:hover {
  transform: scale(1.03);
}

.landing-header .brand-logo .brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.landing-header .nav-links {
  display: flex;
  gap: 2rem;
}

.landing-header .nav-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.landing-header .nav-links a:hover {
  color: #0284c7;
}

.landing-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5.5rem 0 4rem;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-section .hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-section .hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 165, 233, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-section .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-section .badge-pill .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #059669;
  box-shadow: 0 0 10px #059669;
}

.hero-section .hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.hero-section .hero-subtitle {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  line-height: 1.65;
  color: #475569;
}

.hero-section .hero-subtitle strong {
  color: #0f172a;
}

.hero-section .hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Preview Mockup */
.hero-preview-card {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 25px rgba(2, 132, 199, 0.1);
}

.hero-preview-card .preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.hero-preview-card .preview-header .mac-buttons {
  display: flex;
  gap: 0.4rem;
}

.hero-preview-card .preview-header .mac-buttons .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-preview-card .preview-header .mac-buttons .dot.red { background: #ef4444; }
.hero-preview-card .preview-header .mac-buttons .dot.yellow { background: #f59e0b; }
.hero-preview-card .preview-header .mac-buttons .dot.green { background: #10b981; }

.hero-preview-card .preview-header .preview-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}

.hero-preview-card .preview-header .preview-status {
  font-size: 0.78rem;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-preview-card .preview-header .preview-status .status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 8px #059669;
}

.hero-preview-card .preview-body {
  position: relative;
  padding: 1rem;
  background: #090d16;
}

.hero-preview-card .preview-body .xray-viewport {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 420px;
  background: radial-gradient(circle at center, #1e293b 0%, #090d16 100%);
}

.hero-preview-card .preview-body .scan-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  box-shadow: 0 0 15px #38bdf8;
  animation: scanLaser 3.5s ease-in-out infinite;
  z-index: 10;
}

.hero-preview-card .preview-body .xray-image-mockup {
  position: relative;
  width: 100%;
  height: 420px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(2, 6, 23, 0.35)),
              url('/assets/img/tooth-scheme.jpg') center/contain no-repeat #ffffff;
}

/* Bounding Box Overlays */
.bbox {
  position: absolute;
  border-radius: 6px;
  border: 2px solid;
  transition: all 0.3s;
}

.bbox-caries {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.2);
}

.bbox-implant {
  border-color: #0284c7;
  background: rgba(2, 132, 199, 0.2);
}

.bbox-restoration {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.2);
}

.bbox-tsl {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.2);
}

.bbox-crown {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.2);
}

.bbox .bbox-tag {
  position: absolute;
  top: -24px;
  left: 0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.bbox .bbox-tag.tag-caries { background: #ef4444; }
.bbox .bbox-tag.tag-implant { background: #0284c7; }
.bbox .bbox-tag.tag-restoration { background: #10b981; }
.bbox .bbox-tag.tag-tsl { background: #f59e0b; }
.bbox .bbox-tag.tag-crown { background: #3b82f6; }

.xray-hud {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
}

.xray-hud .hud-item {
  display: flex;
  flex-direction: column;
}

.xray-hud .hud-item .hud-label {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.xray-hud .hud-item .hud-val {
  font-size: 0.88rem;
  font-weight: 700;
}

/* Metrics Section */
.metrics-section {
  padding: 3.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.metrics-section .metrics-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.metrics-section .metric-card {
  text-align: center;
}

.metrics-section .metric-card .metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #0284c7;
}

.metrics-section .metric-card .metric-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.5rem;
}

.metrics-section .metric-divider {
  width: 1px;
  height: 48px;
  background: #cbd5e1;
}

/* Section Headers */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header .section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0284c7;
  margin-bottom: 0.75rem;
}

.section-header .section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.section-header .section-subtitle {
  max-width: 650px;
  margin: 0.75rem auto 0;
  font-size: 1.1rem;
  color: #64748b;
}

/* Demo Sandbox Section */
.demo-section {
  padding: 5rem 0;
  background: #ffffff;
}

.demo-section .demo-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}

.demo-section .demo-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: #0f172a;
  color: #f8fafc;
  border-bottom: 1px solid #1e293b;
}

.demo-section .demo-controls-bar .selector-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

.demo-section .demo-controls-bar .form-select {
  background-color: #1e293b !important;
  color: #f8fafc !important;
  border: 1px solid #334155 !important;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.demo-section .demo-controls-bar .form-select:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.25) !important;
}

.demo-section .demo-controls-bar .toggle-pill {
  background: #1e293b;
  border: 1px solid #334155;
  color: #94a3b8;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.demo-section .demo-controls-bar .toggle-pill:hover {
  color: #f8fafc;
  border-color: #0284c7;
}

.demo-section .demo-controls-bar .toggle-pill.active {
  border-color: #0284c7;
  color: #ffffff;
  background: #0284c7;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.demo-section .demo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(360px, 1fr);
  min-height: 520px;
}

@media (max-width: 1024px) {
  .demo-section .demo-split {
    grid-template-columns: 1fr;
  }
}

.demo-section .demo-image-pane {
  padding: 1.25rem;
  border-right: 1px solid #1e293b;
  background: #060911;
  display: flex;
  flex-direction: column;
}

.demo-section .demo-image-pane .scan-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #090d16;
  border: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
}

.demo-section .demo-image-pane .demo-xray-canvas {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 420px;
  background-color: #060911 !important;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) !important;
  background-size: 24px 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-section .demo-image-pane .demo-xray-canvas #ai-render-img {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.demo-section .demo-sidebar-pane {
  padding: 1.75rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-section .demo-sidebar-pane .pane-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.demo-section .demo-sidebar-pane .pane-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.demo-section .demo-sidebar-pane .finding-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 420px;
  overflow-y: auto;
  flex: 1;
}

.demo-section .demo-sidebar-pane .finding-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0284c7;
  transition: all 0.2s ease;
}

.demo-section .demo-sidebar-pane .finding-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.demo-section .demo-sidebar-pane .finding-card.border-red { border-left-color: #ef4444; }
.demo-section .demo-sidebar-pane .finding-card.border-blue { border-left-color: #3b82f6; }
.demo-section .demo-sidebar-pane .finding-card.border-cyan { border-left-color: #0284c7; }
.demo-section .demo-sidebar-pane .finding-card.border-emerald { border-left-color: #10b981; }
.demo-section .demo-sidebar-pane .finding-card.border-amber { border-left-color: #f59e0b; }
.demo-section .demo-sidebar-pane .finding-card.border-purple { border-left-color: #a855f7; }

.demo-section .demo-sidebar-pane .finding-card .finding-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.demo-section .demo-sidebar-pane .finding-card .finding-header .code-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  color: #fff;
}


.demo-section .demo-sidebar-pane .finding-card .finding-header .code-badge.bg-red { background: #ef4444; }
.demo-section .demo-sidebar-pane .finding-card .finding-header .code-badge.bg-blue { background: #3b82f6; }
.demo-section .demo-sidebar-pane .finding-card .finding-header .code-badge.bg-cyan { background: #0284c7; }
.demo-section .demo-sidebar-pane .finding-card .finding-header .code-badge.bg-emerald { background: #10b981; }

.demo-section .demo-sidebar-pane .finding-card .finding-header .tooth-num { font-size: 0.85rem; font-weight: 700; color: #0f172a; }
.demo-section .demo-sidebar-pane .finding-card .finding-header .confidence { font-size: 0.75rem; color: #059669; font-weight: 700; margin-left: auto; }

.demo-section .demo-sidebar-pane .finding-card .finding-name { font-size: 0.9rem; font-weight: 700; color: #1e293b; }
.demo-section .demo-sidebar-pane .finding-card .finding-desc { font-size: 0.8rem; color: #64748b; margin-top: 0.2rem; }

/* Conditions Catalog Grid */
.conditions-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.conditions-section .category-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.conditions-section .filter-chip {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.conditions-section .filter-chip:hover {
  color: #0284c7;
  border-color: #0284c7;
}

.conditions-section .filter-chip.active {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.conditions-section .conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.conditions-section .condition-card {
  background: #ffffff;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.conditions-section .condition-card:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.12);
}

.conditions-section .condition-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.conditions-section .condition-card .card-top .condition-code {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid;
}

.conditions-section .condition-card .card-top .accuracy-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
}

.conditions-section .condition-card .condition-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.conditions-section .condition-card .condition-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  min-height: 50px;
}

.conditions-section .condition-card .card-footer-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.conditions-section .condition-card .card-footer-info .cat-tag {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 0;
  background: #ffffff;
}

.comparison-section .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .comparison-section .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-section .comparison-card {
  padding: 2.25rem;
  border-radius: 1.25rem;
}

.comparison-section .comparison-card.card-old {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.comparison-section .comparison-card.card-new {
  background: #f0f9ff;
  border: 1.5px solid #7dd3fc;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1);
}

.comparison-section .comparison-card .comp-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.comparison-section .comparison-card .comp-badge.badge-danger { background: #fee2e2; color: #dc2626; }
.comparison-section .comparison-card .comp-badge.badge-success { background: #e0f2fe; color: #0284c7; }

.comparison-section .comparison-card .comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-section .comparison-card .comp-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #334155;
}

.comparison-section .comparison-card .comp-list li i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.comparison-section .comparison-card .comp-list li .text-red {
  color: #dc2626;
}

/* ROI Calculator Section */
.roi-section {
  padding: 6rem 0;
  background: #ffffff;
}

.roi-section .roi-card {
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.roi-section .roi-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .roi-section .roi-split {
    grid-template-columns: 1fr;
  }
}

.roi-section .slider-group .slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.roi-section .slider-group .slider-header .slider-label {
  font-weight: 600;
  color: #0f172a;
}

.roi-section .slider-group .slider-header .slider-value {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0284c7;
}

.roi-section .slider-group .custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  accent-color: #0284c7;
  cursor: pointer;
}

.roi-section .roi-notes {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.roi-section .roi-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roi-section .roi-results .result-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.roi-section .roi-results .result-box.primary-result {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-color: #7dd3fc;
}

.roi-section .roi-results .result-box .res-title {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

.roi-section .roi-results .result-box .res-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0.25rem 0;
  color: #0f172a;
}

.roi-section .roi-results .result-box .res-sub {
  font-size: 0.8rem;
  color: #64748b;
}

.roi-section .roi-results .result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.features-section .feature-card {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.features-section .feature-card:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.12);
}

.features-section .feature-card .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.features-section .feature-card .feature-icon.bg-cyan { background: linear-gradient(135deg, #0284c7, #0369a1); }
.features-section .feature-card .feature-icon.bg-blue { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.features-section .feature-card .feature-icon.bg-emerald { background: linear-gradient(135deg, #059669, #047857); }
.features-section .feature-card .feature-icon.bg-purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.features-section .feature-card .feature-icon.bg-orange { background: linear-gradient(135deg, #ea580c, #c2410c); }
.features-section .feature-card .feature-icon.bg-pink { background: linear-gradient(135deg, #db2777, #be185d); }

.features-section .feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.features-section .feature-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: #ffffff;
}

.pricing-section .pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  color: #64748b;
}

.pricing-section .pricing-toggle span.active {
  color: #0f172a;
}

.pricing-section .pricing-toggle .discount-badge {
  font-size: 0.75rem;
  background: #d1fae5;
  color: #047857;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  margin-left: 0.25rem;
}

.pricing-section .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

.pricing-section .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 34px;
}

.pricing-section .pricing-toggle .switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.pricing-section .pricing-toggle .switch input:checked + .slider {
  background-color: #0284c7;
}

.pricing-section .pricing-toggle .switch input:checked + .slider:before {
  transform: translateX(24px);
}

.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-section .pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-section .pricing-card.plan-featured {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  border: 2px solid #0284c7;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
}

.pricing-section .pricing-card.plan-featured .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: 1rem;
  letter-spacing: 0.05em;
}

.pricing-section .pricing-card .plan-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.pricing-section .pricing-card .plan-desc {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  min-height: 42px;
}

.pricing-section .pricing-card .plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.pricing-section .pricing-card .plan-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #475569;
}

.pricing-section .pricing-card .plan-price .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
}

.pricing-section .pricing-card .plan-price .period {
  font-size: 0.9rem;
  color: #64748b;
}

.pricing-section .pricing-card .billing-note {
  font-size: 0.8rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.pricing-section .pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-section .pricing-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #334155;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.faq-section .faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-section .faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-section .faq-item .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-section .faq-item .faq-header .faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.faq-section .faq-item .faq-header i {
  font-size: 1.25rem;
  color: #0284c7;
  transition: transform 0.3s ease;
}

.faq-section .faq-item .faq-body {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  display: none;
}

.faq-section .faq-item.open .faq-body {
  display: block;
}

.faq-section .faq-item.open .faq-header i {
  transform: rotate(180deg);
}

/* CTA Banner */
.cta-banner-section {
  padding: 4rem 0 6rem;
  background: #ffffff;
}

.cta-banner-section .cta-banner-card {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: none;
  border-radius: 1.5rem;
}

.cta-banner-section .cta-banner-card .cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.cta-banner-section .cta-banner-card .cta-subtitle {
  font-size: 1.15rem;
  color: #e0f2fe;
  margin-top: 0.75rem;
}

.cta-banner-section .cta-banner-card .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.landing-footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 4rem 0 2rem;
  color: #94a3b8;
}

.landing-footer .footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .landing-footer .footer-top {
    grid-template-columns: 1fr;
  }
}

.landing-footer .footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.landing-footer .footer-brand .brand-logo .brand-logo-img {
  height: 38px;
  width: auto;
}

.landing-footer .footer-brand .footer-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  max-width: 320px;
  line-height: 1.6;
}

.landing-footer .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 576px) {
  .landing-footer .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

.landing-footer .footer-links-grid .footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landing-footer .footer-links-grid .footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.landing-footer .footer-links-grid .footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.landing-footer .footer-links-grid .footer-col a:hover {
  color: #38bdf8;
}

.landing-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
  color: #64748b;
}

.landing-footer .footer-bottom .social-icons {
  display: flex;
  gap: 1rem;
}

.landing-footer .footer-bottom .social-icons a {
  color: #94a3b8;
  font-size: 1.2rem;
}

.landing-footer .footer-bottom .social-icons a:hover {
  color: #38bdf8;
}

/* Keyframes */
@keyframes scanLaser {
  0% { top: 0; opacity: 0.8; }
  50% { top: 100%; opacity: 1; }
  100% { top: 0; opacity: 0.8; }
}

.scan-laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(2, 132, 199, 0) 0%, rgba(2, 132, 199, 1) 50%, rgba(2, 132, 199, 0) 100%);
  box-shadow: 0 0 15px #0284c7, 0 0 30px #0284c7;
  z-index: 10;
  animation: scanLaser 2s infinite ease-in-out;
  pointer-events: none;
}

.cursor-pointer { cursor: pointer !important; }

.btn-outline-cyan {
  background: #ffffff;
  border: 1.5px solid #0284c7;
  color: #0284c7 !important;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline-cyan:hover {
  background: #f0f9ff;
  border-color: #0369a1;
  color: #0369a1 !important;
}

.border-cyan { border: 1px solid #0284c7 !important; }
.border-emerald { border: 1px solid #10b981 !important; }
.border-red { border: 1px solid #ef4444 !important; }
.border-amber { border: 1px solid #f59e0b !important; }
.border-purple { border: 1px solid #a855f7 !important; }
.border-orange { border: 1px solid #f97316 !important; }
.border-pink { border: 1px solid #ec4899 !important; }
.border-blue { border: 1px solid #3b82f6 !important; }

.bg-cyan { background-color: #0284c7 !important; }
.bg-emerald { background-color: #10b981 !important; }
.bg-amber { background-color: #f59e0b !important; }
.bg-orange { background-color: #f97316 !important; }
.bg-pink { background-color: #ec4899 !important; }
.bg-purple { background-color: #a855f7 !important; }

.zoomed-crops-grid {
  background: #090d16;
  border-radius: 0.5rem;
}

