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

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */

:root {
  /* Primary Colors */
  --xero-primary-blue: #007bff;
  --xero-primary-blue-alt: #108ee9;
  --xero-dark-blue: #132b4e;
  --xero-bright-blue: #00BFFF;
  
  /* Neutral Colors */
  --xero-white: #ffffff;
  --xero-dark-gray: #333333;
  --xero-dark-gray-alt: #212529;
  --xero-medium-gray: #666666;
  --xero-medium-gray-alt: #555555;
  --xero-light-gray: #f8f9fa;
  --xero-light-gray-alt: #f5f5f5;
  --xero-light-bg: #F5F8FA;
  --xero-border-gray: #e0e0e0;
  --xero-border-gray-alt: #cccccc;
  --xero-placeholder-gray: #999999;
  
  /* Status Colors */
  --xero-green: #28a745;
  --xero-green-alt: #4CAF50;
  --xero-red: #dc3545;
  --xero-secondary-blue: #66b3ff;
  --xero-teal: #2ECC71;
  
  /* Typography */
  --xero-font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, Helvetica, sans-serif;
  --xero-font-size-nav: 16px;
  --xero-font-size-body: 14px;
  --xero-font-size-label: 14px;
  --xero-font-size-small: 14px;
  
  /* Spacing */
  --xero-spacing-xs: 4px;
  --xero-spacing-sm: 8px;
  --xero-spacing-md: 16px;
  --xero-spacing-lg: 24px;
  --xero-spacing-xl: 32px;
  --xero-spacing-xxl: 48px;
  --xero-spacing-xxxl: 64px;
  
  /* Border Radius */
  --xero-radius-sm: 3px;
  --xero-radius-md: 4px;
  --xero-radius-lg: 5px;
  
  /* Shadows */
  --xero-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --xero-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
  --xero-shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--xero-font-family);
  color: var(--xero-dark-gray);
  background-color: var(--xero-white);
  line-height: 1.6;
  font-size: var(--xero-font-size-body);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--xero-spacing-lg);
}

.container-wide {
  max-width: 1600px;
}

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

.main-header {
  background-color: var(--xero-white);
  border-bottom: 1px solid var(--xero-border-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--xero-shadow-sm);
  overflow: visible;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--xero-spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  overflow: visible;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

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

.logo {
  height: 30px;
  width: auto;
  display: block;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--xero-spacing-xl);
  align-items: center;
}

.nav-link {
  color: var(--xero-dark-gray);
  text-decoration: none;
  font-size: var(--xero-font-size-nav);
  font-weight: 400;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--xero-primary-blue);
}

/* Underline effect for regular nav links */
.nav-item:not(.dropdown) > .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--xero-primary-blue);
  transition: width 0.2s ease;
}

.nav-item:not(.dropdown) > .nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: var(--xero-spacing-md);
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--xero-spacing-sm);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--xero-dark-gray);
  transition: all 0.3s ease;
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--xero-spacing-sm) var(--xero-spacing-md);
  font-size: var(--xero-font-size-nav);
  font-weight: 400;
  text-decoration: none;
  border-radius: var(--xero-radius-md);
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--xero-font-family);
}

.btn-primary {
  background-color: var(--xero-teal);
  color: var(--xero-white);
  border-color: var(--xero-teal);
}

.btn-primary:hover {
  background-color: #27ae60;
  border-color: #27ae60;
  color: var(--xero-white);
}

.btn-secondary {
  background-color: var(--xero-white);
  color: var(--xero-primary-blue);
  border-color: var(--xero-border-gray-alt);
}

.btn-secondary:hover {
  border-color: var(--xero-primary-blue);
  color: var(--xero-primary-blue);
  background-color: var(--xero-light-gray);
}

.btn-large {
  padding: 12px 24px;
  font-size: 16px;
}

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

