/* ==========================================================================
   LAND MOTIVES LLC - Clone Design CSS Blueprint
   Theme: Glassmorphic Light/Dark Mode (Mars Customer Success Inspired)
   ========================================================================== */

:root {
  --brand: #0b2c19;
  --brand-glow: rgba(11, 44, 25, 0.25);
  --brand-blue: #cf8c17; /* For charts if needed */

  /* Light Mode */
  --bg-main: #f8fafc;
  --text-main: #0c2612;
  --text-muted: #475569;

  --nav-bg: rgba(255, 255, 255, 0.34);
  --nav-border: rgba(255, 255, 255, 0.6);
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.05);

  --font-sans: "Outfit", "Manrope", system-ui, -apple-system, sans-serif;
}

.dark {
  --bg-main: #051208;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --nav-bg: rgba(12, 38, 18, 0.4);
  --nav-border: rgba(255, 255, 255, 0.1);
  --card-bg: #091a0c;
  --card-border: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  transition:
    background-color 0.3s,
    color 0.3s;
}

a {
  text-decoration: none;
  color: inherit;
}

.container-premium {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Floating Navbar */
.header-nav {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 1rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--nav-border);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  box-shadow: 0 12px 36px rgba(12, 38, 18, 0.07);
}

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

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  border-radius: 9999px;
  transition: 0.2s;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-main);
}
.dark .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--nav-border);
  background: var(--nav-bg);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.btn-book {
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 9999px;
  background: #0c2612;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}
.dark .btn-book {
  background: #fff;
  color: #0c2612;
}
.btn-book:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
}

.badge-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(11, 44, 25, 0.1);
  color: var(--brand);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.dark .badge-primary {
  background: rgba(241, 176, 28, 0.1);
  color: var(--brand-blue);
}

.hero-main-logo {
  display: block;
  margin: 0 auto 0.5rem;
  height: 60px;
  width: auto;
}

.hero-brand-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--text-main);
}

