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

body {
  font-family: "Inter", sans-serif;
  color: #020a36;
  line-height: 1.6;
  font-size: 16px;
}

:root {
  --primary: #2047f4;
  --primary-light: #e5eeff;
  --secondary: #6c757d;
  --dark: #020a36;
  --light: #f8fbfe;
  --gray: #aeaecb;
  --color-green: #25c17e;
  --color-cyan: #0ea5e9;
  --border-radius: 24px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 30px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

/* =====================
   Layout Utilities
   ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 60px 0;
}

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

.flex {
  display: flex;
}

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

/* Desktop container and section adjustments */
@media (min-width: 769px) {
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 80px 0;
  }
}

/* =====================
   Typography - Mobile First
   ===================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { 
  font-size: 28px;
  margin-bottom: 16px;
}
h2 { 
  font-size: 24px;
  margin-bottom: 16px;
}
h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.text-lg { font-size: 16px; }
.text-md { font-size: 15px; }
.text-sm { font-size: 14px; }
.text-primary { color: var(--primary); }

/* Desktop Typography */
@media (min-width: 769px) {
  h1 {
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  h2 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  h3 { 
    font-size: 24px;
    margin-bottom: 16px;
  }
  .text-lg { font-size: 20px; }
  .text-md { font-size: 18px; }
  .text-sm { font-size: 16px; }
}

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .btn {
    padding: 16px 32px;
    font-size: 16px;
  }
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #1a3bda;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-discord {
  background: #5865F2;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.45);
  color: white;
}

.btn-secondary {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-secondary:hover {
  background: #d0dfff;
  transform: translateY(-2px);
}

/* =====================
   Cards
   ===================== */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 769px) {
  .card {
    border-radius: var(--border-radius);
  }
}

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

/* =====================
   Announcement Bar
   ===================== */
.announcement-bar {
  background: var(--primary);
  color: white;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.announcement-bar a {
  color: white;
  text-decoration: underline;
  margin: 0 8px;
  transition: opacity 0.3s ease;
}

.announcement-bar a:hover {
  opacity: 0.8;
}

.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 769px) {
  .announcement-bar {
    padding: 10px 0;
    font-size: 16px;
  }
}

/* =====================
   Navbar - Mobile First with Hamburger Menu
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(206, 224, 255, 0.96) 0%, rgba(220, 234, 255, 0.75) 100%);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  min-height: 70px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 12px 0;
}

.navbar .container {
  padding-left: 8px;
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.navbar .nav-brand {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar .nav-brand img {
  height: 42px;
}

.navbar .nav-brand span {
  font-size: 20px;
  font-weight: 700;
  margin-left: -20px;
}

.nav-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.nav-promo span {
  font-size: 13px !important;
  font-weight: 700 !important;
}

.promo-link {
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.promo-link:hover {
  opacity: 0.8;
}

/* Hide promo on small mobile */
@media (max-width: 480px) {
  .nav-promo {
    display: none;
  }
}

/* Mobile Right Controls */
.mobile-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Nav Buttons */
.mobile-login-btn,
.mobile-signup-btn {
  display: inline-flex;
  padding: 8px 14px;
  font-size: 13px;
  min-height: unset;
  border-radius: 10px;
}

.mobile-login-btn {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}

.mobile-login-btn:hover {
  background: var(--primary-light);
  transform: none;
  box-shadow: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: white;
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--primary);
}

.mobile-cta {
  padding-top: 20px;
}

.mobile-cta .btn {
  width: 100%;
  margin-bottom: 12px;
}

.mobile-cta [data-action="signup"] {
  display: none !important;
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .navbar {
    height: 80px;
    padding: 0;
  }
  
  .navbar .nav-brand img {
    height: 46px;
  }
  
  .navbar .nav-brand span {
    font-size: 24px;
  }
  
  .mobile-nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: none;
    order: 0;
    margin-left: 0;
  }

  .navbar .nav-container {
    justify-content: space-between;
  }

  .nav-cta {
    display: flex;
    order: 0;
    margin-left: 0;
  }

  .nav-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-height: unset;
    border-radius: 10px;
  }
  
  .nav-links {
    display: flex !important;
    gap: 32px;
    margin-left: 48px;
  }
  
  .nav-links a {
    color: var(--dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--primary);
    background: rgba(32, 71, 244, 0.12);
    box-shadow: 0 8px 18px rgba(32, 71, 244, 0.12);
  }
  
  .nav-cta {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }

  .nav-cta .btn {
    padding: 10px 20px;
    min-height: unset;
    border-radius: 10px;
    font-size: 14px;
  }

  /* Log in — outlined */
  #loginBtn {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
    border: 1.5px solid var(--primary);
  }
  #loginBtn:hover {
    background: var(--primary-light);
    transform: none;
    box-shadow: none;
  }

  .navbar.scrolled {
    height: 64px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
}