.hero-section {
  background-color: #142B4E;
  background: linear-gradient(135deg, #142B4E 0%, #1a3a5e 100%);
  padding: var(--xero-spacing-xxxl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--xero-white);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xero-spacing-xxxl);
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: none;
  width: 100%;
}

.hero-headline {
  font-size: 72px;
  font-weight: 700;
  color: var(--xero-white);
  line-height: 1.1;
  margin-bottom: var(--xero-spacing-lg);
  letter-spacing: -0.02em;
}

.hero-subheader {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--xero-spacing-xl);
  line-height: 1.4;
  font-weight: 300;
}

.hero-cta {
  margin-top: var(--xero-spacing-xl);
}

.hero-section .btn-primary {
  background-color: #1a3a5e;
  color: var(--xero-white);
  border-color: #1a3a5e;
  font-weight: 500;
}

.hero-section .btn-primary:hover {
  background-color: #234a6e;
  color: var(--xero-white);
  border-color: #234a6e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-section .btn-secondary {
  background-color: var(--xero-white);
  color: #142B4E;
  border-color: var(--xero-white);
  font-weight: 500;
}

.hero-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #142B4E;
  border-color: var(--xero-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-main-image {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-width: 600px;
  object-fit: contain;
}

.hero-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--xero-light-gray) 0%, var(--xero-border-gray) 100%);
  border-radius: 8px;
  margin: 0 auto;
}

.hero-content-centered {
  grid-template-columns: 1fr !important;
  justify-items: center;
}

.hero-text-centered {
  max-width: 1000px;
  text-align: center;
}

.hero-text-centered .hero-headline,
.hero-text-centered .hero-subheader {
  text-align: center;
}

.hero-text-centered .trial-badge {
  margin-top: var(--xero-spacing-xl);
  display: inline-flex;
}

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

.section {
  padding: var(--xero-spacing-xxxl) 0;
  background-color: var(--xero-white);
}

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

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xero-spacing-xxxl);
  align-items: center;
}

.section-reverse {
  direction: rtl;
}

.section-reverse > * {
  direction: ltr;
}

.section-text-center {
  text-align: center;
  grid-column: 1 / -1;
}

.section-headline {
  font-size: 50px;
  font-weight: 700;
  color: var(--xero-dark-gray);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: var(--xero-spacing-lg);
}

.section-description {
  font-size: 18px;
  color: var(--xero-medium-gray);
  line-height: 1.6;
  margin-bottom: var(--xero-spacing-xl);
}

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

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xero-spacing-lg);
  margin-top: var(--xero-spacing-xl);
}

.feature-box {
  background-color: var(--xero-white);
  padding: var(--xero-spacing-lg);
  border-radius: var(--xero-radius-md);
  box-shadow: var(--xero-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--xero-shadow-md);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--xero-dark-gray);
  margin-bottom: var(--xero-spacing-sm);
}

.feature-description {
  font-size: var(--xero-font-size-body);
  color: var(--xero-medium-gray);
  line-height: 1.6;
}

/* ============================================
   CHECKLIST
   ============================================ */

.checklist {
  list-style: none;
  margin: var(--xero-spacing-xl) 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--xero-spacing-md);
  margin-bottom: var(--xero-spacing-md);
  font-size: 16px;
  color: var(--xero-dark-gray);
}

.checkmark {
  flex-shrink: 0;
  margin-top: 2px;
}

.section-cta {
  margin-top: var(--xero-spacing-lg);
}

.link-cta {
  color: var(--xero-primary-blue);
  text-decoration: underline;
  font-size: var(--xero-font-size-body);
  font-weight: 500;
}

.link-cta:hover {
  color: var(--xero-primary-blue-alt);
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */

.placeholder-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--xero-light-gray) 0%, var(--xero-border-gray) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-content {
  color: var(--xero-medium-gray);
  font-size: 18px;
  text-align: center;
}

.person-image {
  background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
}

