/* --------------------------------------------------------------------------
   The Mate Platform - Main Stylesheet
   Brand Colors:
   - Primary Dark Navy: #0f1b2d
   - Secondary Accent Blue: #3b82f6
   - ManageMate Teal: #0f766e
   - MineMate Orange: #f97316
   - BuildMate Red: #dc2626
   - HaulMate Blue: #3b82f6
   - FlightMate Sky Blue: #2563eb
   - FlexiMate Purple: #8b5cf6
   - ApprenticeMate Green: #059669
   -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #0f1b2d;
  --bg-dark-surface: #172a45;
  --bg-dark-card: #1e3a5f;
  --bg-light: #f8fafc;
  --bg-light-alt: #f1f5f9;
  --bg-white: #ffffff;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;

  --primary-accent: #3b82f6;
  --primary-accent-hover: #2563eb;
  --border-color: #e2e8f0;
  --border-dark: #334155;

  /* Sub-App Specific Colors */
  --app-managemate: #0f766e;
  --app-minemate: #f97316;
  --app-buildmate: #dc2626;
  --app-haulmate: #3b82f6;
  --app-flightmate: #2563eb;
  --app-fleximate: #8b5cf6;
  --app-apprenticemate: #059669;

  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --container-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary-accent-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
}


/* App Logo Images (replacing letter-squares and SVG icons) */

/* Dropdown small logo images */
.dropdown-item .app-icon-sm-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

/* App card logo images (index.html app cards) */
.app-card-logo {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* App card icon container now holds a logo image instead of SVG */
.app-card-icon {
  overflow: hidden;
}

/* Hero section logo (individual app pages) */
.app-hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--text-light-muted);
}

