/* ========================================
   GROUNDZY.COM LANDING PAGE STYLES
   ======================================== */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Optimize animations for mobile */
  .hero-badge,
  .feature-card,
  .learn-more-btn {
    will-change: transform;
  }
  
  /* Reduce motion for better performance */
  .hero-badge,
  .feature-card {
    transition: transform 0.2s ease;
  }
}

/* ========================================
   GLOBAL LAYOUT & CONTAINERS
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(30, 60, 60, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(159, 239, 76, 0.1);
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(30, 60, 60, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0 24px 0 auto;
  padding: 0;
  gap: 2.2rem;
  align-items: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #F1F5F5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #9FEF4C;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #9FEF4C;
}

.nav-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-ctas .button {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  min-height: 40px;
}

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

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background: #9FEF4C;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 0;
  }
  
  .main-nav {
    padding: 0 16px;
  }
  
  .logo img {
    height: 36px;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(30, 60, 60, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 2rem 2rem 2rem;
    margin: 0;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(159, 239, 76, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
  }
  
  .nav-links.mobile-open {
    right: 0;
    display: flex !important;
    flex-direction: column;
  }
  
  .nav-links li {
    width: 100%;
    margin: 0;
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(159, 239, 76, 0.1);
    color: #F1F5F5;
    min-height: 48px; /* Better touch target */
    display: flex;
    align-items: center;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a:focus {
    color: #9FEF4C;
    background: rgba(159, 239, 76, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
  }
  
  .nav-ctas {
    display: none;
  }
  
  /* Mobile CTA in menu */
  .nav-links::after {
    content: '';
    display: block;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(159, 239, 76, 0.2);
  }
  
  .nav-links .mobile-cta {
    display: block !important;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  
  /* Hide mobile CTA by default on desktop */
  .mobile-cta {
    display: none;
  }
  
  .nav-links .mobile-cta .button {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    min-height: 48px;
    background-color: #9FEF4C;
    color: #1E3C3C;
    border-color: #9FEF4C;
  }
  
  .nav-links .mobile-cta .button:hover {
    background-color: #8DE43A;
    border-color: #8DE43A;
    color: #1E3C3C;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .main-nav {
    padding: 0 12px;
  }
  
  .logo img {
    height: 32px;
  }
  
  .nav-links {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu-btn {
    width: 28px;
    height: 28px;
  }
  
  .mobile-menu-btn span {
    height: 2px;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

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

/* ========================================
   HERO SECTION
   ======================================== */

/* Hero section with animated GIF background and overlay */
.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://firebasestorage.googleapis.com/v0/b/groundzy-live.firebasestorage.app/o/BG_Video%2F1771850-hd_1280_720_30fps%20(1).gif?alt=media&token=906f11b6-779d-44cd-8469-867884654bb4') center center / cover no-repeat;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 60, 60, 0.9); /* darker slate overlay for better readability */
  z-index: 2;
}
.hero > * {
  position: relative;
  z-index: 3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  max-width: 800px;
}

.hero-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  height: 180px;
  width: auto;
  transition: transform 0.3s ease;
}

.hero-logo img:hover {
  transform: scale(1.05);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #9FEF4C;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-learn-more {
  display: flex;
  justify-content: center;
  margin-top: 8rem; /* Moved much further down */
}

@media (max-width: 768px) {
  .hero-logo img {
    height: 135px;
  }
  
  .hero-learn-more {
    margin-top: 6rem; /* Moved much further down on mobile */
  }
}

.learn-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #9FEF4C;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.learn-more-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.arrow-down {
  transition: transform 0.3s ease;
  animation: arrowPulse 2s ease-in-out infinite;
  width: 32px;
  height: 32px;
}

/* Responsive arrow sizing for mobile */
@media (max-width: 768px) {
  .arrow-down {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .arrow-down {
    width: 20px;
    height: 20px;
  }
}

.learn-more-btn:hover .arrow-down {
  transform: translateY(2px);
  animation: none;
}

@keyframes arrowPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

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

.hero-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 60, 60, 0.1);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   DASHBOARD PREVIEW SECTION
   ======================================== */

.dashboard-preview {
  padding: 80px 0;
  background: #ffffff;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dashboard-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1rem;
}

.dashboard-header p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

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

.dashboard-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  width: 100%;
}