.person-image img.image-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conversion-image {
  background: linear-gradient(135deg, #f0f8f0 0%, #e0f0e0 100%);
}

.conversion-image img.image-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-image {
  background: linear-gradient(135deg, var(--xero-light-gray) 0%, var(--xero-border-gray) 100%);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.mobile-image img.image-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circular-frame {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay-phone {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  height: 200px;
  background-color: var(--xero-bright-blue);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--xero-shadow-lg);
}

.phone-graphic {
  width: 100%;
  height: 100%;
  background-color: var(--xero-white);
  border-radius: 15px;
  padding: 15px;
}

.phone-screen-small {
  width: 100%;
  height: 100%;
}

.chart-graphic {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--xero-secondary-blue) 0%, var(--xero-primary-blue) 100%);
  border-radius: 8px;
}

.arrow-mobile {
  position: absolute;
  top: 100px;
  left: 140px;
  width: 60px;
  height: 2px;
  background-color: var(--xero-bright-blue);
  transform: rotate(-30deg);
}

.arrow-mobile::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--xero-bright-blue);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.testimonial-photo {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  height: auto;
  min-height: 300px;
}

.testimonial-photo img.image-content {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================
   PERFORMANCE VISUALIZATION
   ============================================ */

.performance-visualization {
  margin-top: var(--xero-spacing-xl);
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  width: 100%;
}

.performance-logo {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.performance-logo-image {
  width: auto;
  max-width: 100%;
  height: 120%;
  object-fit: contain;
  object-position: center top;
}

.dashboard-placeholder {
  background-color: var(--xero-white);
  border-radius: var(--xero-radius-md);
  padding: var(--xero-spacing-xl);
  box-shadow: var(--xero-shadow-sm);
}

.dashboard-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--xero-spacing-xl);
}

.metric-box {
  text-align: center;
  padding: var(--xero-spacing-lg);
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--xero-primary-blue);
  margin-bottom: var(--xero-spacing-sm);
}

.metric-label {
  font-size: var(--xero-font-size-body);
  color: var(--xero-medium-gray);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.section-testimonial {
  background-color: var(--xero-light-bg);
  padding: var(--xero-spacing-xxxl) 0;
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  margin-bottom: var(--xero-spacing-xxxl);
}

.quote-text {
  font-size: 32px;
  font-weight: 600;
  color: var(--xero-dark-gray);
  line-height: 1.4;
  display: block;
  position: relative;
  padding: 0 var(--xero-spacing-xl);
}

.quote-text::before {
  content: '"';
  font-size: 60px;
  color: var(--xero-primary-blue);
  position: absolute;
  left: -20px;
  top: -20px;
  opacity: 0.3;
}

.quote-text::after {
  content: '"';
  font-size: 60px;
  color: var(--xero-primary-blue);
  position: absolute;
  right: -20px;
  bottom: -40px;
  opacity: 0.3;
}

.testimonial-image {
  margin-top: var(--xero-spacing-xl);
}

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

.main-footer {
  background-color: #142B4E;
  color: var(--xero-white);
  padding: var(--xero-spacing-xxxl) 0 var(--xero-spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--xero-spacing-xxxl);
  margin-bottom: var(--xero-spacing-xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--xero-spacing-md);
  /* filter: brightness(0) invert(1); */
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--xero-font-size-body);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--xero-spacing-xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--xero-spacing-md);
  color: var(--xero-white);
}

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

.footer-list li {
  margin-bottom: var(--xero-spacing-sm);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--xero-font-size-body);
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--xero-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--xero-spacing-lg);
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--xero-font-size-small);
}

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

