:root {
  /* Brand Colors */
  --primary-blue: #205088;
  --deep-blue: #1A3F6E;
  --accent-orange: #F6564C;
  /* Updated to requested Red-Orange */
  --cream: #FFF8E7;
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-light: #F0F0F0;
  --gray-100: #F5F7FA;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 20px;
  /* Increased from 80px for better separation */
  --container-max-width: 1200px;

  /* Shadows */
  --shadow-card: 0 4px 12px rgba(32, 80, 136, 0.08);
  --shadow-hover: 0 8px 24px rgba(32, 80, 136, 0.15);
}

/* ... existing styles ... */

/* Static Text Banner */
/* Static Text Banner */
.scrolling-banner {
  background-color: var(--accent-orange);
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 20;
  width: 100%;
  margin: 30px 0;
  /* White gap above and below */
}

.scrolling-content {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scrolling-content span {
  padding: 0 50px;
  display: inline-block;
  /* Fix for span spacing */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Provided text is duplicated enough to cover scroll */
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
  border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.section-padding {
  padding: var(--section-padding);
}

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

.text-white {
  color: var(--white);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-white {
  background-color: var(--white);
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: flex;
  /* Kept for alignment items if needed, but removing gap for text */
  align-items: center;
  /* gap: 10px; Removed to fix spacing issue */
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--deep-blue);
}

.nav-link:hover {
  color: var(--accent-orange);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Hero Section */
/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero {
  padding-top: 220px;
  /* Reverted */
  padding-bottom: 140px;
  /* Reverted */
  background-color: var(--deep-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Removed max-width restriction */
}

.hero-text h1 {
  font-size: 3rem;
  /* Reverted from clamp() if it was fixed before, or just standard */
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  /* Removed white-space: nowrap */
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
}


.hero-content {
  display: block;
  /* Removed grid since image is gone */
  max-width: 800px;
  /* Constrain width for better reading */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: luminosity;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 25px;
  color: #FFF;
}

/* Hero CTA Alignment */
.hero-cta-group {
  justify-content: center;
}

.hero-badges {
  justify-content: center;
}

/* Safety Circle Updates */
.badge-orange-light {
  display: inline-block;
  background-color: #FFF8E7;
  /* Cream background */
  color: var(--accent-orange);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: white;
  /* Kept white for contrast on dark background */
  text-align: left;
}

.icon-list li i {
  color: var(--white);
  /* White icons */
  font-size: 1.3rem;
  min-width: 30px;
  text-align: center;
}

/* New How It Works Design */
.step-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.step-pill {
  background: #111;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  z-index: 2;
}

.step-image-container {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.step-image-container img {
  max-width: 200px;
  margin: 0 auto;
  border-radius: 20px;
  border: 4px solid #eee;
}

.step-card h3 {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

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

.hero-text .subheadline {
  font-size: 1.125rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Safety Circle / WalkSafe Style Section */
.safety-circle-section {
  background-color: var(--deep-blue);
  color: white;
  padding: 100px 0;
  /* Increase padding for better vertical centering */
  margin-top: 0;
  padding-top: 30px;
  /* Match spacing with Instant Help section - same gap after banner */
  position: relative;
  z-index: 10;
}

.safety-circle-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}

.safety-circle-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: block;
  /* Visible by default on desktop */
}

/* This creates the floating card effect */
.safety-circle-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 40px;
  /* Soft, modern styling */
  display: block;
  margin: 0 auto;
  /* Pull the image up to create the overlap */
  margin-top: -200px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  /* Softer, more premium shadow */

  /* Using brand cream color to make the cutout look like a designed card */
  background-color: #FFF8E7;

  /* Ensure the image sits nicely in the card */
  object-fit: cover;
  aspect-ratio: 1 / 1.1;
  /* Keeps a nice consistent shape */
}

.safety-circle-content {
  flex: 1.2;
  min-width: 300px;
  padding: 0 40px;
}

.safety-circle-content h2 {
  font-size: 2.8rem;
  /* Larger heading */
  color: var(--accent-orange);
  margin-bottom: 25px;
  font-weight: 700;
}

.safety-circle-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 35px;
  opacity: 0.9;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 900px) {

  /* Tablet and Mobile */
  .safety-circle-section {
    margin-top: 0;
    padding: 60px 0;
    padding-top: 30px;
  }

  /* Hide the image on mobile/tablet as requested */
  .safety-circle-image {
    display: none;
  }

  .safety-circle-container {
    flex-direction: column;
  }

  .safety-circle-content {
    text-align: center;
    padding: 0 20px;
  }
}

/* Components */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(32, 80, 136, 0.1);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 24px;
}

.feature-item h3 {
  margin-bottom: 10px;
  color: var(--deep-blue);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Value Prop */
.value-prop {
  background-color: var(--deep-blue);
  color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid #E0E0E0;
  position: relative;
}

.pricing-card.premium {
  border-color: var(--accent-orange);
  border-width: 2px;
}

.premium-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  color: var(--accent-orange);
}

/* Footer */
.main-footer {
  background-color: var(--deep-blue);
  color: white;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  opacity: 0.8;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

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

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-title-desktop,
  .hero-sub-desktop {
    display: none;
  }

  .hero-title-mobile,
  .hero-sub-mobile {
    display: inline !important;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .mobile-features-stack .mobile-header h2 {
    font-size: 20px;
  }

  .safety-circle-content h2 {
    font-size: 20px;
  }

  .hero-title-mobile {
    font-size: 30px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .feature-grid,
  .steps-grid,
  .value-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

.hero-title-mobile,
.hero-sub-mobile {
  display: none;
}

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

/* Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* New Split Layout for How It Works */
.how-it-works-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works-split .col-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.how-it-works-split .col-text {
  flex: 1;
  text-align: left;
}

.how-it-works-split h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-blue);
  line-height: 1.2;
}

.how-it-works-split p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.phone-mockup-large {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Feature Cards Grid (Right Side of How It Works) */
.how-it-works-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-card-small {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.feature-card-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.icon-red {
  background: #fee2e2;
  color: #ef4444;
}

.icon-green {
  background: #dcfce7;
  color: #22c55e;
}

.icon-orange {
  background: #ffedd5;
  color: #f97316;
}

.icon-blue {
  background: #dbeafe;
  color: #3b82f6;
}

.feature-card-text h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: var(--deep-blue);
  font-weight: 700;
}

.feature-card-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .how-it-works-split {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .how-it-works-split .col-image {
    justify-content: center;
    order: 1;
  }

  .how-it-works-split .col-text {
    order: 2;
    text-align: center;
    padding: 0 20px;
  }

  .how-it-works-split h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 600px) {
  .how-it-works-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .how-it-works-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Full Width Feature Image Substitute */
.feature-image-full {
  width: 100%;
  height: auto;
  max-width: 1200px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

/* --- Features Overlay Layout (Desktop) --- */
.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }

  .d-lg-none {
    display: none !important;
  }
}

.interactive-map-container {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

/* Bottom overlay removed - no longer needed with clean background image */

.interactive-map-container .base-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Callout Containers */
.callout-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 24%;
  max-width: 280px;
}

.callout-left {
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.callout-right {
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.callout-box {
  background: white;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.callout-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.callout-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.callout-content {
  flex: 1;
}

.callout-content h4 {
  margin: 0 0 6px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.3;
}

.callout-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive adjustments for callouts */
@media (max-width: 1200px) {
  .callout-container {
    width: 22%;
    max-width: 240px;
  }
  
  .callout-left {
    left: 4%;
  }
  
  .callout-right {
    right: 4%;
  }
  
  .callout-content h4 {
    font-size: 0.95rem;
  }
  
  .callout-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .callout-container {
    display: none;
  }
}

.overlay-text {
  position: absolute;
  /* Use a roughly estimated width for the text blocks based on the image "cards" */
  width: 24%;
  padding: 10px 14px;
  /* Show overlay text to align with the white boxes */
  display: block;
  box-sizing: border-box;
  overflow: hidden;
}

.overlay-text h2 {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.overlay-text h4 {
  color: var(--deep-blue);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  margin-bottom: 5px;
  display: block;
  line-height: 1.2;
}

/* Optional icons could be added via ::before if needed, but text is strictly requested */

.overlay-text p {
  color: #555;
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  line-height: 1.35;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Callout specific styling for better text fit */
.overlay-text.callout {
  display: block;
  max-height: 100%;
}

.overlay-text.callout h4 {
  margin-bottom: 6px;
  line-height: 1.2;
}

.overlay-text.callout p {
  line-height: 1.4;
  max-width: 100%;
}

/* Positioning - Adjusted based on the visual layout of the provided image placeholders */

/* Main Heading: Top Center */
.main-heading {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  text-align: center;
  padding: 20px 30px;
}

/* Left Column */
.left-1 {
  top: 35%;
  left: 6%;
  text-align: left;
  width: 24%;
  padding: 10px 14px;
}

.left-2 {
  top: 52%;
  left: 6%;
  text-align: left;
  width: 24%;
  padding: 10px 14px;
}

.left-3 {
  top: 69%;
  left: 6%;
  text-align: left;
  width: 24%;
  padding: 10px 14px;
}

/* Right Column */
.right-1 {
  top: 35%;
  right: 6%;
  text-align: left;
  width: 24%;
  padding: 10px 14px;
}

.right-2 {
  top: 52%;
  right: 6%;
  text-align: left;
  width: 24%;
  padding: 10px 14px;
}

.right-3 {
  top: 69%;
  right: 6%;
  text-align: left;
  width: 24%;
  padding: 10px 14px;
}

/* --- Mobile Features Stack (Refined List View) --- */
.mobile-features-stack {
  padding: 30px 20px;
  background: #FFF8E7;
  /* Cream background matching reference */
  text-align: left;
}

.mobile-features-stack .mobile-header {
  text-align: center;
  margin-bottom: 40px;
}

.mobile-features-stack .mobile-header h2 {
  color: var(--deep-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.mobile-features-stack .mobile-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.mobile-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.mobile-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.m-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.m-icon-orange {
  background: #ffedd5;
  color: #f97316;
}

.m-icon-green {
  background: #dcfce7;
  color: #22c55e;
}

.m-icon-blue {
  background: #dbeafe;
  color: #3b82f6;
}

.m-text h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.m-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

.mobile-features-stack .btn-block {
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  font-weight: 600;
}

/* Mobile Phone Mockup */
.mobile-phone-mockup {
  margin-top: 40px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.mobile-mockup-image {
  max-width: 100%;
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Spacing Adjustments for Static Banner Balance */
#how-it-works {
  padding-bottom: 60px !important;
}

#features {
  padding-top: 60px !important;
}