/* Hide desktop nav elements on mobile */
.nav-links {
  display: none;
}

.nav-cta {
  display: none;
  align-items: center;
  margin-left: auto;
  order: 2;
}

.nav-cta .btn {
  padding: 8px 16px;
  font-size: 14px;
  min-height: unset;
  border-radius: 10px;
}

.mobile-menu-btn {
  order: 3;
  margin-left: 10px;
}

/* =====================
   Hero Section - Mobile First
   ===================== */
.hero {
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f0ff 50%, #f5f8ff 100%);
  padding: 60px 0 48px;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

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

.hero-content h1 {
  line-height: 1.15;
}

.hero-content .text-lg {
  color: #6e6e82;
  margin: 16px 0 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 280px;
}

@media (min-width: 769px) {
  .hero {
    padding: 80px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content .text-lg {
    margin: 20px 0 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 40px;
  }

  .hero-buttons .btn {
    width: auto;
    max-width: none;
  }
}

/* =====================
   Feature Demo Section
   ===================== */
.feature-demo {
  margin-top: 0;
}

.feature-demo-card {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: white;
}

.feature-demo-header {
  padding: 24px 16px;
  text-align: center;
  background: white;
}

.feature-demo-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

.feature-demo-title .highlight {
  color: var(--primary);
}

@media (min-width: 769px) {
  .feature-demo {
    margin-top: 0;
  }
  
  .feature-demo-card {
    border-radius: 24px;
  }
  
  .feature-demo-header {
    padding: 24px 24px 0 24px;
  }

  .feature-demo-title {
    font-size: 1.5rem;
  }
}

/* =====================
   Toggle Component
   ===================== */
.toggle-container {
  display: inline-flex;
  background: #f5f7ff;
  border-radius: 100px;
  padding: 4px;
  margin: 16px auto;
  position: relative;
  width: 100%;
  max-width: 300px;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: white;
  border-radius: 100px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(32, 71, 244, 0.1);
}

.toggle-btn {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-btn i {
  margin-right: 4px;
}

.toggle-btn.active {
  color: var(--primary);
}

.toggle-container.show-active .toggle-slider {
  transform: translateX(calc(100% + 4px));
}

@media (min-width: 769px) {
  .toggle-container {
    width: 280px;
    margin: 20px auto;
  }
  
  .toggle-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .toggle-slider {
    width: 136px;
  }
  
  .toggle-container.show-active .toggle-slider {
    transform: translateX(136px);
  }
}

/* =====================
   Feature Views
   ===================== */
.feature-views {
  position: relative;
  width: 100%;
}

.feature-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-view.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Request View */
.request-view {
  padding: 16px;
}

.request-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
  margin: 0;
}

.request-form {
  width: 100%;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* =====================
   Redesigned Request Form Fields
   ===================== */
.rf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.rf-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-left: 2px;
}

.rf-label i {
  font-size: 10px;
  margin-right: 3px;
  opacity: 0.75;
}

.rf-input {
  width: 100%;
  padding: 11px 14px;
  background: #f4f6ff;
  border: 1.5px solid #e2e7ff;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0a1848;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.rf-input::placeholder {
  color: #b0b8d4;
}

.rf-input:focus {
  outline: none;
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(32, 71, 244, 0.1);
}

select.rf-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232047f4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.rf-row {
  display: flex;
  gap: 10px;
}

.rf-row .rf-field {
  flex: 1;
}

.rf-submit {
  width: 100%;
  margin-top: 4px;
  gap: 8px;
  font-size: 15px;
  padding: 14px 24px;
}

#requestMapContainer,
#showMapContainer {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.map-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.request-map {
  height: 250px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-size: 12px;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: top;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: rotateX(0);
}

/* Show View */
.show-view {
  position: relative;
  height: 300px;
}

.show-map {
  height: 100%;
  border-radius: 0 0 16px 16px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(32, 71, 244, 0.1) 0%, rgba(32, 71, 244, 0.3) 100%);
}