@media (max-width: 768px) {
  .header-container {
    padding: 0 var(--xero-spacing-md);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--xero-white);
    border-bottom: 1px solid var(--xero-border-gray);
    box-shadow: var(--xero-shadow-md);
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: var(--xero-spacing-md);
  }

  .nav-list li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: var(--xero-spacing-md);
    border-bottom: 1px solid var(--xero-border-gray);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .header-actions {
    display: none;
  }

  .header-actions.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--xero-white);
    padding: var(--xero-spacing-md);
    border-bottom: 1px solid var(--xero-border-gray);
    box-shadow: var(--xero-shadow-md);
    gap: var(--xero-spacing-sm);
  }

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

  .hero-section {
    padding: var(--xero-spacing-xl) 0;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--xero-spacing-xl);
  }

  .hero-headline {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-subheader {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-main-image {
    max-width: 100%;
    width: 100%;
  }

  .section {
    padding: var(--xero-spacing-xl) 0;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: var(--xero-spacing-xl);
  }

  .section-reverse {
    direction: ltr;
  }

  .section-headline {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--xero-spacing-xl);
  }

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

  .quote-text {
    font-size: 24px;
    padding: 0 var(--xero-spacing-md);
  }

  .container {
    padding: 0 var(--xero-spacing-md);
  }
}

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

.pricing-hero-section {
  background-color: var(--xero-light-bg);
  padding: var(--xero-spacing-xxxl) 0 var(--xero-spacing-xl);
  text-align: center;
}

.pricing-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-hero-headline {
  font-size: 48px;
  font-weight: 700;
  color: var(--xero-dark-gray);
  margin-bottom: var(--xero-spacing-md);
  line-height: 1.2;
}

.pricing-hero-subheader {
  font-size: 20px;
  color: var(--xero-medium-gray);
  margin-bottom: var(--xero-spacing-lg);
  line-height: 1.5;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--xero-spacing-sm);
  background-color: var(--xero-white);
  padding: var(--xero-spacing-sm) var(--xero-spacing-lg);
  border-radius: 30px;
  box-shadow: var(--xero-shadow-sm);
  font-size: var(--xero-font-size-body);
  color: var(--xero-dark-gray);
}

.trial-icon {
  color: var(--xero-green);
  font-weight: 700;
  font-size: 18px;
}

/* Why Start Section */
.why-start-content {
  text-align: center;
}

.why-start-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--xero-spacing-xl);
  margin-top: var(--xero-spacing-xl);
}

.why-start-item {
  background-color: var(--xero-white);
  padding: var(--xero-spacing-lg);
  border-radius: var(--xero-radius-md);
  box-shadow: var(--xero-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.why-start-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--xero-shadow-md);
}

.why-start-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--xero-dark-gray);
  margin-bottom: var(--xero-spacing-sm);
}

.why-start-description {
  font-size: var(--xero-font-size-body);
  color: var(--xero-medium-gray);
  line-height: 1.6;
}

/* Pricing Plans */
.pricing-plans-section {
  padding: var(--xero-spacing-xxxl) 0;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--xero-spacing-xl);
  margin-top: var(--xero-spacing-xl);
  align-items: stretch;
}

.pricing-card {
  background-color: var(--xero-white);
  border: 1px solid var(--xero-border-gray);
  border-radius: var(--xero-radius-md);
  box-shadow: var(--xero-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--xero-shadow-md);
}

.pricing-card-featured {
  border: 2px solid var(--xero-primary-blue);
  box-shadow: var(--xero-shadow-md);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--xero-teal);
  color: var(--xero-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-header {
  padding: var(--xero-spacing-xl);
  text-align: center;
  border-bottom: 1px solid var(--xero-border-gray);
}

.pricing-plan-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--xero-dark-gray);
  margin-bottom: var(--xero-spacing-md);
}

.pricing-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--xero-spacing-sm);
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--xero-dark-gray);
}

.price-period {
  font-size: 18px;
  color: var(--xero-medium-gray);
}

.pricing-plan-description {
  font-size: var(--xero-font-size-body);
  color: var(--xero-medium-gray);
}

.pricing-card-body {
  padding: var(--xero-spacing-xl);
  flex: 1;
}

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

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--xero-spacing-md);
  margin-bottom: var(--xero-spacing-md);
  font-size: var(--xero-font-size-body);
  color: var(--xero-dark-gray);
}