.dashboard-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-anti-flash-white);
  border-radius: 12px;
  border: 1px solid rgba(30, 60, 60, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-highlight .feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-highlight .feature-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark-slate-gray);
  margin-bottom: 0.5rem;
}

.feature-highlight .feature-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(30, 60, 60, 0.8);
  margin: 0;
}

/* ========================================
   TRUST INDICATORS SECTION
   ======================================== */

.trust-indicators {
  padding: 60px 0;
  background: #ffffff;
}

.trust-indicators h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark-slate-gray);
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-anti-flash-white);
  border-radius: 12px;
  border: 1px solid rgba(30, 60, 60, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-kelly-green);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-dark-slate-gray);
  font-weight: 500;
}

/* ========================================
   FEATURE SECTIONS
   ======================================== */

.feature-section {
  padding: 80px 0;
}

.feature-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.feature-badge {
  display: inline-block;
  background: var(--color-green-yellow);
  color: var(--color-dark-slate-gray);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.5rem;
}

/* Special styling for homeowners badge */
.homeowners-header .feature-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

/* Enhanced styling for all feature badges */
.platform-header .feature-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

.companies-trust .feature-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

.difference-header .feature-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

.faq-header .feature-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

.feature-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-dark-slate-gray);
}

.feature-header p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-content.reverse {
  direction: rtl;
}

.feature-content.reverse > * {
  direction: ltr;
}

.feature-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-dark-slate-gray);
}

.feature-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
  margin-bottom: 2rem;
}

/* ========================================
   FEATURES GRID SECTION
   ======================================== */

.features-grid {
  padding: 80px 0;
}

.features-grid .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.features-sidebar h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-dark-slate-gray);
}

.features-sidebar p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
  margin-bottom: 2rem;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(30, 60, 60, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark-slate-gray);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-dark-slate-gray);
}

.faq-header p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(30, 60, 60, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-dark-slate-gray);
  position: relative;
  list-style: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-kelly-green);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
  padding: 80px 0;
  background: #9FEF4C;
  text-align: center;
  color: #1E3C3C;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1E3C3C;
}

.final-cta p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: #1E3C3C;
}

.cta-subtext {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 2rem;
  margin-bottom: 0;
  color: #2a4a4a;
  padding-top: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--color-dark-slate-gray);
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 32px;
  margin-bottom: 1rem;
}

.footer-section p {
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.6;
}

/* ========================================
   HOMEOWNERS SECTION
   ======================================== */

.homeowners-section {
  padding: 80px 0;
  background: var(--color-dark-slate-gray);
}

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