.show-cta-card {
  position: absolute;
  bottom: 20px;
  right: 16px;
  background: white;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.06);
  text-align: center;
  max-width: 185px;
  width: auto;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.show-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8faf3;
  color: #16a34a;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.show-live-dot {
  width: 5px;
  height: 5px;
  background: var(--color-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.show-cta-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.show-cta-per {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
  margin-bottom: 10px;
}

.show-cta-card p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.show-cta-btn {
  width: 100%;
  font-size: 12px;
  padding: 10px 14px;
  min-height: unset;
}

@keyframes pin-fadein {
  from { opacity: 0; transform: scale(0.6) translateY(6px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);   }
}

/* Job pins */
.show-job-pin {
  position: relative;
  background: white;
  opacity: 0;
  animation: pin-fadein 0.35s ease-out forwards;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.show-job-pin::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid white;
}

.show-job-pin--pulse::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid rgba(32, 71, 244, 0.5);
  animation: pin-ring 2s ease-out infinite;
}

@keyframes pin-ring {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.7);  opacity: 0;   }
}

@media (min-width: 769px) {
  .request-view {
    padding: 24px 20px;
  }

  .request-content {
    flex-direction: column;
    gap: 16px;
    max-width: none;
  }

  .request-form {
    flex: none;
    max-width: none;
    padding: 24px;
  }

  .request-map {
    height: 200px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
  }

  .map-badge {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
  }

  .show-view {
    height: 420px;
  }

  .show-map {
    border-radius: 0 0 24px 24px;
  }

  .show-cta-card {
    padding: 20px 22px;
    max-width: 210px;
    bottom: 28px;
    right: 20px;
  }

  .show-cta-amount {
    font-size: 38px;
  }

  .show-cta-card p {
    font-size: 13px;
  }
}

/* =====================
   Forms
   ===================== */
.form-group {
  position: relative;
  margin-bottom: 14px;
}

.form-group label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: white;
  padding: 0 6px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  z-index: 1;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(32, 71, 244, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    top: -9px;
    padding: 0 8px;
    font-size: 12px;
  }

  .form-control {
    padding: 12px 14px;
  }

  .form-row {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
  }
}

/* =====================
   Trusted By Section
   ===================== */
.trusted-by {
  text-align: center;
  margin-top: 60px;
}

.trusted-by p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 14px;
}

.trusted-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-track-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 760px;
}

.trusted-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  animation: scroll-logos 22s linear infinite;
  align-items: center;
}

.trusted-logo {
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  padding: 12px 16px;
}

.trusted-logo img {
  max-height: 44px;
  width: auto;
  filter: grayscale(1);
}

@media (max-width: 768px) {
  .trusted-carousel {
    justify-content: center;
  }
  .trusted-track {
    animation: scroll-logos 22s linear infinite;
    gap: 28px;
    padding: 0 16px;
  }
  .trusted-track-wrapper {
    overflow: hidden;
    width: 100%;
  }
  .trusted-logo {
    min-width: 140px;
    padding: 12px 16px;
    opacity: 0.7;
  }
  .trusted-logo img {
    max-height: 36px;
    width: auto;
  }
}

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