.pricing-feature:last-child {
  margin-bottom: 0;
}

.feature-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature strong {
  color: var(--xero-primary-blue);
  font-weight: 600;
}

.pricing-card-footer {
  padding: var(--xero-spacing-xl);
  border-top: 1px solid var(--xero-border-gray);
}

.btn-block {
  width: 100%;
  text-align: center;
  display: block;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--xero-spacing-xl);
  margin-top: var(--xero-spacing-xl);
}

.faq-item {
  background-color: var(--xero-white);
  padding: var(--xero-spacing-lg);
  border-radius: var(--xero-radius-md);
  box-shadow: var(--xero-shadow-sm);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--xero-dark-gray);
  margin-bottom: var(--xero-spacing-sm);
}

.faq-answer {
  font-size: var(--xero-font-size-body);
  color: var(--xero-medium-gray);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--xero-primary-blue) 0%, var(--xero-primary-blue-alt) 100%);
  color: var(--xero-white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-headline {
  font-size: 36px;
  font-weight: 700;
  color: var(--xero-white);
  margin-bottom: var(--xero-spacing-md);
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--xero-spacing-xl);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: var(--xero-spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: var(--xero-teal);
  border-color: var(--xero-teal);
}

.cta-section .btn-primary:hover {
  background-color: #27ae60;
  border-color: #27ae60;
}

.cta-section .btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--xero-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Pricing Page Responsive */
@media (max-width: 1024px) {
  .pricing-plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: var(--xero-spacing-xl) auto 0;
  }

  .why-start-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .pricing-hero-headline {
    font-size: 32px;
  }

  .pricing-hero-subheader {
    font-size: 18px;
  }

  .why-start-grid {
    grid-template-columns: 1fr;
    gap: var(--xero-spacing-lg);
  }

  .price-amount {
    font-size: 36px;
  }

  .cta-headline {
    font-size: 28px;
  }

  .cta-description {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pricing-hero-headline {
    font-size: 28px;
  }

  .pricing-card-header,
  .pricing-card-body,
  .pricing-card-footer {
    padding: var(--xero-spacing-lg);
  }

  .price-amount {
    font-size: 32px;
  }
}

/* ============================================
   NEW HEADER DROPDOWN & MOBILE NAV STYLES
   ============================================ */

.nav-item {
  position: relative;
}

/* Dropdown arrow - inline with text */
.nav-item.dropdown > .nav-link::after {
  content: '▼';
  font-size: 8px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
  opacity: 0.6;
  position: static;
  width: auto;
  height: auto;
  background: none;
}

.nav-item.dropdown:hover > .nav-link::after {
  opacity: 1;
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--xero-white);
  list-style: none;
  margin: 0;
  padding: var(--xero-spacing-sm) 0;
  min-width: 200px;
  border-radius: var(--xero-radius-md);
  border: 1px solid var(--xero-border-gray);
  box-shadow: var(--xero-shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
  pointer-events: none;
  white-space: nowrap;
}

/* Add padding to nav-item to create hover area and bridge gap */
.nav-item.dropdown {
  padding-bottom: 4px;
  margin-bottom: -4px;
}

/* Ensure the nav-link doesn't interfere */
.nav-item.dropdown > .nav-link {
  position: relative;
  z-index: 1;
}

/* Create invisible bridge between nav item and dropdown */
.nav-item.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  z-index: 1000;
}

/* Show dropdown on hover using CSS */
.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: block !important;
}

/* JavaScript fallback */
.dropdown-menu.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: block !important;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: var(--xero-spacing-sm) var(--xero-spacing-md);
  color: var(--xero-dark-gray);
  text-decoration: none;
  font-size: var(--xero-font-size-nav);
  font-family: var(--xero-font-family);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--xero-light-gray);
  color: var(--xero-primary-blue);
}

