/* ========================================
       NAVIGATION BAR
    ======================================== */
    .navigation {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid #e5e5e5;
      z-index: 1000;
      padding: 1rem 0;
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.5rem;
      color: #0a0a0a;
    }

    .nav-logo-icon {
      width: 2rem;
      height: 2rem;
      stroke: #e59032;
      fill: none;
      stroke-width: 2;
    }

    .nav-menu {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .nav-menu {
        display: flex;
      }
    }

    .nav-link {
      color: #737373;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #e59032;
    }

    .nav-btn {
      background: #e59032;
      color: white;
      border: none;
      padding: 0.625rem 1.5rem;
      border-radius: 0.5rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .nav-btn:hover {
      background: #d48029;
    }

    .mobile-menu-btn {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }

    .hamburger-line {
      width: 1.5rem;
      height: 2px;
      background: #0a0a0a;
      transition: all 0.3s ease;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: white;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
      padding: 5rem 2rem 2rem;
      transition: right 0.3s ease;
      z-index: 999;
      overflow-y: auto;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .mobile-menu-link {
      color: #737373;
      text-decoration: none;
      font-size: 1.125rem;
      font-weight: 500;
      padding: 0.75rem 0;
      border-bottom: 1px solid #f5f5f5;
      transition: color 0.3s ease;
    }

    .mobile-menu-link:hover {
      color: #e59032;
    }

    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 998;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }


    /* ========================================
       CTA SECTION
    ======================================== */
    .cta-section {
      position: relative;
      background: #0a0a0a;
      padding: 5rem 0;
    }

    @media (min-width: 1024px) {
      .cta-section {
        padding: 4rem 0;
      }
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .cta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
    }

    .cta-content {
      /* Left column */
    }

    .cta-heading {
      font-size: 1.875rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    @media (min-width: 1024px) {
      .cta-heading {
        font-size: 3rem;
      }
    }

    .cta-description {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1rem;
      margin-bottom: 2rem;
      line-height: 1.625;
    }

    @media (min-width: 1024px) {
      .cta-description {
        font-size: 1.125rem;
      }
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-size: 1rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .cta-button-primary {
      background: white;
      border: 1px solid #e5e5e5;
      color: #0a0a0a;
    }

    .cta-button-primary:hover {
      background: #f5f5f5;
    }

    .cta-button-secondary {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
    }

    .cta-button-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .cta-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .cta-stats {
        gap: 3rem;
      }
    }

    .cta-stat {
      text-align: center;
    }

    .cta-stat-number {
      color: white;
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    @media (min-width: 1024px) {
      .cta-stat-number {
        font-size: 3rem;
      }
    }

    .cta-stat-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
    }


    /* ========================================
       FOOTER
    ======================================== */
    .footer {
      position: relative;
      background: #0a0a0a;
      padding: 5rem 0;
    }

    @media (min-width: 1024px) {
      .footer {
        padding: 4rem 0;
      }
    }

    /* Main Footer Content */
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* Brand Column */
    .footer-brand h3 {
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-brand h3 .highlight {
      color: #e59032;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
      line-height: 1.625;
    }

    /* Footer Columns */
    .footer-column h4 {
      color: white;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 1rem;
    }

    .footer-column ul li a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #e59032;
    }

    /* Bottom Bar */
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.875rem;
      text-align: center;
    }

        .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container {
        padding: 0 1.5rem;
      }
    }