.hero-brand-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.feature-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pill {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-primary {
  background: #0c2612;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand);
}

.dark .btn-primary {
  background: var(--brand-blue);
  color: #051208;
}

.dark .btn-primary:hover {
  background: #e3a315;
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
}
.dark .btn-secondary {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.dark .btn-secondary:hover {
  background: rgba(241, 176, 28, 0.1);
}

/* Connect line */
.hero-connect-line {
  width: 2px;
  height: 40px;
  background: rgba(12, 38, 18, 0.1);
  margin: 0 auto;
}
.dark .hero-connect-line {
  background: rgba(255, 255, 255, 0.1);
}
.hero-connect-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(12, 38, 18, 0.1);
  margin: 0 auto;
  margin-bottom: 2rem;
}
.dark .hero-connect-circle {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Dashboard Preview Card */
.dashboard-preview {
  max-width: 1100px;
  margin: 0 auto;
  background: #0a1e0e; /* Outer shell color */
  border-radius: 34px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 32px 100px rgba(12, 38, 18, 0.18);
  position: relative;
}

.dashboard-inner {
  background: #0c2612;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  border-radius: 28px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Dashboard Top Bar */
.dash-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.window-dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-r {
  background: #ff5f57;
}
.dot-y {
  background: #febc2e;
}
.dot-g {
  background: #28c840;
}

.dash-title {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
}

.dash-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}
.dash-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
}

/* Left side elements */
.dash-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.dash-card-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.reach-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.reach-number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.reach-badge {
  background: rgba(11, 44, 25, 0.2);
  color: var(--brand);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
}
.reach-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}
.reach-bar-inner {
  height: 100%;
  width: 92%;
  background: var(--brand-blue);
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.small-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem;
}
.small-stat-value {
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
}
.small-stat-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Right side elements */
.perf-title-area {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.perf-title-area h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
}
.chart-icon-btn {
  width: 36px;
  height: 36px;
  background: var(--brand-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.perf-body {
  display: flex;
  gap: 1.5rem;
}

.chart-area {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 120px;
  margin-top: auto;
}
.c-bar {
  flex: 1;
  background: var(--brand-blue);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}
.c-bar.active {
  background: #f1b01c;
}

.list-area {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.list-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.list-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.list-text {
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.list-num {
  font-size: 12px;
  font-weight: 900;
  color: white;
}

/* General Sections */
.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--brand);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(241, 176, 28, 0.1);
  color: var(--brand-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.dark .service-icon {
  color: var(--brand-blue);
  background: rgba(241, 176, 28, 0.1);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
}

.process-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
  opacity: 0.5;
}

.dark .process-number {
  color: var(--brand-blue);
  opacity: 0.5;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  margin: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Stats Showcase Section */
.stats-showcase-section {
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark .stats-showcase-section {
  background: #051208;
  border-color: rgba(255, 255, 255, 0.05);
}

.huge-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.huge-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.huge-stat-number {
  font-size: 5.5rem;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
}
.dark .huge-stat-number {
  color: #334155;
}
.huge-stat-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}
.huge-stat-bar {
  width: 40px;
  height: 4px;
  background: #f1b01c;
  border-radius: 4px;
}

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

/* Problems Section (Interactive Tabs) */
.problems-section {
  background: #f8fafc;
}
.dark .problems-section {
  background: #051208;
}

.problems-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  text-align: left;
}

/* Sidebar */
.problems-sidebar {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.dark .problems-sidebar {
  background: #091a0c;
  border-color: rgba(255, 255, 255, 0.05);
}
.sidebar-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.problem-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}
.problem-tab:hover {
  background: #f1f5f9;
}
.dark .problem-tab:hover {
  background: rgba(255, 255, 255, 0.03);
}

.problem-tab.active {
  background: white;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.dark .problem-tab.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 14px;
  transition: 0.3s;
}
.dark .tab-icon {
  background: rgba(255, 255, 255, 0.1);
}

.problem-tab.active .tab-icon {
  background: #cf8c17;
  color: white;
}

.tab-text {
  flex: 1;
}
.tab-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}
.tab-subtitle {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tab-arrow {
  color: #cbd5e1;
  font-size: 12px;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
}
.problem-tab.active .tab-arrow {
  color: #cf8c17;
  opacity: 1;
  transform: translateX(0);
}

/* Content Area */
.problems-content-area {
  background: white;
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.dark .problems-content-area {
  background: #091a0c;
  border-color: rgba(255, 255, 255, 0.05);
}

.problem-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}
.problem-pane.active {
  display: block;
}

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

.pane-bg-number {
  position: absolute;
  top: -4rem;
  right: 2rem;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
}
.dark .pane-bg-number {
  color: rgba(255, 255, 255, 0.02);
}

.pane-icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #cf8c17;
  margin-bottom: 2rem;
}
.dark .pane-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.pane-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pane-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 3rem;
  letter-spacing: -0.03em;
}

.pane-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pane-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.dark .pane-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.pane-card-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pane-card-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .problems-layout {
    grid-template-columns: 1fr;
  }
  .pane-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Value Section (Orbit UI) */
.value-section {
  background: #f8fafc;
  background-image:
    radial-gradient(
      circle at 100% 0%,
      rgba(241, 176, 28, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(241, 176, 28, 0.05) 0%,
      transparent 30%
    );
  background-size:
    100% 100%,
    100% 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.dark .value-section {
  background: #051208;
  background-image:
    radial-gradient(
      circle at 100% 0%,
      rgba(241, 176, 28, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(241, 176, 28, 0.1) 0%,
      transparent 30%
    );
  border-color: rgba(255, 255, 255, 0.05);
}

.value-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}
.dark .value-list-item {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

/* Orbit Visual */
.value-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.core-planet {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1b01c, #cf8c17);
  box-shadow:
    0 0 60px rgba(241, 176, 28, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 10;
  text-align: center;
  padding: 2rem;
}

.core-text-small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.core-text-huge {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0.5rem 0;
  letter-spacing: -0.05em;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}
.dark .orbit-ring {
  border-color: rgba(255, 255, 255, 0.15);
}

.ring-1 {
  width: 380px;
  height: 380px;
  animation-duration: 40s;
}
.ring-2 {
  width: 460px;
  height: 460px;
  animation-direction: reverse;
  animation-duration: 50s;
}

.orbit-badge {
  position: absolute;
  background: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 20;
}
.dark .orbit-badge {
  background: #0c2612;
  border-color: rgba(255, 255, 255, 0.1);
}

.badge-reach {
  top: 10%;
  right: 5%;
}
.badge-growth {
  bottom: 20%;
  right: -5%;
}
.badge-retention {
  bottom: 15%;
  left: 0%;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 992px) {
  .value-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .value-visual {
    height: 400px;
    margin-top: 2rem;
  }
}

/* Operations Showcase Section */
.ops-showcase-section {
  background: #f8fafc;
  background-image:
    radial-gradient(
      circle at 50% 0%,
      rgba(241, 176, 28, 0.06) 0%,
      transparent 50%
    );
  background-size:
    100% 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark .ops-showcase-section {
  background: #051208;
  background-image:
    radial-gradient(
      circle at 50% 0%,
      rgba(241, 176, 28, 0.12) 0%,
      transparent 50%
    );
  border-color: rgba(255, 255, 255, 0.05);
}

.ops-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ops-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: white;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.dark .ops-tab {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}
.ops-tab:hover {
  border-color: #cf8c17;
  color: #cf8c17;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(241, 176, 28, 0.1);
}
.ops-tab.active {
  background: #cf8c17;
  color: white;
  border-color: #cf8c17;
  box-shadow: 0 4px 16px rgba(241, 176, 28, 0.3);
}

.ops-showcase-card {
  background: white;
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.dark .ops-showcase-card {
  background: #091a0c;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.ops-pane {
  display: none;
  animation: opsSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ops-pane.active {
  display: block;
}

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

.ops-pane-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ops-image-frame {
  background: #0c2612;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.ops-frame-dots {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}
.ops-frame-title {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}
.ops-image-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.ops-pane-content {
  padding: 0.5rem 0;
}
.ops-content-icon {
  width: 48px;
  height: 48px;
  background: rgba(241, 176, 28, 0.08);
  border: 1px solid rgba(241, 176, 28, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #cf8c17;
  margin-bottom: 1.25rem;
}
.dark .ops-content-icon {
  background: rgba(241, 176, 28, 0.15);
  border-color: rgba(241, 176, 28, 0.25);
}
.ops-content-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.ops-content-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.ops-content-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ops-content-stats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ops-stat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  transition: 0.3s;
}
.ops-stat-item:hover {
  border-color: rgba(241, 176, 28, 0.2);
  background: rgba(241, 176, 28, 0.02);
  transform: translateX(4px);
}
.dark .ops-stat-item:hover {
  background: rgba(241, 176, 28, 0.05);
}
.ops-stat-item i {
  color: #cf8c17;
  font-size: 15px;
  flex-shrink: 0;
}

.ops-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.ops-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dark .ops-dot {
  background: rgba(255, 255, 255, 0.12);
}
.ops-dot.active {
  width: 28px;
  background: #cf8c17;
}

@media (max-width: 992px) {
  .ops-pane-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ops-tabs {
    gap: 0.35rem;
  }
  .ops-tab {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 576px) {
  .ops-showcase-card {
    padding: 1.5rem;
    border-radius: 24px;
  }
  .ops-tab i {
    display: none;
  }
  .ops-content-title {
    font-size: 1.5rem;
  }
}

/* Scroll Reveal Animations Classes */
.animate-up,
.animate-left,
.animate-right {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  background: #061509;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5rem;
}

@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .perf-body {
    flex-direction: column;
  }
  .list-area {
    width: 100%;
  }
  .services-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-brand-title {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none;
  }
}

/* ==========================================================================
   Detailed Process Section (process.html)
   ========================================================================== */
.process-detailed-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-detailed-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.process-detailed-step:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(241, 176, 28, 0.3);
}

.dark .process-detailed-step:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-detailed-step.pds-reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.process-detailed-step.pds-reverse > * {
  direction: ltr;
}

.pds-number {
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-size: 5rem;
  font-weight: 900;
  color: var(--bg-main);
  text-shadow:
    -1px -1px 0 var(--brand-blue),
    1px -1px 0 var(--brand-blue),
    -1px 1px 0 var(--brand-blue),
    1px 1px 0 var(--brand-blue);
  line-height: 1;
  z-index: 10;
}
.dark .pds-number {
  color: var(--card-bg);
}

.process-detailed-step.pds-reverse .pds-number {
  left: auto;
  right: 2rem;
}

.pds-content h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.pds-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.pds-list li {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.pds-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  background: rgba(241, 176, 28, 0.05);
  border-radius: 20px;
  border: 1px dashed rgba(241, 176, 28, 0.3);
}

.pds-visual .icon-box {
  width: 120px;
  height: 120px;
  background: var(--brand-blue);
  color: #051208;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  box-shadow: 0 10px 30px rgba(241, 176, 28, 0.2);
}

@media (max-width: 900px) {
  .process-detailed-step,
  .process-detailed-step.pds-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
    padding: 2rem;
  }
  .pds-number,
  .process-detailed-step.pds-reverse .pds-number {
    left: 1rem;
    right: auto;
    top: -1.5rem;
    font-size: 4rem;
  }
  .pds-visual {
    padding: 2rem;
  }
  .pds-visual .icon-box {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Services Page Unique UI
   ========================================================================== */

/* Animated Stats Counter Bar */
.svc-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.svc-stat-item {
  text-align: center;
  flex: 1;
}
.svc-stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #f1b01c; /* Gold */
  line-height: 1;
  margin-bottom: 0.5rem;
}
.svc-stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.svc-stat-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .svc-stats-bar {
    flex-direction: column;
    gap: 2rem;
  }
  .svc-stat-divider {
    width: 100px;
    height: 2px;
  }
}

/* Bento Grid Services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1.5rem;
}
.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
html.dark .bento-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.bento-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #0c2612, #1a4a28);
  color: white;
}
.bento-featured p {
  color: rgba(255, 255, 255, 0.8);
}
.bento-wide {
  grid-column: span 2;
}
.bento-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(11, 44, 25, 0.1);
  color: #0b2c19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
html.dark .bento-icon-wrap {
  background: rgba(207, 140, 23, 0.1);
  color: #cf8c17;
}
.bento-featured .bento-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  color: #f1b01c;
}
.bento-icon-gold {
  color: #cf8c17;
  background: rgba(207, 140, 23, 0.1);
}
.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.bento-card.bento-featured p {
  color: rgba(255, 255, 255, 0.8);
}
.bento-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}
.bento-tag {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: rgba(241, 176, 28, 0.2);
  color: #f1b01c;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-featured,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Property Types - Accordion Style */
.svc-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-accordion-item {
  background: var(--bg-main);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.svc-accordion-item:hover {
  border-color: rgba(11, 44, 25, 0.3);
  transform: translateX(10px);
}
html.dark .svc-accordion-item:hover {
  border-color: rgba(207, 140, 23, 0.5);
}
.svc-acc-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(11, 44, 25, 0.1),
    rgba(11, 44, 25, 0.05)
  );
  color: #0b2c19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
html.dark .svc-acc-icon {
  background: linear-gradient(
    135deg,
    rgba(207, 140, 23, 0.1),
    rgba(207, 140, 23, 0.05)
  );
  color: #cf8c17;
}
.svc-acc-body h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.svc-acc-body p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* How We're Different - Horizontal Comparison */
.comparison-table {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
html.dark .comparison-table {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.comp-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: linear-gradient(135deg, #0c2612, #1a4a28);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--card-border);
  transition: background 0.3s ease;
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-row:hover {
  background: rgba(11, 44, 25, 0.02);
}
html.dark .comp-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.comp-feature,
.comp-us,
.comp-them {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
}
.comp-feature {
  font-weight: 700;
  color: var(--text-color);
}
.comp-us {
  background: rgba(11, 44, 25, 0.05);
  font-weight: 700;
  color: #0b2c19;
}
html.dark .comp-us {
  background: rgba(207, 140, 23, 0.1);
  color: #cf8c17;
}
.comp-them {
  color: var(--text-muted);
}
.comp-check {
  color: #28c840; /* Green check */
  margin-right: 0.75rem;
  font-size: 1.2rem;
}
.comp-x {
  color: #ff3b30; /* Red x */
  margin-right: 0.75rem;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .comp-header {
    display: none;
  }
  .comp-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "feature feature"
      "us them";
    text-align: center;
  }
  .comp-feature {
    grid-area: feature;
    justify-content: center;
    background: rgba(11, 44, 25, 0.05);
    border-bottom: 1px dashed var(--card-border);
  }
  html.dark .comp-feature {
    background: rgba(255, 255, 255, 0.02);
  }
  .comp-us {
    grid-area: us;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px dashed var(--card-border);
  }
  .comp-them {
    grid-area: them;
    flex-direction: column;
    gap: 0.5rem;
  }
  .comp-us::before {
    content: "Land Motives";
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 800;
  }
  .comp-them::before {
    content: "Traditional";
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 800;
  }
}

.comp-header .comp-us,
.comp-header .comp-them {
  color: white !important;
  background: transparent !important;
}
html.dark .comp-header .comp-us,
html.dark .comp-header .comp-them {
  color: white !important;
  background: transparent !important;
}

/* Accordion Interactive Styles */
.svc-accordion-item {
  cursor: pointer;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 0;
}
.svc-acc-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.svc-acc-header h4 {
  margin-bottom: 0;
  flex-grow: 1;
}
.acc-arrow {
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.svc-accordion-item.active .acc-arrow {
  transform: rotate(180deg);
}
.svc-acc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
  padding-left: calc(50px + 1.5rem); /* align with text */
}
.svc-accordion-item.active .svc-acc-body {
  max-height: 500px;
  margin-top: 1rem;
  opacity: 1;
}

/* Premium Form Styles */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-color);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--bg-main);
  color: var(--text-color);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 44, 25, 0.1);
}
html.dark .form-group input:focus,
html.dark .form-group select:focus,
html.dark .form-group textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(241, 176, 28, 0.2);
}
.form-divider {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 1rem 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
  text-align: left;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-hero-title {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 900;
  margin-top: 1rem;
}
.contact-section-title {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .svc-accordion-item {
    padding: 1.25rem 1rem;
  }
  .svc-acc-header {
    gap: 1rem;
  }
  .svc-acc-header h4 {
    font-size: 1.1rem;
  }
  .svc-acc-body {
    padding-left: calc(50px + 1rem); /* match icon width + gap */
  }
}

/* --- Unified Header & Mobile Menu Styles --- */

/* Brand Text next to Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-brand-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-color);
  letter-spacing: -0.5px;
}
html.dark .nav-brand-text {
  color: white;
}

/* Desktop Dropdown for Policies */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.dropdown-menu a:hover {
  background: rgba(11, 44, 25, 0.05);
  color: var(--brand);
}
html.dark .dropdown-menu a:hover {
  background: rgba(241, 176, 28, 0.1);
  color: var(--brand-blue);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
html.dark .mobile-menu-btn {
  color: white !important;
}

/* Mobile Theme Button inside menu */
.mobile-theme-btn {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
html.dark .mobile-theme-btn {
  color: white;
}

/* Mobile Menu Overlay (Dropdown Style) */
.mobile-menu-overlay {
  position: absolute;
  top: 75px; /* height of header */
  left: 0;
  width: 100%;
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.active {
  max-height: calc(100vh - 75px);
  padding: 2rem;
  visibility: visible;
  opacity: 1;
  overflow-y: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease,
    opacity 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu-overlay.active .mobile-nav-links a {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger animation for first group */
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(1) a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(1) a:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(1) a:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(1) a:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(1) a:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(1) a:nth-child(6) {
  transition-delay: 0.35s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(1) a:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-policies-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  color: var(--text-muted);
  margin: 2.5rem 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-policies-heading {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.45s;
}

/* Style and Stagger for policies group */
.mobile-nav-links:nth-of-type(2) a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(2) a:nth-child(1) {
  transition-delay: 0.5s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(2) a:nth-child(2) {
  transition-delay: 0.55s;
}
.mobile-menu-overlay.active .mobile-nav-links:nth-of-type(2) a:nth-child(3) {
  transition-delay: 0.6s;
}

.mobile-nav-links a:hover {
  color: var(--brand-blue);
  transform: translateX(10px) !important;
}

.mobile-call-btn-wrapper {
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }
  .header-nav .btn-book {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Animated Hamburger Icon */
.hamburger-lines {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  background: transparent;
}
.hamburger-lines .line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: #051208;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
html.dark .hamburger-lines .line {
  background: #ffffff !important;
}
.mobile-menu-btn.active .hamburger-lines .line1 {
  transform: translateY(9.5px) rotate(45deg);
}
.mobile-menu-btn.active .hamburger-lines .line2 {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-lines .line3 {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Responsiveness Overrides
   ========================================================================== */

/* Tablet & Mobile Breakpoint (768px and down) */
@media (max-width: 768px) {
  /* Section Sizing & Spacing */
  .section-padding {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Inline 3.5rem headings overrides */
  h2[style*="font-size: 3.5rem"],
  h2[style*="font-size:3.5rem"],
  .stats-showcase-section h2,
  .problems-section h2,
  .value-section h2,
  .ops-showcase-section h2,
  section[style*="background: linear-gradient"] h2 {
    font-size: 2.25rem !important;
  }

  /* Hero section adjustments */
  .hero {
    padding: 8rem 0 3.5rem;
  }
  .hero-brand-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  /* Dashboard preview adjustments */
  .dashboard-preview {
    padding: 0.75rem;
    border-radius: 20px;
  }
  .dashboard-inner {
    padding: 1.25rem;
    border-radius: 16px;
  }
  .reach-number {
    font-size: 2.2rem;
  }

  /* Huge stats (Growth Section) */
  .huge-stat-number {
    font-size: 3.5rem;
  }
  .huge-stat-label {
    font-size: 1rem;
  }

  /* Problems section adjustments */
  .problems-content-area {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .pane-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .pane-card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  .pane-bg-number {
    font-size: 8rem;
    top: -2rem;
    right: 1rem;
  }

  /* Value section (Orbit UI) */
  .orbit-container {
    width: 300px;
    height: 300px;
  }
  .core-planet {
    width: 190px;
    height: 190px;
    padding: 1rem;
  }
  .core-text-huge {
    font-size: 2.2rem;
  }
  .ring-1 {
    width: 280px;
    height: 280px;
  }
  .ring-2 {
    width: 340px;
    height: 340px;
  }
  .orbit-badge {
    padding: 0.35rem 0.85rem;
    font-size: 9px;
  }
  .badge-reach {
    top: 5%;
    right: 5%;
  }
  .badge-growth {
    bottom: 15%;
    right: -5%;
  }
  .badge-retention {
    bottom: 10%;
    left: -5%;
  }

  /* Services & Process grids padding */
  .service-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .process-step {
    padding: 1.25rem;
    border-radius: 20px;
  }

  /* CTA Section padding */
  section[style*="background: linear-gradient(135deg, #0C2612"] {
    padding: 3.5rem 1rem !important;
  }

  /* About Page Overrides */
  .about-hero {
    padding: 8rem 0 3.5rem !important;
  }
  .about-story,
  .about-team,
  .about-values,
  .why-us-section,
  .about-timeline {
    padding: 4rem 0 !important;
  }
  .about-cta {
    padding: 4rem 1.5rem !important;
  }
  .about-story-grid,
  .about-team-grid {
    gap: 2.5rem !important;
  }
  .values-grid {
    margin-top: 2rem !important;
    gap: 1.25rem !important;
  }
  .why-us-grid {
    margin-top: 2rem !important;
    gap: 1.25rem !important;
  }
  .why-us-card {
    padding: 1.75rem 1.25rem !important;
  }
  .why-us-card.featured {
    gap: 1.25rem !important;
  }
  .timeline-track {
    margin-top: 2rem !important;
  }
  .timeline-item {
    gap: 1.25rem !important;
    margin-bottom: 2rem !important;
  }
  .tl-content {
    padding: 1.25rem 1.15rem !important;
    border-radius: 16px !important;
  }

  /* Process Page Overrides */
  .hero-brand-title[style*="font-size: 3.5rem"] {
    font-size: 2.8rem !important;
  }
  #detailed-process,
  section[style*="border-top: 1px solid var(--card-border)"] {
    padding: 4rem 1.5rem !important;
  }
  section[style*="border-top: 1px solid var(--card-border)"] h2 {
    font-size: 2.25rem !important;
  }
  section[style*="border-top: 1px solid var(--card-border)"]
    div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Services Page Overrides */
  .bento-card {
    padding: 1.5rem !important;
    border-radius: 16px !important;
  }
  .bento-tag {
    top: 1.5rem !important;
    right: 1.5rem !important;
    font-size: 0.7rem !important;
    padding: 0.2rem 0.6rem !important;
  }
  section[style*="padding: 8rem 2rem"] {
    padding: 4rem 1.5rem !important;
  }
  section[style*="padding: 8rem 2rem"] h2 {
    font-size: 2.25rem !important;
  }
  section[style*="background: var(--card-bg)"]
    > .container-premium
    > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  section[style*="background: var(--card-bg)"] div[style*="position: sticky"] {
    position: static !important;
  }
  .comp-feature,
  .comp-us,
  .comp-them {
    padding: 1rem 0.75rem !important;
  }

  /* Markets Page Overrides */
  .markets-hero {
    padding: 8rem 0 3.5rem !important;
  }
  .state-showcase,
  .prop-types-section,
  .jv-section,
  .off-market-section {
    padding: 4rem 0 !important;
  }
  .markets-cta {
    padding: 4rem 1.5rem !important;
  }
  .state-showcase-inner {
    gap: 2rem !important;
  }

  /* FAQs Page Overrides */
  .bento-card[style*="padding: 3rem 2rem"] {
    padding: 2rem 1.25rem !important;
  }

  /* Contact Page Overrides */
  .hero[style*="padding-bottom: 8rem"] {
    padding-bottom: 4rem !important;
  }
  div[style*="padding: 3rem"][style*="border-radius: 20px"][style*="border: 1px solid var(--card-border)"] {
    padding: 2rem 1.5rem !important;
  }
  div[style*="padding: 3.5rem"][style*="border-radius: 20px"][style*="border: 1px solid var(--card-border)"] {
    padding: 2rem 1.5rem !important;
  }
  div[style*="padding: 2.5rem"][style*="border-radius: 20px"][style*="linear-gradient"] {
    padding: 2rem 1.5rem !important;
  }
  div[style*="margin-top: 5rem"] iframe {
    height: 300px !important;
  }
  div[style*="margin-top: 5rem"] {
    margin-top: 3rem !important;
  }

  /* Policy Pages Overrides (Privacy, Terms, Refund) */
  main[style*="padding-top: 10rem"] {
    padding-top: 7rem !important;
    padding-bottom: 3rem !important;
  }
  main[style*="padding-top: 10rem"] h1[style*="font-size: 3rem"] {
    font-size: 2.25rem !important;
  }
  .dashboard-inner[style*="padding: 3rem"] {
    padding: 2rem 1.5rem !important;
  }

  /* 404 Page Overrides */
  main[style*="padding: 15rem 0 10rem"] {
    padding: 8rem 1rem 5rem !important;
  }
  main[style*="padding: 15rem 0 10rem"] h1[style*="font-size: 8rem"] {
    font-size: 5rem !important;
  }

  /* Header/Footer Overrides */
  .footer-grid[style*="gap: 3rem"] {
    gap: 2rem !important;
  }
}

/* Mobile Small Breakpoint (480px and down) */
@media (max-width: 480px) {
  .section-padding {
    padding: 2.5rem 0;
  }

  /* Inline 3.5rem headings overrides */
  h2[style*="font-size: 3.5rem"],
  h2[style*="font-size:3.5rem"],
  .stats-showcase-section h2,
  .problems-section h2,
  .value-section h2,
  .ops-showcase-section h2,
  section[style*="background: linear-gradient"] h2 {
    font-size: 1.8rem !important;
  }

  /* Hero */
  .hero-brand-title {
    font-size: 2.2rem;
  }
  .hero-brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
  }

  /* Dashboard inner stats grid */
  .dash-stats-grid {
    gap: 0.75rem;
  }
  .small-stat-card {
    padding: 0.75rem;
  }
  .small-stat-value {
    font-size: 1rem;
  }

  /* Huge stats (Growth Section) */
  .huge-stat-number {
    font-size: 3rem;
  }

  /* Problems content */
  .problems-content-area {
    padding: 1.25rem 1rem;
  }
  .pane-title {
    font-size: 1.5rem;
  }
  .pane-bg-number {
    font-size: 6rem;
  }

  /* Value section (Orbit UI) */
  .orbit-container {
    width: 260px;
    height: 260px;
  }
  .core-planet {
    width: 160px;
    height: 160px;
  }
  .core-text-huge {
    font-size: 1.8rem;
  }
  .ring-1 {
    width: 240px;
    height: 240px;
  }
  .ring-2 {
    width: 290px;
    height: 290px;
  }

  /* Operations */
  .ops-image-frame img {
    height: 200px;
  }

  /* About Page Small Mobile Overrides */
  .about-story,
  .about-team,
  .about-values,
  .why-us-section,
  .about-timeline {
    padding: 3rem 0 !important;
  }
  .about-cta {
    padding: 3rem 1rem !important;
  }
  .about-story-img-wrap {
    border-radius: 20px !important;
  }

  /* Process Page Small Mobile Overrides */
  .hero-brand-title[style*="font-size: 3.5rem"] {
    font-size: 2.2rem !important;
  }
  #detailed-process,
  section[style*="border-top: 1px solid var(--card-border)"] {
    padding: 3rem 1rem !important;
  }
  #detailed-process h2,
  section[style*="border-top: 1px solid var(--card-border)"] h2 {
    font-size: 1.8rem !important;
  }

  /* Services Page Small Mobile Overrides */
  section[style*="padding: 8rem 2rem"] {
    padding: 3rem 1rem !important;
  }
  section[style*="padding: 8rem 2rem"] h2 {
    font-size: 1.8rem !important;
  }

  /* Markets Page Small Mobile Overrides */
  .state-showcase,
  .prop-types-section,
  .jv-section,
  .off-market-section {
    padding: 3rem 0 !important;
  }
  .markets-cta {
    padding: 3rem 1rem !important;
  }
  .prop-types-grid {
    grid-template-columns: 1fr !important;
  }
  .prop-type-card {
    padding: 1.5rem 1rem !important;
  }
  .state-highlight-item {
    padding: 0.85rem !important;
  }
  .jv-nodes-grid {
    gap: 0.75rem !important;
  }
  .jv-node {
    padding: 1rem !important;
  }
  .om-card {
    padding: 1.75rem 1.25rem !important;
  }

  /* FAQs Page Small Mobile Overrides */
  section[style*="padding: clamp(3rem, 6vw, 6rem) 2rem"] {
    padding: 2.5rem 1rem !important;
  }
  .bento-card[style*="padding: 3rem 2rem"] {
    padding: 1.5rem 1rem !important;
  }
  section[style*="padding: clamp(3rem, 6vw, 6rem) 2rem"]
    div[style*="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact Page Small Mobile Overrides */
  .hero[style*="padding-bottom: 8rem"] {
    padding-bottom: 3rem !important;
  }
  div[style*="padding: 3rem"][style*="border-radius: 20px"][style*="border: 1px solid var(--card-border)"] {
    padding: 1.5rem 1rem !important;
  }
  div[style*="padding: 3.5rem"][style*="border-radius: 20px"][style*="border: 1px solid var(--card-border)"] {
    padding: 1.5rem 1rem !important;
  }
  div[style*="padding: 2.5rem"][style*="border-radius: 20px"][style*="linear-gradient"] {
    padding: 1.5rem 1rem !important;
  }
  div[style*="margin-top: 5rem"] iframe {
    height: 250px !important;
  }
  div[style*="margin-top: 5rem"] {
    margin-top: 2rem !important;
  }
  .contact-hero-title {
    font-size: 2rem !important;
  }

  /* Policy Pages Small Mobile Overrides (Privacy, Terms, Refund) */
  main[style*="padding-top: 10rem"] {
    padding-top: 6rem !important;
    padding-bottom: 2.5rem !important;
  }
  main[style*="padding-top: 10rem"] h1[style*="font-size: 3rem"] {
    font-size: 1.8rem !important;
  }
  .dashboard-inner[style*="padding: 3rem"] {
    padding: 1.5rem 1rem !important;
  }
  .dashboard-inner[style*="padding: 3rem"] h3 {
    font-size: 1.25rem !important;
  }

  /* 404 Page Small Mobile Overrides */
  main[style*="padding: 15rem 0 10rem"] {
    padding: 6rem 1rem 4rem !important;
  }
  main[style*="padding: 15rem 0 10rem"] h1[style*="font-size: 8rem"] {
    font-size: 4rem !important;
  }
  main[style*="padding: 15rem 0 10rem"] p[style*="font-size: 1.5rem"] {
    font-size: 1.15rem !important;
  }

  /* Header/Footer Small Mobile Overrides */
  .mobile-menu-overlay {
    padding: 0 1rem !important;
  }
  .mobile-menu-overlay.active {
    padding: 1.5rem 1rem !important;
  }
  .footer-grid[style*="gap: 3rem"] {
    gap: 1.5rem !important;
  }
  div[style*="margin-top: 3rem"][style*="padding-top: 2rem"] {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
  }
}

/* =============================================
   UTILITIES & MISSING CLASSES
   ============================================= */

html.scroll-smooth,
.scroll-smooth {
  scroll-behavior: smooth;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.reverse {
  flex-direction: row-reverse;
}

.ops-pane-image {
  width: 100%;
  position: relative;
}

.value-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-main);
}

/* =============================================
   MARKETS PAGE STYLES
   ============================================= */

.markets-hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(11, 44, 25, 0.08) 0%, transparent 70%);
}
.dark .markets-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(207, 140, 23, 0.06) 0%, transparent 70%);
}
.markets-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 38, 18, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 38, 18, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.dark .markets-hero-bg-pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.markets-hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.markets-hero-title span {
  color: var(--brand-blue);
}

.markets-stats-bar {
  display: flex;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.mkt-stat {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--card-border);
  transition: background 0.2s;
}
.mkt-stat:last-child {
  border-right: none;
}
.mkt-stat:hover {
  background: rgba(11, 44, 25, 0.03);
}
.dark .mkt-stat:hover {
  background: rgba(255, 255, 255, 0.03);
}
.mkt-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.mkt-stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.state-showcase {
  padding: 8rem 0;
  position: relative;
}
.state-showcase:nth-child(odd) {
  background: var(--bg-main);
}
.state-showcase:nth-child(even) {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.state-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.state-showcase-inner.reverse {
  direction: rtl;
}
.state-showcase-inner.reverse > * {
  direction: ltr;
}
.state-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  aspect-ratio: 4/3;
}
.state-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.state-img-wrap:hover img {
  transform: scale(1.04);
}
.state-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 14, 0.7) 0%, transparent 50%);
}
.state-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
}
.state-img-badge i {
  color: var(--brand-blue);
}
.state-number-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #0C2612;
  box-shadow: 0 8px 20px rgba(207, 140, 23, 0.4);
}

.state-content-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.state-content-badge.primary-market {
  background: rgba(207, 140, 23, 0.12);
  color: #CF8C17;
  border: 1px solid rgba(207, 140, 23, 0.25);
}
.state-content-badge.hq-market {
  background: rgba(11, 44, 25, 0.1);
  color: var(--brand);
  border: 1px solid rgba(11, 44, 25, 0.2);
}
.dark .state-content-badge.hq-market {
  background: rgba(207, 140, 23, 0.1);
  color: var(--brand-blue);
  border-color: rgba(207, 140, 23, 0.2);
}
.state-name {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.state-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.state-prop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.prop-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--bg-main);
  border: 1px solid var(--card-border);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  transition: 0.2s;
}
.dark .prop-tag {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.prop-tag:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.prop-tag i {
  color: var(--brand-blue);
  font-size: 0.75rem;
}