.utility-link {
  color: var(--xero-dark-gray);
  text-decoration: none;
  font-size: var(--xero-font-size-nav);
  font-weight: 400;
  font-family: var(--xero-font-family);
  transition: color 0.2s ease;
  padding: var(--xero-spacing-sm) 0;
}

.utility-link:hover {
  color: var(--xero-primary-blue);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--xero-white);
  border-top: 1px solid var(--xero-border-gray);
  box-shadow: var(--xero-shadow-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  max-height: 1000px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: var(--xero-spacing-md) var(--xero-spacing-lg);
}

.mobile-nav-item {
  margin-bottom: var(--xero-spacing-sm);
}

.mobile-nav-link {
  display: block;
  padding: var(--xero-spacing-md);
  color: var(--xero-dark-gray);
  text-decoration: none;
  font-size: var(--xero-font-size-nav);
  font-family: var(--xero-font-family);
  border-radius: var(--xero-radius-md);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: var(--xero-light-gray);
  color: var(--xero-primary-blue);
}

.mobile-cta-primary {
  background-color: var(--xero-teal);
  color: var(--xero-white);
  text-align: center;
  font-weight: 600;
}

.mobile-cta-primary:hover {
  background-color: #27ae60;
  color: var(--xero-white);
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: var(--xero-spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.active {
  max-height: 500px;
}

.mobile-submenu li {
  margin-bottom: var(--xero-spacing-xs);
}

.mobile-submenu a {
  display: block;
  padding: var(--xero-spacing-sm) var(--xero-spacing-md);
  color: var(--xero-dark-gray);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--xero-font-family);
  border-radius: var(--xero-radius-sm);
  transition: all 0.2s ease;
}

.mobile-submenu a:hover {
  background-color: var(--xero-light-gray);
  color: var(--xero-primary-blue);
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}

/* ============================================
   HERO EYEBROW & CTAS
   ============================================ */

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--xero-spacing-md) 0;
  font-family: var(--xero-font-family);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--xero-spacing-md);
  margin-top: var(--xero-spacing-xl);
}

.hero-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--xero-spacing-md);
  flex-wrap: wrap;
}

.hero-risk-reversal {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-family: var(--xero-font-family);
}

@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   TRUST BAR SECTION
   ============================================ */

.trust-bar-section {
  background-color: var(--xero-light-bg);
  padding: var(--xero-spacing-xxxl) 0;
  width: 100%;
}

.trust-bar-headline {
  font-size: 15px;
  font-weight: 400;
  color: var(--xero-dark-gray);
  text-align: center;
  margin: 0 0 var(--xero-spacing-xl) 0;
  font-family: var(--xero-font-family);
}

.trust-bar-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--xero-spacing-xl);
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: all 0.2s ease;
}

.trust-logo-img {
  max-height: 60px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.3);
  opacity: 0.7;
  transition: all 0.2s ease;
}

.trust-logo:hover .trust-logo-img {
  opacity: 1;
  filter: grayscale(100%) brightness(0.2);
  transform: scale(1.05);
}

.trust-logo-placeholder {
  font-size: 14px;
  font-weight: 500;
  color: var(--xero-dark-gray);
  padding: var(--xero-spacing-sm) var(--xero-spacing-lg);
  background-color: var(--xero-white);
  border-radius: var(--xero-radius-md);
  font-family: var(--xero-font-family);
  opacity: 0.7;
  transition: all 0.2s ease;
}

.trust-logo:hover .trust-logo-placeholder {
  opacity: 1;
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--xero-primary-blue);
}

@media (max-width: 768px) {
  .trust-bar-section {
    padding: var(--xero-spacing-xl) 0;
  }
  
  .trust-bar-logos {
    gap: var(--xero-spacing-lg);
  }
}

/* ============================================
   PROBLEM & SOLUTION SECTION
   ============================================ */

.problem-solution-section {
  background-color: var(--xero-white);
  padding: var(--xero-spacing-xxxl) 0;
  width: 100%;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--xero-spacing-xxxl);
  align-items: center;
  margin-bottom: var(--xero-spacing-xxxl);
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block-2 {
  direction: rtl;
}