@media (min-width: 769px) {
  .trusted-by {
    margin-top: 80px;
  }
  
  .trusted-by p {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .trusted-track {
    gap: 40px;
  }

  .trusted-logo {
    min-width: 160px;
  }
}

/* =====================
   Stats Section
   ===================== */
.stats-section {
  background: linear-gradient(135deg, #eef3ff 0%, #f5f7ff 100%);
  border-top: 1px solid #d4defd;
  border-bottom: 1px solid #d4defd;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-item p {
  color: #6b6b8a;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .stats-container {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .stat-item {
    flex: 1;
    padding: 0 40px;
    border-right: 1px solid #d4defd;
  }

  .stat-item:last-child {
    border-right: none;
  }

  .stat-item h3 {
    font-size: 52px;
  }

  .stat-item p {
    font-size: 13px;
  }
}

/* =====================
   How It Works Section
   ===================== */
.how-works-section {
  background: linear-gradient(180deg, #f5f7ff 0%, #ffffff 40%);
}

.how-works-subtitle {
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 14px;
}

.how-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.how-card {
  padding: 24px 20px;
  text-align: center;
  border: 1px solid #e7ebf7;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.how-step-num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.how-card h3 {
  font-size: 18px;
  margin: 8px 0 6px;
}

.how-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}

.how-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.badge-primary {
  background: linear-gradient(135deg, #2047f4, #3d7bfd);
  box-shadow: 0 10px 20px rgba(32, 71, 244, 0.25);
}

.badge-secondary {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
}

.how-card-visual {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 4px;
}

/* ===== Card 1: Map Visual ===== */
.map-visual {
  height: 160px;
  background: linear-gradient(145deg, #e8f0ff, #f0f5ff);
  position: relative;
  border: 1px solid #d4defd;
  border-radius: 14px;
}

.hmap-street {
  position: absolute;
  background: #c8d9ff;
}
.hmap-street.hmap-street-h { height: 1px; width: 100%; }
.hmap-street.hmap-street-v { width: 1px; height: 100%; }

.hmap-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hmap-avatars {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hmap-pin-pulse {
  position: relative;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(32, 71, 244, 0.2);
}
.hmap-pin-pulse::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: hmap-pulse 2s ease-out infinite;
}
@keyframes hmap-pulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hmap-agent {
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid #0ea5e9;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.hmap-agent-2 {
  border-color: #38bdf8;
  color: #38bdf8;
}

.hmap-nearby-badge {
  background: white;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hmap-nearby-badge i { color: var(--primary); font-size: 10px; }

@media (max-width: 768px) {
  .map-visual {
    height: auto;
    padding: 24px 16px;
  }

  .hmap-content {
    position: static;
  }

  .hmap-street {
    display: none;
  }

  .hmap-agent {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .hmap-pin-pulse {
    width: 18px;
    height: 18px;
  }

  .hmap-nearby-badge {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* ===== Card 2: Confirm Visual ===== */
.confirm-visual {
  height: 160px;
  background: #f8fbfe;
  border: 1px solid #e7ebf7;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
}

.confirm-notification {
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  width: 100%;
}

.confirm-icon-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #25c17e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
}

.confirm-content-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.confirm-content-detail {
  font-size: 10px;
  color: var(--gray);
  line-height: 1.5;
}

.confirm-nav-btn {
  background: var(--primary);
  color: white;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(32, 71, 244, 0.3);
}

/* ===== Card 3: Property Visual ===== */
.property-visual {
  height: 160px;
  background: #f8fbfe;
  border: 1px solid #e7ebf7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.property-card-mini {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 185px;
}

.property-photo-mini {
  height: 72px;
  background: linear-gradient(135deg, #c8d9ff 0%, #e5eeff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.property-photo-mini > i {
  font-size: 28px;
  color: var(--primary);
  opacity: 0.65;
}

.property-status-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #25c17e;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}

.property-info-mini {
  padding: 8px 10px;
}
.property-address-mini {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.property-client-mini {
  font-size: 10px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== Card 4: Earnings Visual ===== */
.earnings-visual {
  height: 160px;
  background: #f8fbfe;
  border: 1px solid #e7ebf7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.earnings-card-mini {
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 160px;
}

.earnings-label-mini {
  font-size: 10px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.earnings-amount-mini {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.earnings-paid-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(37, 193, 126, 0.12);
  color: #1a9e65;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.earnings-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}
.e-bar {
  flex: 1;
  border-radius: 3px 3px 2px 2px;
  background: #e5eeff;
}
.e-bar-active {
  background: var(--primary);
}

.how-works-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.how-works-actions .btn {
  width: 100%;
  max-width: 220px;
}

@media (max-width: 768px) {
  .how-works-grid {
    max-width: 520px;
    margin: 0 auto 28px;
    gap: 12px;
  }

  .how-card {
    padding: 22px 18px;
    align-items: center;
  }

  .how-card h3 {
    margin: 10px 0 6px;
  }

  .how-card-visual {
    margin: 6px auto 0;
    max-width: 100%;
  }


  .how-works-actions .btn {
    max-width: 260px;
  }
}

@media (min-width: 769px) {
  .how-works-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .how-works-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .how-card {
    padding: 26px 22px;
  }

  .how-card h3 {
    font-size: 20px;
  }

  .how-card p {
    font-size: 15px;
  }

  .how-works-actions {
    flex-direction: row;
    gap: 16px;
  }

  .how-works-actions .btn {
    width: auto;
    max-width: none;
  }
}

/* =====================
   Content Sections
   ===================== */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.content-text {
  flex: 1;
  text-align: center;
  max-width: 520px;
}

.content-text .section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-text p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 14px;
}

.content-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.content-cta .btn {
  min-width: 140px;
}

.section-cta {
  margin-top: 28px;
}

.cta-inline {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-secondary {
  font-size: 13px;
  color: var(--gray);
}

.cta-secondary a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.cta-secondary a:hover {
  text-decoration: underline;
}

.cta-text-link {
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 4px;
  font-size: 15px;
}

.cta-text-link span {
  text-decoration: underline;
}

.cta-text-link:hover {
  color: #020a36;
}

.content-image {
  flex: 1;
  position: relative;
  max-width: 520px;
  width: 100%;
}

.content-image .card {
  padding: 0;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

/* =====================
   Content Card Visuals (CSS illustrations)
   ===================== */
.content-card-visual {
  padding: 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}

/* --- Rhythm Visual (DO MORE BUSINESS) --- */
.rhythm-visual {
  background: linear-gradient(145deg, #eef3ff 0%, #f7f9ff 100%);
  border: 1px solid #e0e8ff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8899cc;
}
.rv-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
}
.rv-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
}
.rv-bar {
  width: 100%;
  background: linear-gradient(180deg, #a5b8ff 0%, #d0daff 100%);
  border-radius: 6px 6px 0 0;
}
.rv-bar.rv-bar-hi {
  background: linear-gradient(180deg, var(--primary) 0%, #6b9fff 100%);
}
.rv-day {
  font-size: 11px;
  font-weight: 600;
  color: #99aabb;
}
.rv-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #e8edff;
}
.rv-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: center;
}
.rv-metric-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.rv-metric-num.rv-zero {
  color: var(--color-green);
}
.rv-metric-lbl {
  font-size: 10px;
  font-weight: 600;
  color: #99aabb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rv-metric-sep {
  width: 1px;
  height: 36px;
  background: #e8edff;
  flex-shrink: 0;
}

/* --- Connect Visual (MANAGE MORE BUSINESS) --- */
.connect-visual {
  background: linear-gradient(145deg, #f0f4ff 0%, #f8faff 100%);
  border: 1px solid #e0e8ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 24px;
}
.cv-flow {
  display: flex;
  align-items: center;
  width: 100%;
}
.cv-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cv-node-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cv-node-request .cv-node-icon {
  background: var(--primary-light);
  color: var(--primary);
}
.cv-node-agent .cv-node-icon {
  background: #e8faf3;
  color: #16a34a;
}
.cv-node-label {
  font-size: 12px;
  font-weight: 700;
  color: #667;
}
.cv-connector {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.cv-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #d0daff, #b8c8ff);
}
.cv-bolt {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(32, 71, 244, 0.35);
}
.cv-time-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e0e8ff;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.cv-time-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
.cv-tagline {
  font-size: 12px;
  color: #99aabb;
  font-weight: 500;
}

/* --- Revenue Visual (GENERATE MORE REVENUE) --- */
.revenue-visual {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
.rv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rv-title {
  font-size: 14px;
  font-weight: 700;
  color: #0a1848;
}
.rv-period {
  font-size: 11px;
  color: #888;
  background: #f0f2f8;
  padding: 3px 10px;
  border-radius: 999px;
}
.rv-total {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rv-trend {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-green);
}
.rv-trend i { margin-right: 3px; }
.rv-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
}
.rv-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
  justify-content: flex-end;
}
.rv-bar-group span {
  font-size: 9px;
  color: #aaa;
}
.rv-bar {
  width: 100%;
  background: #dce6ff;
  border-radius: 4px 4px 0 0;
}
.rv-bar.rv-bar-active { background: var(--primary); }
.rv-entries {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid #eef0f8;
  padding-top: 10px;
}
.rv-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #555;
}
.rv-amt {
  font-weight: 700;
  color: var(--color-green);
}
.rv-payout {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-green);
  background: #e8faf3;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}


@media (min-width: 769px) {
  .content-section {
    flex-direction: row;
    gap: 60px;
    text-align: left;
    align-items: center;
  }
 
  .content-text {
    text-align: left;
    max-width: 540px;
  }
 
  .content-text .section-label {
    font-size: 12px;
  }
 
  .content-text p {
    font-size: 16px;
  }
  
  .content-cta {
    justify-content: flex-start;
    margin-top: 56px;
    gap: 18px;
  }
 
  .content-image {
    max-width: 560px;
  }

  /* Reverse order for specific sections on desktop */
  .content-image.reverse-desktop {
    order: -1;
  }
 
}

/* =====================
   Dark CTA Section
   ===================== */
.dark-cta-section {
  background: linear-gradient(135deg, #050d3a 0%, #0d1f5e 60%, #071540 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.dark-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(61,123,253,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(32,71,244,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.dark-cta-section .container {
  position: relative;
  z-index: 1;
}

.dark-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.dark-cta-left {
  text-align: center;
}

.dark-cta-left h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.dark-cta-left h2 .highlight {
  color: #6b9fff;
}

.dark-cta-left > p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 28px;
}

.dark-cta-left .btn {
  margin-top: 40px;
}

.dark-cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checklist-icon {
  width: 24px;
  height: 24px;
  background: rgba(107, 159, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-icon i {
  color: #6b9fff;
  font-size: 10px;
}

.checklist-item span {
  font-size: 15px;
  opacity: 0.9;
}

.dark-cta-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =====================
   Dashboard Widget (Dark CTA)
   ===================== */
.dash-widget {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 420px;
  font-family: 'Inter', sans-serif;
}

/* Chrome bar */
.dash-chrome {
  background: #f4f4f5;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e4e4e7;
}
.dash-dots { display: flex; gap: 5px; align-items: center; }
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot-red    { background: #ff5f57; }
.dash-dot-yellow { background: #febc2e; }
.dash-dot-green  { background: #28c840; }
.dash-chrome-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.01em;
}
.dash-chrome-actions { color: #999; font-size: 13px; }

/* Schedule header */
.dash-header {
  padding: 14px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f2f4fb;
}
.dash-header-label {
  font-size: 13px;
  font-weight: 700;
  color: #0a1848;
}
.dash-count-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 9px;
  border-radius: 999px;
}

/* Showing rows */
.dash-showing-list { display: flex; flex-direction: column; }
.dash-showing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid #f5f7ff;
}
.dash-row-done { opacity: 0.55; }
.dash-row-live {
  border-left-color: var(--primary);
  background: #f8f9ff;
}
.dash-row-time {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  min-width: 58px;
  flex-shrink: 0;
}
.dash-row-live .dash-row-time { color: var(--primary); }
.dash-row-addr {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: #1a2040;
}
.dash-row-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.dash-status-done    { background: #e8faf3; color: var(--color-green); }
.dash-status-live    { background: #fff0f0; color: #e53e3e; display: flex; align-items: center; gap: 4px; }
.dash-status-pending { background: #fff8e8; color: #d97706; }
.dash-live-dot {
  width: 5px;
  height: 5px;
  background: #e53e3e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

/* Next showing card */
.dash-next-card {
  margin: 12px 14px;
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
  border: 1px solid #d8e0ff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-next-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dash-next-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.dash-next-addr {
  font-size: 13px;
  font-weight: 700;
  color: #0a1848;
}
.dash-next-agent { display: flex; align-items: center; gap: 8px; }
.dash-agent-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6b9fff);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-agent-info { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.dash-agent-name  { font-size: 11px; font-weight: 600; color: #1a2040; }
.dash-agent-stars { font-size: 10px; color: #f59e0b; }
.dash-agent-dist  { font-size: 10px; color: #888; }
.dash-next-actions { display: flex; gap: 8px; }
.dash-btn-nav {
  flex: 1;
  text-align: center;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 8px;
}
.dash-btn-msg {
  flex: 1;
  text-align: center;
  background: white;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid #d8e0ff;
}

/* Bottom stats */
.dash-stats-row {
  display: flex;
  border-top: 1px solid #f0f2f8;
  padding: 12px 0 14px;
}
.dash-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid #f0f2f8;
}
.dash-stat:last-child { border-right: none; }
.dash-stat-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.dash-stat-label {
  font-size: 10px;
  color: #999;
  margin-top: 1px;
}

@media (min-width: 769px) {
  .dark-cta-section {
    padding: 100px 0;
  }

  .dark-cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .dark-cta-left {
    text-align: left;
  }

  .dark-cta-left h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .dark-cta-left > p {
    font-size: 18px;
  }

  .dark-cta-checklist {
    gap: 20px;
  }

  .checklist-icon {
    width: 26px;
    height: 26px;
  }

  .checklist-icon i {
    font-size: 11px;
  }

  .checklist-item span {
    font-size: 16px;
  }

}

/* =====================
   Testimonials Section
   ===================== */
.testimonials-section {
  background: rgba(245, 247, 255, 0.89);
  border-top: 1px solid #eceef8;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.testimonials-intro {
  max-width: 100%;
}

.testimonials-intro p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 14px;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  padding: 24px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--primary);
  font-size: 14px;
}

.testimonial-card p {
  color: var(--gray);
  line-height: 1.5;
  font-size: 14px;
}

@media (min-width: 769px) {
  .testimonials-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
  }

  .testimonials-header > div:last-child {
    flex-shrink: 0;
  }

  .testimonials-intro {
    max-width: 495px;
  }
  
  .testimonials-intro p {
    font-size: 16px;
  }
  
  .testimonials-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .testimonial-card {
    width: calc(33.33% - 16px);
    padding: 32px;
  }
  
  .testimonial-header {
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }
  
  .testimonial-author h4 {
    font-size: 18px;
  }
  
  .testimonial-author span {
    font-size: 16px;
  }
  
  .testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =====================
   Blog Section
   ===================== */
.blog-section {
  background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 60%);
}

.blog-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.blog-header .section-label {
  display: inline-block;
  background: #eef2ff;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.blog-intro {
  color: var(--gray);
  font-size: 14px;
  max-width: 640px;
}

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

.blog-card {
  position: relative;
  padding: 0;
  border: 1px solid #e7ebf7;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* =====================
   Blog Card Visuals
   ===================== */
.blog-card-visual {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Pricing visual */
.bc-pricing {
  background: linear-gradient(135deg, #1538e0 0%, #2f64f8 60%, #4d83ff 100%);
  gap: 12px;
}
.bcp-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.bcp-cols {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 220px;
}
.bcp-col {
  flex: 1;
  text-align: center;
}
.bcp-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin: 0 16px;
}
.bcp-role {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.bcp-amount {
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bcp-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

/* Delegate visual */
.bc-delegate {
  background: linear-gradient(135deg, #0d7a4e 0%, #16a361 60%, #22c97e 100%);
  gap: 10px;
  align-items: flex-start;
}
.bcd-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.bcd-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.bcd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}
.bcd-item i { font-size: 11px; }
.bcd-done i { color: rgba(255,255,255,0.9); }
.bcd-pending { opacity: 0.5; }
.bcd-pending i { color: rgba(255,255,255,0.6); }

/* Matching visual */
.bc-matching {
  background: linear-gradient(135deg, #3730a3 0%, #4f46e5 60%, #7c72f8 100%);
  gap: 14px;
}
.bcm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 240px;
}
.bcm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bcm-avatar-agent {
  background: rgba(255,255,255,0.9);
  color: #4f46e5;
  border-color: white;
}
.bcm-connector {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bcm-line-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  overflow: hidden;
}
.bcm-line-fill {
  height: 100%;
  background: white;
  border-radius: 999px;
  animation: bcm-fill 2s ease-in-out infinite;
}
@keyframes bcm-fill {
  0%   { width: 0%; }
  70%  { width: 100%; }
  100% { width: 100%; }
}
.bcm-timer {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.bcm-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.bcm-badge i { margin-right: 4px; color: #fbbf24; }

/* Trends visual */
.bc-trends {
  background: linear-gradient(135deg, #0c1445 0%, #142272 60%, #1a2f99 100%);
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 16px;
}
.bct-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.bct-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.bct-trend {
  font-size: 12px;
  font-weight: 800;
  color: #4ade80;
}
.bct-trend i { margin-right: 3px; }
.bct-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  height: 72px;
}
.bct-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.bct-bar-group span {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.bct-bar {
  width: 100%;
  background: rgba(255,255,255,0.2);
  border-radius: 3px 3px 0 0;
}
.bct-bar-hi { background: #4ade80; }

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-tag {
  background: #f5f7ff;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.blog-date {
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
}

.blog-link i {
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-link i {
  transform: translateX(4px);
}

.blog-card.featured {
  border: 1px solid rgba(32, 71, 244, 0.3);
  box-shadow: 0 16px 40px rgba(32, 71, 244, 0.12);
}

@media (min-width: 769px) {
  .blog-section {
    padding: 140px 0 120px;
  }

  .blog-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
  }

  .blog-intro {
    font-size: 16px;
    max-width: 520px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .blog-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .blog-card p {
    font-size: 14px;
  }
}

/* =====================
   Pricing Section
   ===================== */
.pricing-section .section-badge {
  background: #f5f7ff;
  border-radius: 56px;
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.pricing-section .section-badge span {
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}

.pricing-section p {
  color: var(--gray);
  max-width: 100%;
  margin: 0 auto 32px;
  font-size: 14px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.pricing-card {
  padding: 32px 24px;
  text-align: left;
}

.pricing-card.featured {
  border: 1px solid var(--primary);
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-price {
  font-size: 32px;
  display: inline;
}

.pricing-period {
  font-size: 16px;
  margin-left: 8px;
}

.pricing-subtitle {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
}

.pricing-description {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .pricing-section .section-badge span {
    font-size: 14px;
  }
  
  .pricing-section p {
    max-width: 608px;
    margin: 0 auto 40px;
    font-size: 16px;
  }
  
  .pricing-cards {
    flex-direction: row;
    gap: 24px;
    margin-top: 60px;
  }
  
  .pricing-card {
    flex: 1;
    padding: 40px;
  }
  
  .pricing-header {
    margin-bottom: 40px;
  }
  
  .pricing-price {
    font-size: 48px;
  }
  
  .pricing-period {
    font-size: 24px;
  }
  
  .pricing-subtitle {
    font-size: 18px;
  }
  
  .pricing-description {
    margin-bottom: 40px;
    font-size: 16px;
  }
}

/* =====================
   FAQ Section
   ===================== */
.faq-section p {
  color: var(--gray);
  margin-bottom: 60px;
  font-size: 14px;
}

.faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.faq-question h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-right: 16px;
  margin-bottom: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray);
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

@media (min-width: 769px) {
  .faq-section p {
    margin-bottom: 80px;
    font-size: 16px;
  }
  
  .faq-list {
    max-width: 1160px;
  }
  
  .faq-item {
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
  }
  
  .faq-question h3 {
    font-size: 18px;
  }
  
  .faq-icon {
    width: 32px;
    height: 32px;
  }
  
  .faq-answer {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =====================
   Footer
   ===================== */
footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
              radial-gradient(120% 120% at 80% 0%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 100%;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-brand-logo img {
  height: 32px;
}

.footer-brand-logo span {
  font-size: 18px;
  font-weight: 700;
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-social {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.footer-social-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-links h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
}

.footer-contact p {
  opacity: 0.8;
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

@media (min-width: 769px) {
  footer {
    padding: 72px 0 36px;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
  }
  
  .footer-brand {
    max-width: 320px;
  }
  
  .footer-brand-logo {
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  
  .footer-brand-logo img {
    height: 40px;
  }
  
  .footer-brand-logo span {
    font-size: 20px;
  }
  
  .footer-brand p {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .footer-social {
    align-items: flex-start;
    margin-top: 12px;
  }
  
  .footer-links h4 {
    margin-bottom: 16px;
    font-size: 17px;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .footer-links ul li a {
    font-size: 15px;
  }
  
  .footer-contact p {
    margin-bottom: 8px;
    font-size: 15px;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-top: 30px;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    font-size: 15px;
  }
}

/* =====================
   Modal Styles
   ===================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  width: 95%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-content h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 14px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(32, 71, 244, 0.1);
}

.modal-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.modal-form .checkbox-group input[type="checkbox"] {
  width: auto;
  padding: 0;
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.close-modal:hover {
  color: var(--dark);
}

@media (min-width: 769px) {
  .modal-content {
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
  }
  
  .modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .modal-form {
    gap: 16px;
  }
  
  .modal-form input,
  .modal-form select,
  .modal-form textarea {
    padding: 16px;
  }
  
  .close-modal {
    top: 20px;
  }
}

/* =====================
   Utility Classes
   ===================== */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Touch improvements */
@media (max-width: 768px) {
  .btn,
  .toggle-btn,
  .feature-tile,
  .faq-item {
    min-height: 44px;
  }
  
  /* Prevent zoom on iOS */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* =====================
   Discord Float Button
   ===================== */
.discord-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #5865F2;
  color: white;
  border-radius: 999px;
  padding: 11px 13px;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.45);
  text-decoration: none;
  transition: gap 0.25s ease, padding 0.25s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.discord-float:hover {
  gap: 8px;
  padding: 11px 18px 11px 13px;
  box-shadow: 0 8px 32px rgba(88, 101, 242, 0.6);
  color: white;
}

.discord-float i {
  font-size: 19px;
  flex-shrink: 0;
  line-height: 1;
}

.discord-float-label {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.25s ease, opacity 0.2s ease 0.05s;
}

.discord-float:hover .discord-float-label {
  max-width: 140px;
  opacity: 1;
}

@media (max-width: 768px) {
  .discord-float {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 15px 20px;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(88, 101, 242, 0.35);
  }

  .discord-float-label {
    max-width: 200px;
    opacity: 1;
    font-size: 14px;
  }

  .discord-float:hover {
    gap: 10px;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(88, 101, 242, 0.35);
  }

  .discord-float i {
    font-size: 20px;
  }
}

