@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --omni-bg: #FCFBF9; /* Operio-like soft organic cream/white */
  --omni-card-bg: #FFFFFF;
  --omni-text: #3c4257; /* Rich dark gray for exceptional legibility */
  --omni-text-muted: #697386;
  --omni-navy: #0F1423; /* Deep, luxury corporate navy */
  --omni-border: rgba(15, 20, 35, 0.06); /* Nearly invisible, crisp thin borders */
  --omni-border-dark: rgba(15, 20, 35, 0.12);
  --omni-accent-orange: #f25c22; /* GSM tag and warm focus accent */
  --omni-accent-blue: #0284c7; /* Sky blue clean accent */
  --omni-shadow-sm: 0 1px 3px rgba(15, 20, 35, 0.02), 0 1px 2px rgba(15, 20, 35, 0.01);
  --omni-shadow-md: 0 10px 30px -5px rgba(15, 20, 35, 0.03), 0 4px 12px -2px rgba(15, 20, 35, 0.02);
  --omni-shadow-lg: 0 20px 40px -10px rgba(15, 20, 35, 0.04), 0 10px 18px -4px rgba(15, 20, 35, 0.02);
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', SFMono-Regular, Consolas, monospace;
}

body {
  font-family: var(--font-sans);
  background-color: var(--omni-bg);
  color: var(--omni-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Typography spacing */
h1, h2, h3, h4, h5, h6 {
  color: var(--omni-navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.text-navy {
  color: var(--omni-navy) !important;
}

.text-accent-orange {
  color: var(--omni-accent-orange) !important;
}

.text-accent-blue {
  color: var(--omni-accent-blue) !important;
}

.bg-accent-orange {
  background-color: var(--omni-accent-orange) !important;
}

.bg-accent-blue {
  background-color: var(--omni-accent-blue) !important;
}

/* Sticky Navbar Styling */
.omni-navbar {
  height: 76px;
  background-color: rgba(252, 251, 249, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1030;
}

.omni-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--omni-border);
  box-shadow: 0 4px 20px -10px rgba(15, 20, 35, 0.03);
}

.omni-brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--omni-navy);
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1;
}

.omni-brand-subtitle {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--omni-accent-orange);
  margin-top: 2px;
}

.nav-link-custom {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--omni-text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 99px;
  transition: all 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--omni-navy);
  background-color: rgba(15, 20, 35, 0.03);
}

.nav-link-custom.active {
  color: var(--omni-navy);
  font-weight: 600;
  background-color: rgba(15, 20, 35, 0.04);
}

/* Rounded Buttons */
.btn-rounded {
  border-radius: 99px !important;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}

.btn-rounded-lg {
  border-radius: 99px !important;
  font-weight: 600;
  padding: 14px 32px;
  font-size: 1.05rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}

.btn-omni-primary {
  background-color: var(--omni-navy);
  color: #FFFFFF !important;
  border: 1px solid var(--omni-navy);
  box-shadow: 0 4px 12px rgba(15, 20, 35, 0.08);
}

.btn-omni-primary:hover {
  background-color: #21283e;
  border-color: #21283e;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 20, 35, 0.12);
}

.btn-omni-secondary {
  background-color: transparent;
  color: var(--omni-navy) !important;
  border: 1px solid var(--omni-border-dark);
}

.btn-omni-secondary:hover {
  background-color: rgba(15, 20, 35, 0.03);
  transform: translateY(-1px);
}

.btn-omni-accent {
  background-color: var(--omni-accent-orange);
  color: #FFFFFF !important;
  border: 1px solid var(--omni-accent-orange);
  box-shadow: 0 4px 12px rgba(242, 92, 34, 0.15);
}

.btn-omni-accent:hover {
  background-color: #da4b15;
  border-color: #da4b15;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(242, 92, 34, 0.22);
}

/* Premium Card Design styles */
.omni-card {
  background-color: var(--omni-card-bg);
  border: 1px solid var(--omni-border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--omni-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.omni-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--omni-shadow-md);
  border-color: rgba(15, 20, 35, 0.1);
}

.omni-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(15, 20, 35, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--omni-navy);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.omni-card:hover .omni-card-icon {
  background-color: var(--omni-navy);
  color: #FFFFFF;
}

/* Dashboard Mockup Layout styling - Interactive high fidelity SVG-based and CSS-based */
.dashboard-mockup-wrapper {
  perspective: 1200px;
  transform-origin: center top;
}