.feature-block-2 > * {
  direction: ltr;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: var(--xero-spacing-lg);
}

.feature-headline {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--xero-dark-gray);
  margin: 0;
  font-family: var(--xero-font-family);
  letter-spacing: -0.02em;
}

.feature-copy {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--xero-medium-gray);
  margin: 0;
  font-family: var(--xero-font-family);
}

.feature-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--xero-primary-blue);
  text-decoration: none;
  font-family: var(--xero-font-family);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--xero-spacing-sm);
}

.feature-link:hover {
  color: var(--xero-primary-blue-alt);
  gap: 8px;
}

.feature-link-arrow {
  display: inline-block;
  transition: all 0.2s ease;
}

.feature-link:hover .feature-link-arrow {
  transform: translateX(4px);
}

.feature-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image {
  width: auto;
  max-width: 100%;
  height: 100%;
  border-radius: 12px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .feature-block {
    gap: var(--xero-spacing-xl);
  }
  
  .feature-headline {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .problem-solution-section {
    padding: var(--xero-spacing-xl) 0;
  }
  
  .feature-block {
    grid-template-columns: 1fr;
    gap: var(--xero-spacing-xl);
    margin-bottom: var(--xero-spacing-xl);
  }
  
  .feature-block-2 {
    direction: ltr;
  }
  
  .feature-block-2 > * {
    direction: ltr;
  }
  
  .feature-headline {
    font-size: 32px;
  }
  
  .feature-copy {
    font-size: 16px;
  }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
  background-color: var(--xero-light-bg);
  padding: var(--xero-spacing-xxxl) 0;
  width: 100%;
}

.how-it-works-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--xero-spacing-xl);
  flex-wrap: wrap;
}

.how-it-works-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--xero-spacing-lg);
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--xero-white);
  border-radius: 50%;
  box-shadow: var(--xero-shadow-sm);
  transition: all 0.2s ease;
  color: var(--xero-primary-blue);
}

.step-icon:hover {
  transform: translateY(-4px);
  box-shadow: var(--xero-shadow-md);
}

.step-icon svg {
  width: 48px;
  height: 48px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--xero-dark-gray);
  margin: 0;
  font-family: var(--xero-font-family);
}

.step-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--xero-medium-gray);
  margin: 0;
  font-family: var(--xero-font-family);
}

.step-description strong {
  font-weight: 600;
  color: var(--xero-dark-gray);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 40px;
  opacity: 0.5;
  color: var(--xero-dark-gray);
}

.step-connector svg {
  width: 40px;
  height: 20px;
}

@media (max-width: 1024px) {
  .how-it-works-steps {
    gap: var(--xero-spacing-lg);
  }
  
  .how-it-works-step {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: var(--xero-spacing-xl) 0;
  }
  
  .how-it-works-steps {
    flex-direction: column;
    align-items: center;
    gap: var(--xero-spacing-xxl);
  }
  
  .how-it-works-step {
    max-width: 100%;
    width: 100%;
  }
  
  .step-connector {
    transform: rotate(90deg);
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon svg {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  background-color: var(--xero-white);
  padding: var(--xero-spacing-xxxl) 0;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--xero-spacing-xl);
  align-items: stretch;
}

.testimonial-card {
  background-color: var(--xero-light-bg);
  border-radius: var(--xero-radius-md);
  padding: var(--xero-spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--xero-spacing-xl);
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--xero-shadow-md);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: var(--xero-spacing-lg);
}

.testimonial-before,
.testimonial-after {
  position: relative;
}

.testimonial-before::before {
  content: "Before";
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--xero-dark-gray);
  opacity: 0.6;
  display: block;
  margin-bottom: var(--xero-spacing-sm);
  font-family: var(--xero-font-family);
}