.section-alt {
  background-color: var(--bg-light-alt);
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  max-width: 768px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-primary {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-light {
  background-color: #e2e8f0;
  color: #334155;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.btn-outline-dark:hover {
  background-color: var(--bg-light-alt);
  border-color: #cbd5e1;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}

.brand-logo .brand-highlight {
  color: #60a5fa;
  font-weight: 700;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav .nav-link {
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #ffffff;
}

.site-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle .arrow {
  font-size: 0.55rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.nav-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 340px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0,0,0,0.02);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Arrow notch on dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  border-radius: 3px 0 0 0;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.15s;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.dropdown-item .app-icon-sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  line-height: 1;
}

.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dropdown-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.dropdown-text small {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
  font-weight: 400;
}

.dropdown-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA button in nav */
.site-nav .header-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.site-nav .header-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Mobile toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile */
@media (max-width: 991px) {
  .header-container {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.5rem;
  }

  .site-nav.nav-open,
  .site-nav.active {
    display: flex;
  }

  .site-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.95rem;
  }

  .site-nav .nav-link.active::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.25rem;
    margin: 0.25rem 0 0.75rem 0.5rem;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-item {
    padding: 0.625rem 0.75rem;
  }

  .dropdown-text strong {
    color: #f1f5f9;
  }

  .dropdown-text small {
    color: #94a3b8;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav .header-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
    width: 100%;
  }
}

.hero-feature-card:hover {
  transform: translateX(-5px);
  border-color: rgba(59, 130, 246, 0.5);
}

.hero-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.hero-card-info h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.hero-card-info p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Section: What is The Mate Platform */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.feature-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.feature-box-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.feature-box p {
  font-size: 0.975rem;
  line-height: 1.6;
}

/* Section: The 7 Apps Grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

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

.app-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--card-accent, var(--primary-accent));
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 0, 0, 0.12);
}

.app-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.app-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--card-accent, var(--primary-accent));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--bg-light-alt);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.app-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.app-target {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--card-accent, var(--primary-accent));
  margin-bottom: 1rem;
}

.app-description {
  font-size: 0.975rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.app-features-list {
  list-style: none;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.app-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.app-features-list li svg {
  color: var(--card-accent, var(--primary-accent));
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.app-card-footer {
  margin-top: auto;
}

.app-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background-color: var(--bg-light-alt);
  color: var(--text-primary) !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.app-card:hover .app-link-btn {
  background-color: var(--card-accent, var(--primary-accent));
  color: #ffffff !important;
  border-color: var(--card-accent, var(--primary-accent));
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

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

.why-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.4);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.why-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.industry-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.industry-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-light-alt);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.industry-app-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-accent);
}

/* Pricing Section */
.pricing-cta-box {
  background: linear-gradient(135deg, #0f1b2d 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.pricing-cta-box h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.pricing-cta-box p {
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
}

.pricing-features-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.pricing-feature-item svg {
  color: #3b82f6;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

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

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p, .contact-info-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info-text a:hover {
  color: var(--primary-accent);
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C64748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand p {
  color: #94a3b8;
  font-size: 0.925rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8 !important;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff !important;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #94a3b8 !important;
}

.footer-bottom-links a:hover {
  color: #ffffff !important;
}

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

/* =========================================================================
   REDESIGNED HOMEPAGE STYLES (v2)
   ========================================================================= */

/* ===== HERO SECTION (Redesigned) ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0a1628;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://media.base44.com/images/public/6a6c09517e8093a7763cce37/2c689ffdb_generated_image.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.85) 60%, rgba(10, 22, 40, 0.98) 100%);
  z-index: 2;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  color: #60a5fa;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0.5rem 1rem; }
  .hero-stat-num { font-size: 1.5rem; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.3);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-eyebrow-light {
  color: #60a5fa;
}

.section-header-light h2,
.section-header-light .section-title {
  color: #ffffff !important;
}

.section-header-light p,
.section-header-light .section-subtitle {
  color: #94a3b8 !important;
}

/* ===== APP CARDS (Redesigned) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.app-card {
  display: block;
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--card-accent);
  border-color: transparent;
}

.app-card-accent-bar {
  height: 4px;
  width: 100%;
  border-radius: 0;
  margin-bottom: 0;
}

.app-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.app-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-b2b {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.badge-b2c {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.badge-hybrid {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.app-card-body {
  padding: 1rem 1.5rem;
}

.app-card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.app-tagline-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.app-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.learn-more-link {
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.app-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.app-card:hover .app-arrow {
  background: var(--card-accent);
}

.app-card:hover .app-arrow svg {
  color: #ffffff !important;
  stroke: #ffffff;
}

.app-card:hover .app-arrow {
  transform: translateX(4px);
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section {
  position: relative;
  padding: 5rem 0;
  background: #0a1628;
  overflow: hidden;
}

.ecosystem-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://media.base44.com/images/public/6a6c09517e8093a7763cce37/de0e75ae1_generated_image.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.ecosystem-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.ecosystem-content {
  position: relative;
  z-index: 10;
}

.ecosystem-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.ecosystem-orb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 5;
}

.ecosystem-orb:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orb-color);
  transform: scale(1.05);
  color: #ffffff;
}

.ecosystem-orb-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orb-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--orb-color);
}


.ecosystem-orb-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.ecosystem-center {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0;
}

.ecosystem-center-inner {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.15);
  border: 2px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.ecosystem-visual {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.ecosystem-center {
  order: 0;
}

.ecosystem-orb {
  order: 1;
}

@media (min-width: 768px) {
  .ecosystem-visual {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 900px;
    margin: 3rem auto 0;
  }
  
  .ecosystem-center {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .ecosystem-orb {
    flex: 0 1 auto;
  }
}

/* ===== FEATURES GRID (Why Us) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0f1b2d 0%, #1e3a5f 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #ffffff !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: #94a3b8;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 40px;
  }
  
  .hero-stats-bar {
    gap: 0;
    padding: 1rem 0;
  }
  
  .hero-stat {
    padding: 0.5rem 0.75rem;
  }
  
  .hero-stat-num {
    font-size: 1.5rem;
  }
  
  .hero-stat-label {
    font-size: 0.65rem;
  }
  
  .hero-scroll-hint {
    display: none;
  }
}

/* ===== PRICING PAGE ===== */

.pricing-app-block {
  margin: 2.5rem 0;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--app-color, #2563eb);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pricing-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-app-title {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.pricing-app-title .app-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-app-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

.pricing-app-title .app-tagline-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 2px;
}

.pricing-app-header .hero-actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.btn-minemate { background:#f97316; color:#fff; }
.btn-minemate:hover { background:#ea580c; color:#fff; }
.btn-managemate { background:#0d9488; color:#fff; }
.btn-managemate:hover { background:#0f766e; color:#fff; }
.btn-flightmate { background:#2563eb; color:#fff; }
.btn-flightmate:hover { background:#1d4ed8; color:#fff; }
.btn-buildmate { background:#dc2626; color:#fff; }
.btn-buildmate:hover { background:#b91c1c; color:#fff; }
.btn-haulmate { background:#0EA5E9; color:#fff; }
.btn-haulmate:hover { background:#0284c7; color:#fff; }
.btn-fleximate { background:#8b5cf6; color:#fff; }
.btn-fleximate:hover { background:#7c3aed; color:#fff; }
.btn-apprenticemate { background:#f59e0b; color:#fff; }
.btn-apprenticemate:hover { background:#d97706; color:#fff; }

.btn-outline-dark {
  background: transparent;
  color: #334155;
  border: 1.5px solid #cbd5e1;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-dark:hover {
  border-color: #475569;
  color: #1e293b;
  background: #f8fafc;
}

/* Pricing cards grid */
.pricing-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  border-color: #94a3b8;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.pricing-card.featured {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 12px;
  right: -28px;
  background: #2563eb;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 32px;
  transform: rotate(35deg);
  white-space: nowrap;
}

.pricing-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-card-title {
  color: #93c5fd;
}

.pricing-card-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.pricing-card-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
}

.pricing-card.featured .pricing-card-price {
  color: #fff;
}

.pricing-card.featured .pricing-card-price span {
  color: #94a3b8;
}

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

.pricing-features li {
  font-size: 0.875rem;
  color: #475569;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--app-color, #2563eb);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li {
  color: #cbd5e1;
  border-bottom-color: #1e293b;
}

.pricing-card.featured .pricing-features li::before {
  color: #60a5fa;
}

/* Pricing page hero adjustments */
.pricing-page .hero-section {
  padding-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-app-block {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }
  
  .pricing-app-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pricing-cards-wrapper {
    grid-template-columns: 1fr;
  }
  
  .pricing-card-price {
    font-size: 1.75rem;
  }
}

/* Pricing notice banner */
.pricing-notice-banner {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem;
  background: #f1f5f9;
  border-radius: 12px;
}

.pricing-notice-banner p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* Compact hero for inner pages */
.hero-compact {
  min-height: auto;
  padding: 80px 0 40px;
}

.hero-compact .hero-title {
  font-size: 2.25rem;
}

.hero-compact .hero-subtitle {
  font-size: 1.05rem;
  max-width: 640px;
}

/* ===== APP HERO HEADER (on app landing pages) ===== */
.app-hero-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-title-twotone {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.app-hero-header .app-tagline-text {
  margin-top: 4px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.6);
}

/* ===== ADVANTAGE ICON (feature cards on app pages) ===== */
.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

/* Feature cards on light sections need proper icon backgrounds */
.section .feature-card .advantage-icon {
  background-color: rgba(37, 99, 235, 0.1) !important;
  color: #2563eb !important;
}

/* Override per-app accent on advantage icons */
.section .feature-card[data-app-color] .advantage-icon {
  background-color: rgba(0,0,0,0.05) !important;
}

/* ===== APP LANDING PAGE - HERO COMPACT (already added for pricing, ensure it covers app pages) ===== */
.hero-compact .app-hero-header {
  margin-top: 0.5rem;
}

/* ===== SECTION HEADING for app pages ===== */
.app-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.5rem;
}

/* ===== PRICING CTA BOX on app pages ===== */
.pricing-cta-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.pricing-cta-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-cta-box p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.5rem;
  }
  
  .site-nav.nav-open,
  .site-nav.active {
    display: flex;
  }
  
  .site-nav .nav-dropdown {
    width: 100%;
  }
  
  .site-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .site-nav .header-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* CTA arrow */
.cta-arrow {
  font-size: 0.9em;
  margin-left: 0.25rem;
  transition: transform 0.2s;
}

.header-cta:hover .cta-arrow {
  transform: translateX(3px);
}