.dashboard-mockup-wrapper.reveal-scale {
  opacity: 0;
  transform: scale(0.88) translateY(56px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.dashboard-mockup-wrapper.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.dashboard-mockup-wrapper.reveal-scale.is-visible .dashboard-mockup {
  box-shadow:
    0 40px 100px rgba(10, 14, 25, 0.12),
    0 16px 40px rgba(15, 20, 35, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-mockup-wrapper.reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.dashboard-mockup {
  background-color: #f8fafc; /* Beautiful soft light slate matching their screen */
  border-radius: 20px;
  border: 1px solid rgba(15, 20, 35, 0.08);
  box-shadow: 0 30px 80px rgba(10, 14, 25, 0.08), 0 0 40px rgba(15, 20, 35, 0.01);
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--omni-text);
  transition: box-shadow 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-header {
  height: 48px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 20, 35, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background-color: #ff5f56; }
.mockup-dot.yellow { background-color: #ffbd2e; }
.mockup-dot.green { background-color: #27c93f; }

.mockup-address {
  background-color: rgba(15, 20, 35, 0.03);
  border-radius: 6px;
  padding: 4px 40px;
  font-size: 0.72rem;
  color: #697386;
  font-family: var(--font-mono);
  border: 1px solid rgba(15, 20, 35, 0.04);
}

.mockup-body {
  height: 520px; /* Taller viewport to display their comprehensive dashboard elements */
  display: flex;
}

.mockup-sidebar {
  width: 215px;
  background-color: #ffffff;
  border-right: 1px solid rgba(15, 20, 35, 0.05);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-y: auto;
}

.mockup-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  margin-bottom: 16px;
}

.mockup-sidebar-logo {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0F1423;
  letter-spacing: -0.02em;
}

.mockup-quick-pos {
  background-color: var(--omni-accent-orange);
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(242, 92, 34, 0.15);
  transition: all 0.2s ease;
}

.mockup-quick-pos:hover {
  background-color: #da4b15;
  transform: translateY(-1px);
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  padding: 8px 10px;
  border-radius: 6px;
  color: #3c4257;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.mockup-nav-item i {
  font-size: 0.8rem;
}

.mockup-nav-item.active {
  background-color: #1e2640; /* Real dark-blue active state styling */
  color: #ffffff !important;
  font-weight: 600;
}

.mockup-nav-item:hover:not(.active):not(.mockup-quick-pos) {
  background-color: rgba(15, 20, 35, 0.03);
  color: #0F1423;
}

.mockup-content {
  flex: 1;
  background-color: #f8fafc;
  padding: 20px 24px;
  overflow-y: auto;
}

.mockup-stat-card {
  background-color: #ffffff;
  border: 1px solid rgba(15, 20, 35, 0.05);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(15, 20, 35, 0.01);
}

.mockup-stat-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.mockup-stat-icon-wrapper.orange {
  background-color: rgba(242, 92, 34, 0.06);
  color: var(--omni-accent-orange);
}

.mockup-stat-icon-wrapper.cyan {
  background-color: rgba(2, 132, 199, 0.07);
  color: var(--omni-accent-blue);
}

.mockup-stat-icon-wrapper.blue {
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.mockup-stat-icon-wrapper.green {
  background-color: rgba(22, 163, 74, 0.06);
  color: #16a34a;
}

.mockup-stat-icon-wrapper.purple {
  background-color: rgba(147, 51, 234, 0.06);
  color: #9333ea;
}

/* Three Large Colored Top Action Cards */
.mockup-action-panel {
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
  display: block;
}

.mockup-action-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 20, 35, 0.06);
}

.mockup-action-panel.slate {
  background-color: #4a5c78;
}

.mockup-action-panel.blue {
  background-color: #2563eb;
}

.mockup-action-panel.green {
  background-color: #16a34a;
}

.mockup-panel-icon {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1rem;
  color: #ffffff;
}

.mockup-panel-title {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.mockup-panel-subtitle {
  font-size: 0.62rem;
  opacity: 0.75;
}

/* Bottom white action cards */
.mockup-bottom-card {
  background-color: #ffffff;
  border: 1px solid rgba(15, 20, 35, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--omni-text);
  transition: all 0.2s ease;
}

.mockup-bottom-card:hover {
  background-color: rgba(15, 20, 35, 0.01);
  border-color: rgba(15, 20, 35, 0.08);
}

.mockup-bottom-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.mockup-bottom-icon.blue-bg {
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.mockup-bottom-icon.green-bg {
  background-color: rgba(22, 163, 74, 0.06);
  color: #16a34a;
}

.mockup-bottom-icon.orange-bg {
  background-color: rgba(242, 92, 34, 0.06);
  color: var(--omni-accent-orange);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(242, 92, 34, 0.05);
  border: 1px solid rgba(242, 92, 34, 0.15);
  color: var(--omni-accent-orange);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 99px;
  margin-bottom: 24px;
}

/* Feature Grid Card detailed styles */
.feature-badge-tag {
  background-color: rgba(2, 132, 199, 0.05);
  color: var(--omni-accent-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 12px;
}

/* Solutions page & parts details */
.solution-header-card {
  border-left: 3px solid var(--omni-accent-orange);
  padding-left: 20px;
}

/* Checklist Cards on Dark Section */
.check-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px 20px;
}

.check-card-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Premium CTA Section and Card */
.premium-cta-wrapper {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.premium-cta-card {
  background: #ffffff !important;
  color: #0f172a !important;
  border-radius: 32px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05), 0 10px 20px rgba(15, 23, 42, 0.02) !important;
  overflow: hidden;
  position: relative;
  padding: 80px 40px;
}

/* Subtle dark grid/dot background pattern for light theme */
.premium-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Additional decorative premium glow for light theme */
.premium-cta-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 180%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, rgba(2, 132, 199, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.premium-cta-content {
  position: relative;
  z-index: 2;
}

/* Ensure headings and body text on the card are forced to dark colors */
.premium-cta-card h2 {
  color: #0f172a !important;
}

.premium-cta-card p {
  color: #475569 !important;
}

.btn-omni-outline-white {
  background-color: transparent;
  color: #475569 !important;
  border: 1px solid #cbd5e1 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-omni-outline-white:hover {
  background-color: #f1f5f9 !important;
  border-color: #0f172a !important;
  color: #0f172a !important;
  transform: translateY(-1px);
}

.trust-badge-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569 !important;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge-item i {
  color: var(--omni-accent-orange);
  font-size: 1rem;
}

/* Premium Footer */
.premium-footer {
  background-color: #fafaf7 !important;
  color: #64748b !important;
  border-top: 1px solid #e2e8f0;
  padding-top: 60px;
  padding-bottom: 40px;
}

.premium-footer h5 {
  color: #0f172a !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.premium-footer-link {
  color: #64748b !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.premium-footer-link:hover {
  color: #f97316 !important;
  transform: translateX(4px); /* Gentle motion transition */
}

/* Make sure standard Bootstrap text-muted or paragraphs in the footer use slate-500 */
.premium-footer p, 
.premium-footer .text-muted {
  color: #64748b !important;
}

/* Light footer overrides to force all branding and structure elements to be legible on light background */
.premium-footer .omni-brand-title {
  color: #0f172a !important; /* Force slate-900 */
}

.premium-footer .omni-brand-subtitle {
  color: #64748b !important; /* Force slate-500 */
  letter-spacing: 0.12em !important;
}

.premium-footer .border-top {
  border-color: #e2e8f0 !important; /* Crisp light gray border for copyright row */
}

.premium-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background-color: transparent;
  color: #64748b !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.premium-social-link:hover {
  background-color: #f97316 !important;
  border-color: #f97316 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .premium-cta-card {
    padding: 50px 24px;
    border-radius: 24px !important;
  }
  .premium-footer {
    text-align: center;
  }
  .premium-footer h5 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .premium-footer-link:hover {
    transform: none; /* Avoid horizontal shift on mobile text alignment center */
  }
}

/* Blog Styling */
.blog-card {
  background: var(--omni-card-bg);
  border: 1px solid var(--omni-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--omni-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--omni-shadow-md);
  border-color: rgba(15, 20, 35, 0.1);
}

.blog-card-img-wrapper {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0F1423 0%, #1c2642 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--omni-text-muted);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--omni-navy);
}

.blog-card-desc {
  font-size: 0.9rem;
  color: var(--omni-text-muted);
  flex-grow: 1;
}

/* Pricing cards style */
.pricing-card {
  position: relative;
  background-color: var(--omni-card-bg);
  border: 1px solid var(--omni-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--omni-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--omni-accent-orange);
  box-shadow: var(--omni-shadow-lg);
}

.pricing-card.featured::before {
  content: "EN ÇOK TERCİH EDİLEN";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--omni-accent-orange);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(242, 92, 34, 0.2);
}

.pricing-price {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--omni-navy);
  margin: 12px 0;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px 0;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.88rem;
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
}

.pricing-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #27c93f;
  font-weight: 800;
  font-size: 1.1rem;
}

.pricing-features-list li.disabled {
  color: #adb5bd;
}

.pricing-features-list li.disabled::before {
  content: "✕";
  color: #dee2e6;
}

/* Forms layout details */
.omni-form-wrapper {
  background-color: #FFFFFF;
  border: 1px solid var(--omni-border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--omni-shadow-md);
}

.omni-form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--omni-navy);
  margin-bottom: 8px;
}

.form-control-custom {
  background-color: #fcfbfa;
  border: 1px solid rgba(15, 20, 35, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--omni-navy);
  transition: all 0.2s ease;
}

.form-control-custom:focus {
  background-color: #FFFFFF;
  border-color: var(--omni-accent-orange);
  outline: none;
  box-shadow: 0 0 0 4px rgba(242, 92, 34, 0.08);
}

.form-check-label-custom {
  font-size: 0.85rem;
  color: var(--omni-text-muted);
}

/* Gradient background accents on main page */
.radial-glow-accent {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(242, 92, 34, 0.02) 0%, rgba(2, 132, 199, 0.01) 50%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Custom Spacing */
.py-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  .py-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* Legal document pages */
.legal-document {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.legal-document h1 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.legal-document h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}

.legal-document h3 {
  font-size: 1.02rem;
  margin-top: 1.35rem;
  margin-bottom: 0.65rem;
}

.legal-document p {
  margin-bottom: 0.9rem;
  line-height: 1.7;
  color: var(--omni-text);
  font-size: 0.98rem;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-document li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
  color: var(--omni-text);
  font-size: 0.98rem;
}

.legal-document .legal-field {
  margin-bottom: 0.55rem;
  line-height: 1.65;
  font-size: 0.98rem;
  color: var(--omni-text);
}

.legal-document .legal-field-label {
  font-weight: 600;
  color: var(--omni-navy);
}