.testimonial-after::before {
  content: "After";
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--xero-teal);
  display: block;
  margin-bottom: var(--xero-spacing-sm);
  font-family: var(--xero-font-family);
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--xero-dark-gray);
  margin: 0;
  font-family: var(--xero-font-family);
  font-style: italic;
}

.testimonial-after .testimonial-quote {
  color: var(--xero-dark-gray);
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--xero-spacing-md);
  padding-top: var(--xero-spacing-lg);
  border-top: 1px solid var(--xero-border-gray);
}

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

.testimonial-avatar svg {
  width: 100%;
  height: 100%;
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--xero-dark-gray);
  font-family: var(--xero-font-family);
}

.testimonial-role {
  font-size: 14px;
  font-weight: 400;
  color: var(--xero-medium-gray);
  font-family: var(--xero-font-family);
}

.testimonial-company {
  font-size: 14px;
  font-weight: 400;
  color: var(--xero-medium-gray);
  opacity: 0.8;
  font-family: var(--xero-font-family);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: var(--xero-spacing-xl) 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--xero-spacing-lg);
  }
  
  .testimonial-card {
    padding: var(--xero-spacing-lg);
  }
}

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

.final-cta-section {
  background: linear-gradient(135deg, #142B4E 0%, #1a3a5e 100%);
  padding: var(--xero-spacing-xxxl) 0;
  width: 100%;
}

.final-cta-headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--xero-white);
  margin: 0 0 var(--xero-spacing-md) 0;
  font-family: var(--xero-font-family);
  letter-spacing: -0.02em;
  text-align: center;
}

.final-cta-subheadline {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--xero-white);
  margin: 0 0 var(--xero-spacing-xl) 0;
  font-family: var(--xero-font-family);
  opacity: 0.9;
  text-align: center;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--xero-spacing-md);
}

.final-cta-button {
  display: inline-block;
  padding: var(--xero-spacing-md) var(--xero-spacing-xl);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--xero-radius-md);
  background-color: var(--xero-teal);
  color: var(--xero-white);
  border: 2px solid var(--xero-teal);
  font-family: var(--xero-font-family);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.final-cta-button:hover {
  background-color: #27ae60;
  border-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4);
}

.final-cta-risk-reversal {
  font-size: 14px;
  font-weight: 400;
  color: var(--xero-white);
  margin: 0;
  font-family: var(--xero-font-family);
  opacity: 0.8;
  text-align: center;
}

@media (max-width: 1024px) {
  .final-cta-headline {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: var(--xero-spacing-xl) 0;
  }
  
  .final-cta-headline {
    font-size: 36px;
  }
  
  .final-cta-subheadline {
    font-size: 18px;
    margin-bottom: var(--xero-spacing-lg);
  }
  
  .final-cta-button {
    font-size: 16px;
    padding: var(--xero-spacing-md) var(--xero-spacing-lg);
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   UPDATED FOOTER STYLES
   ============================================ */

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--xero-spacing-xl);
  margin-bottom: var(--xero-spacing-xxl);
}

.footer-column-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--xero-white);
  margin: 0 0 var(--xero-spacing-md) 0;
  font-family: var(--xero-font-family);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--xero-spacing-sm);
}

.footer-links-list li {
  margin: 0;
}

.footer-links-list a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--xero-font-family);
  transition: all 0.2s ease;
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--xero-white);
}

.footer-link-highlight {
  font-weight: 500;
  opacity: 0.95 !important;
}

.footer-link-highlight:hover {
  color: var(--xero-teal) !important;
  opacity: 1 !important;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--xero-spacing-md);
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-family: var(--xero-font-family);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--xero-spacing-md);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--xero-white);
  opacity: 0.7;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.footer-social-link:hover {
  opacity: 1;
  color: var(--xero-teal);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--xero-spacing-lg);
  }
}

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--xero-spacing-lg);
    margin-bottom: var(--xero-spacing-xl);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--xero-spacing-md);
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: var(--xero-spacing-lg);
  }
}