.homeowners-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.homeowners-header p {
  font-size: 1.125rem;
  color: rgba(241, 245, 245, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.homeowners-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.homeowners-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
}

.homeowners-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.homeowners-feature .feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(159, 239, 76, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.homeowners-feature .feature-icon img {
  width: 24px;
  height: 24px;
}

.homeowners-feature .feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.homeowners-feature .feature-content p {
  font-size: 1rem;
  color: rgba(241, 245, 245, 0.8);
  line-height: 1.6;
  margin: 0;
}

.homeowners-preview {
  display: flex;
  justify-content: center;
}

.homeowners-preview .preview-container {
  background: var(--color-white);
  border: 1px solid rgba(30, 60, 60, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  width: 100%;
}

.homeowners-preview .preview-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.homeowners-preview .preview-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

.homeowners-preview .preview-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark-slate-gray);
  margin: 0;
}

.homeowners-cta {
  text-align: center;
  padding: 3rem;
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(30, 60, 60, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.homeowners-cta p {
  font-size: 1.25rem;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.homeowners-cta .cta-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Keep Exploring Button */
.homeowners-explore {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.explore-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #9FEF4C;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.explore-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.explore-btn .arrow-down {
  transition: transform 0.3s ease;
  animation: arrowPulse 2s ease-in-out infinite;
}

.explore-btn:hover .arrow-down {
  transform: translateY(2px);
  animation: none;
}

/* ========================================
   GROUNDZY FEATURES SECTION
   ======================================== */

.groundzy-features {
  padding: 80px 0;
  background: var(--color-white);
}

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

.features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-header p {
  font-size: 1.125rem;
  color: rgba(30, 60, 60, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-progression {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.progression-tier {
  background: var(--color-white);
  border: 2px solid rgba(30, 60, 60, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  min-width: 280px;
  flex: 1;
  max-width: 320px;
}

.progression-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-green-yellow);
}

.progression-tier.homeowners {
  border-color: rgba(159, 239, 76, 0.3);
}

.progression-tier.professionals {
  border-color: rgba(30, 60, 60, 0.2);
}

.progression-tier.enterprise {
  border-color: rgba(159, 239, 76, 0.5);
}

.tier-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark-slate-gray);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tier-header p {
  font-size: 0.9rem;
  color: rgba(30, 60, 60, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(159, 239, 76, 0.05);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: rgba(159, 239, 76, 0.1);
}

.feature-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-slate-gray);
  text-align: left;
}

.progression-arrow {
  font-size: 2rem;
  color: var(--color-green-yellow);
  font-weight: 700;
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.features-cta {
  text-align: center;
  padding: 3rem;
  background: var(--color-anti-flash-white);
  border-radius: 16px;
  border: 1px solid rgba(30, 60, 60, 0.1);
}

.features-cta p {
  font-size: 1.25rem;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.features-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .dashboard-header h2 {
    font-size: 2rem;
  }
  
  .dashboard-preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dashboard-features {
    gap: 1.5rem;
  }
  
  .feature-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .features-grid .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem; /* 24px spacing */
  }
  
  .learn-more-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-learn-more {
    margin-top: 4rem; /* Much more spacing from paragraph */
  }
  
  .dashboard-preview {
    padding: 60px 0;
  }
  
  .dashboard-header h2 {
    font-size: 2rem;
  }
  
  .feature-header h2,
  .features-sidebar h2,
  .faq-header h2,
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .features-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Homeowners Section Mobile */
  .homeowners-section {
    padding: 60px 0;
  }
  
  .homeowners-header {
    margin-bottom: 3rem;
  }
  
  .homeowners-header h2 {
    font-size: 2rem;
  }
  
  .homeowners-header p {
    font-size: 1rem;
    max-width: 500px;
  }
  
  .homeowners-showcase {
    padding: 0 1rem;
  }
  
  .homeowners-features {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .homeowners-feature {
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(159, 239, 76, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .homeowners-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(159, 239, 76, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .homeowners-feature .feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(159, 239, 76, 0.15);
    border-radius: 14px;
    border: 1px solid rgba(159, 239, 76, 0.2);
  }
  
  .homeowners-feature .feature-icon img {
    width: 28px;
    height: 28px;
  }
  
  .homeowners-feature .feature-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #F1F5F5;
    font-weight: 700;
  }
  
  .homeowners-feature .feature-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(241, 245, 245, 0.85);
    margin: 0;
  }
  
  .homeowners-cta {
    padding: 2rem;
  }
  
  .homeowners-explore {
    margin-top: 3rem;
  }
  
  .explore-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    min-height: 48px;
  }
  
  /* Groundzy Features Section Mobile */
  .groundzy-features {
    padding: 60px 0;
  }
  
  .features-header h2 {
    font-size: 2rem;
  }
  
  .features-progression {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .progression-tier {
    min-width: auto;
    max-width: none;
  }
  
  .progression-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
  
  .features-cta {
    padding: 2rem;
  }
  
  .features-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    letter-spacing: 0;
  }
  
  .feature-header h2,
  .features-sidebar h2,
  .faq-header h2,
  .final-cta h2 {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  /* Small mobile homeowners features */
  .homeowners-section {
    padding: 40px 0;
  }
  
  .homeowners-header h2 {
    font-size: 1.75rem;
  }
  
  .homeowners-showcase {
    padding: 0 0.5rem;
  }
  
  .homeowners-features {
    gap: 1.5rem;
    padding: 0;
  }
  
  .homeowners-feature {
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
  }
  
  .homeowners-feature .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  
  .homeowners-feature .feature-icon img {
    width: 24px;
    height: 24px;
  }
  
  .homeowners-feature .feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .homeowners-feature .feature-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .homeowners-explore {
    margin-top: 2rem;
  }
  
  .explore-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    min-height: 44px;
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

.hero-content,
.hero-visual,
.feature-card {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.nav-links a:focus,
.feature-card:focus,
.faq-item summary:focus {
  outline: none !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-badge,
  .feature-badge {
    border: 2px solid var(--color-dark-slate-gray);
  }
  
  .feature-card {
    border: 2px solid var(--color-dark-slate-gray);
  }
} 

/* Modern Footer Styles */
.site-footer-modern {
  background: #1E3C3C;
  color: #d6ffd6;
  padding: 0;
  margin-top: 0;
  font-family: 'Inter', sans-serif;
}
/* Footer layout adjustment for better spacing */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
  gap: 16px; /* Reduced gap for right columns */
}
.footer-col {
  flex: 1 1 160px;
  min-width: 140px;
  margin-bottom: 24px;
}
.about-col {
  flex: 2 1 340px; /* Give more space to the about/brand column */
  max-width: 400px;
  margin-right: 48px; /* Add extra space to push right columns together */
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-logo-modern {
  height: 32px;
  width: auto;
}
.footer-brand,
.footer-col h4,
.footer-col a {
  color: #9FEF4C !important;
  font-weight: 600;
}
.footer-desc,
.footer-contact-list,
.footer-col ul li {
  color: #F1F5F5 !important;
  font-weight: 400;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
}
.footer-social-icon img {
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-social-icon:hover img {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 2px 8px #9FEF4C44);
}
/* Unify all footer column heading styles */
.footer-col h4 {
  color: #9FEF4C !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* Remove/override previous specific heading rules */
.links-col h4, .resources-col h4, .contact-col h4 {
  color: #9FEF4C !important;
  font-size: 1.25rem !important;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li:last-child {
  margin-bottom: 0;
}
.footer-col a {
  color: #d6ffd6;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #9FEF4C;
  text-decoration: underline;
}
.footer-contact-list {
  font-size: 1rem;
}
.footer-contact-icon {
  color: inherit;
  font-size: 1.1em;
  margin-right: 8px;
}
.footer-bottom-modern {
  border-top: 1px solid #254646;
  text-align: center;
  color: #d6ffd6;
  font-size: 0.98rem;
  padding: 18px 0 8px 0;
  margin-top: 0;
  background: #1E3C3C;
}
/* Unify footer column list item and link styles */
.footer-col ul li,
.footer-col ul li a,
.footer-contact-list li,
.footer-contact-list li a {
  color: #F1F5F5 !important;
  font-weight: 400;
  font-size: 1rem;
}

.footer-col a:hover,
.footer-contact-list a:hover {
  color: #9FEF4C;
  text-decoration: underline;
}

/* Only headings and .footer-brand stay green */
.footer-col h4,
.footer-brand {
  color: #9FEF4C !important;
  font-weight: 600;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 0;
    padding: 36px 12px 12px 12px;
  }
  .footer-col {
    min-width: 0;
    margin-bottom: 32px;
  }
  .about-col {
    max-width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .footer-container {
    padding: 24px 4vw 8px 4vw;
  }
  .footer-col {
    margin-bottom: 24px;
  }
  .footer-logo-modern {
    height: 28px;
  }
  .footer-brand {
    font-size: 1.1rem;
  }
} 

/* Highlight yellow-green for pricing section headline */
.highlight-yellowgreen {
  color: #9FEF4C !important;
  font-weight: 800;
  letter-spacing: 0.01em;
} 

/* ========================================
   COMPANIES TRUST SECTION
   ======================================== */

.companies-trust {
  background: #1E3C3C;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.companies-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.companies-trust .feature-badge {
  display: inline-block;
  background: var(--color-green-yellow);
  color: var(--color-dark-slate-gray);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.companies-title {
  color: #9FEF4C;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.companies-subtitle {
  color: #e0ece9;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.companies-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 0;
  text-align: center;
}

.company-logo {
  display: block;
  width: 80px;
  height: 80px;
  opacity: 0.92;
  transition: opacity 0.2s, transform 0.2s;
}

.company-logo:hover {
  opacity: 1;
  transform: scale(1.07);
}

@media (max-width: 700px) {
  .companies-trust {
    min-height: 100vh;
    padding: 40px 0;
  }
  .companies-title {
    font-size: 2rem;
  }
  .companies-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .companies-logos {
    gap: 24px;
  }
  .company-logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .companies-logos {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 16px 0 !important;
  }
  .company-logo {
    width: 80px !important;
    height: 80px !important;
  }
  .companies-trust {
    min-height: 100vh !important;
    padding: 20px 0 !important;
  }
} 

.footer-logo img,
.footer-logo-modern img {
  height: 48px;
  width: auto;
}

@media (max-width: 700px) {
  .logo img,
  .footer-logo img,
  .footer-logo-modern img {
    height: 36px;
  }
} 

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
    margin: 0 8px 0 auto;
  }
}
@media (max-width: 700px) {
  .nav-links {
    gap: 1rem;
    margin: 0;
  }
  
  .hero {
    padding: 60px 0 32px;
    min-height: 100vh;
  }
  .hero-content h1 {
    font-size: 2rem;
    word-break: break-word;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .hero-learn-more {
    margin-top: 1rem;
  }
  .dashboard-preview {
    padding: 32px 0;
  }
  .dashboard-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .dashboard-image-container {
    min-width: 0;
    height: 220px !important;
  }
  .dashboard-image-container > div {
    height: 220px !important;
    font-size: 1rem !important;
  }
  .dashboard-features {
    gap: 0.7rem;
  }
  .feature-highlight .feature-icon img {
    width: 28px;
    height: 28px;
  }
  .companies-trust {
    min-height: 100vh;
    padding: 20px 0;
  }
  .companies-title {
    font-size: 1.75rem;
  }
  .companies-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .companies-logos {
    gap: 10px;
  }
  .company-logo {
    width: 80px;
    height: 80px;
  }
  .site-footer-modern {
    padding: 0;
  }
  .footer-container {
    flex-direction: column;
    padding: 32px 20px 16px 20px;
    gap: 24px;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 0;
    width: 100%;
  }
  .about-col {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .footer-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
  }
  .footer-logo-modern {
    height: 56px;
    margin-bottom: 0;
  }
  .footer-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-socials {
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
  }
  .footer-social-icon {
    width: 24px;
    height: 24px;
  }
  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: center;
  }
  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-col ul li {
    margin-bottom: 0;
    text-align: center;
  }
  .footer-col ul li a {
    font-size: 0.95rem;
    padding: 8px 0;
    display: inline-block;
    min-height: 44px;
    line-height: 1.4;
  }
  .footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    min-height: 44px;
    text-align: center;
  }
  .footer-contact-icon {
    margin-right: 0;
    display: flex;
    align-items: center;
  }
  .footer-contact-icon img {
    width: 16px;
    height: 16px;
  }
  .footer-bottom-modern {
    font-size: 0.9rem;
    padding: 16px 20px 12px 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 36px 0 16px;
    min-height: 100vh;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .dashboard-image-container > div {
    height: 120px !important;
    font-size: 0.8rem !important;
  }
  .company-logo {
    width: 80px;
    height: 80px;
  }
  
  /* Improve mobile spacing */
  .container {
    padding: 0 16px;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  /* Better mobile navigation */
  .nav-links {
    width: 100%;
    right: -100%;
  }
  
  .nav-links.mobile-open {
    right: 0;
  }
  
  /* Improve mobile buttons */
  .button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .button + .button {
    margin-left: 0;
  }
  
  /* Fix mobile pricing cards */
  .plan-card {
    padding: 1.5rem !important;
  }
  
  .plan-features li {
    font-size: 0.9rem !important;
    padding: 0.4rem 0 !important;
  }
  
  /* Enhanced mobile footer improvements */
  .footer-container {
    padding: 24px 16px 12px 16px;
    gap: 20px;
  }
  .footer-desc {
    font-size: 0.9rem;
    max-width: 350px;
  }
  .footer-socials {
    gap: 12px;
  }
  .footer-social-icon {
    width: 22px;
    height: 22px;
  }
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .footer-col ul li a {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  .footer-contact-list li {
    font-size: 0.9rem;
    gap: 6px;
  }
  .footer-contact-icon img {
    width: 14px;
    height: 14px;
  }
  .footer-bottom-modern {
    font-size: 0.85rem;
    padding: 12px 16px 8px 16px;
  }
} 

@media (max-width: 480px) {
  .hero-content h1,
  .dashboard-header h2,
  .feature-header h2,
  .features-sidebar h2,
  .faq-header h2,
  .final-cta h2,
  .companies-title,
  .pricing-header h1 {
    font-size: 2.3rem !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-bottom: 2.5rem !important;
    letter-spacing: 0 !important;
  }
} 

.plan-price {
  color: #9FEF4C !important;
} 

.plan-card.featured {
  background: rgba(159,239,76,0.04) !important;
} 

/* Removed conflicting badge rule to fix duplicate badge issue */ 

.plan-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%) !important;
  color: #1E3C3C !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 0.3rem 0.8rem !important;
  border-radius: 8px !important;
  min-width: unset !important;
  width: auto !important;
  display: inline-block !important;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3) !important;
  letter-spacing: 0.5px !important;
} 

/* ========================================
   PROFESSIONAL PLATFORM SECTION
   ======================================== */

.professional-platform {
  padding: 80px 0;
  background: #ffffff;
}

.platform-header {
  text-align: center;
  margin-bottom: 2rem;
}

.platform-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1rem;
}

.platform-header p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.platform-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-feature {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-anti-flash-white);
  border-radius: 10px;
  border: 1px solid rgba(30, 60, 60, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: auto;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

.platform-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.platform-feature .feature-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

.platform-feature .feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(159, 239, 76, 0.1);
  border-radius: 8px;
  border: 2px solid rgba(159, 239, 76, 0.2);
}

.platform-feature .feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark-slate-gray);
  margin-bottom: 0.5rem;
}

.platform-feature .feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.9);
  margin-bottom: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 0.875rem;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: rgba(30, 60, 60, 0.85);
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-kelly-green);
  font-weight: 700;
  font-size: 0.8rem;
}

.platform-preview {
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.preview-container {
  background: var(--color-dark-slate-gray);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(159, 239, 76, 0.2);
  max-width: 500px;
  margin: 0 auto;
}

.preview-header {
  background: rgba(159, 239, 76, 0.1);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(159, 239, 76, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.preview-badge {
  background: linear-gradient(135deg, #9FEF4C 0%, #7ED321 100%);
  color: #1E3C3C;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(159, 239, 76, 0.3);
}

.preview-header h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.preview-content {
  padding: 1.5rem;
}

.map-preview {
  margin-bottom: 1.5rem;
}

.map-interface {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2d5a5a 0%, #1e3c3c 100%);
  border-radius: 8px;
  overflow: hidden;
}

.tree-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.tree-marker:hover {
  transform: scale(1.1);
}

.tree-marker:hover .gz-tin {
  opacity: 1 !important;
}

.marker-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gz-tin {
  background: rgba(159, 239, 76, 0.9);
  color: var(--color-dark-slate-gray);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.75rem;
  color: var(--color-white);
}

.property-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.property-info p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.8;
}

.history-preview {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--color-green-yellow);
}

.timeline-item .date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  min-width: 80px;
}

.timeline-item .action {
  font-size: 0.85rem;
  color: var(--color-white);
  font-weight: 500;
  flex: 1;
}

.timeline-item .tree {
  font-size: 0.75rem;
  color: var(--color-green-yellow);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

.platform-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-anti-flash-white);
  border-radius: 16px;
  border: 1px solid rgba(30, 60, 60, 0.1);
}

.platform-cta p {
  font-size: 1.125rem;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 0.9rem;
  color: rgba(30, 60, 60, 0.6);
  margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .platform-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .platform-features {
    order: 2;
  }
  
  .platform-preview {
    order: 1;
    position: relative;
    top: auto;
  }
}

@media (min-width: 1200px) {
  .platform-showcase {
    gap: 5rem;
  }
  
  .platform-feature {
    padding: 2.5rem;
  }
  
  .platform-feature .feature-icon {
    width: 72px;
    height: 72px;
  }
  
  .platform-feature .feature-content h3 {
    font-size: 1.375rem;
  }
  
  .platform-feature .feature-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .professional-platform {
    padding: 40px 0;
  }
  
  .platform-header h2 {
    font-size: 1.75rem;
  }
  
  .platform-feature {
    padding: 1rem;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    gap: 0.125rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .platform-header h2 {
    font-size: 1.75rem;
  }
  
  .platform-feature .feature-content h3 {
    font-size: 1.125rem;
  }
  
  .preview-content {
    padding: 1rem;
  }
  
  .map-interface {
    height: 150px;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .tree-marker {
    transform: none;
  }
  
  .tree-marker:hover {
    transform: scale(1.05);
  }
  
  .tree-marker .marker-icon {
    width: 20px !important;
    height: 20px !important;
  }
  
  /* Mobile-specific marker positioning adjustments */
  .tree-marker:nth-child(1) {
    top: 28% !important;
    left: 16% !important;
  }
  
  .tree-marker:nth-child(2) {
    top: 46% !important;
    left: 14% !important;
  }
  
  .tree-marker:nth-child(3) {
    top: 66% !important;
    left: 16% !important;
  }
  
  .tree-marker:nth-child(4) {
    top: 30% !important;
    left: 43% !important;
  }
  
  .tree-marker:nth-child(5) {
    top: 43% !important;
    left: 56% !important;
  }
  
  .tree-marker:nth-child(6) {
    top: 68% !important;
    left: 43% !important;
  }
  
  /* Mobile timeline fixes to prevent Groundzy codes from breaking */
  .timeline-item {
    padding: 0.25rem !important;
    gap: 0.5rem !important;
  }
  
  .timeline-item .date {
    min-width: 70px !important;
    font-size: 0.7rem !important;
  }
  
  .timeline-item .action {
    font-size: 0.8rem !important;
    flex: 0.8 !important;
  }
  
  .timeline-item .tree {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
  }
} 

/* ========================================
   THE GROUNDZY DIFFERENCE SECTION
   ======================================== */

.groundzy-difference {
  padding: 80px 0;
  background: var(--color-anti-flash-white);
}

.difference-header {
  text-align: center;
  margin-bottom: 3rem;
}

.difference-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1rem;
}

.difference-header p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(30, 60, 60, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.difference-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.comparison-column {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 60, 60, 0.1);
}

.comparison-column.before {
  border-left: 4px solid #ff6b6b;
}

.comparison-column.after {
  border-left: 4px solid var(--color-kelly-green);
}

.comparison-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.comparison-header .before-icon,
.comparison-header .after-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.comparison-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark-slate-gray);
  margin-bottom: 0.5rem;
}

.comparison-header p {
  font-size: 0.875rem;
  color: rgba(30, 60, 60, 0.7);
  margin: 0;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  position: relative;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: rgba(30, 60, 60, 0.8);
  border-bottom: 1px solid rgba(30, 60, 60, 0.1);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li::before {
  position: absolute;
  left: 0;
  top: 0.75rem;
  font-weight: 600;
}

.before .comparison-list li::before {
  content: "✗";
  color: #ff6b6b;
}

.after .comparison-list li::before {
  content: "✓";
  color: var(--color-kelly-green);
}

.comparison-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-dark-slate-gray);
  font-weight: 600;
}

.comparison-divider .arrow {
  font-size: 2rem;
  color: var(--color-kelly-green);
  animation: arrowPulse 2s infinite;
}

.comparison-divider span {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.difference-cta {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(30, 60, 60, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.difference-cta p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark-slate-gray);
  margin-bottom: 1.5rem;
}

.difference-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ========================================
   RESPONSIVE DESIGN FOR DIFFERENCE SECTION
   ======================================== */

@media (max-width: 1024px) {
  .difference-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .groundzy-difference {
    padding: 60px 0;
  }
  
  .difference-header h2 {
    font-size: 2rem;
  }
  
  .comparison-column {
    padding: 1.5rem;
  }
  
  .difference-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .difference-cta .cta-buttons .button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .difference-header h2 {
    font-size: 1.75rem;
  }
  
  .comparison-column {
    padding: 1rem;
  }
  
  .comparison-list li {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    padding-left: 1.25rem;
  }
} 

 