    :root {
      --primary-navy: #001f3f;
      --accent-blue: #003d7a;
      --text-white: #ffffff;
      --lexgo-blue: #001f3f;
      --text-muted: #88929b;
      --glass-bg: rgba(255, 255, 255, 0.03);
      --border-muted: rgba(255, 255, 255, 0.1);
      --serif-font: "Delicious", serif;
      --sans-font: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
      
      /* Additional responsive variables */
      --border-light: #e9ecef;
      --bg-light: #f8f9fa;
      --bg-off-white: #fafbfc;
      --text-dark: #333;
      --premium-gradient: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
      --crimson-accent: #dc143c;
    }

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

    /* Smooth scrolling and font optimization */
    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-size-adjust: 100%;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--sans-font);
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }
    
    /* Ensure all images are responsive by default */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* Prevent layout shift from videos */
    video {
      max-width: 100%;
      height: auto;
    }

    /* Announcement Bar */
    .announcement-bar {
      background: #003d7a;
      color: #ffffff;
      text-align: center;
      padding: 0.8rem 5%;
      font-size: 1rem;
      font-weight: 600;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1001;
    }

    .announcement-link {
      color: #ffffff;
      text-decoration: underline;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

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

    .announcement-link svg {
      width: 16px;
      height: 16px;
    }

    /* Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 31, 63, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 2000;
    }

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

    .modal-content {
      background: #ffffff;
      max-width: 600px;
      width: 90%;
      border-radius: 20px;
      padding: 2.5rem;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 31, 63, 0.3);
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .modal-overlay.active .modal-content {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      font-size: 2rem;
      color: #001f3f;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #f8f9fa;
      transition: background 0.3s;
    }

    .modal-close:hover {
      background: #e0e0e0;
    }

    .modal-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #001f3f;
    }

    .modal-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

    .modal-content .submit-btn {
      margin-top: 1rem;
    }

    /* Navbar Styles */
    .navbar {
      position: fixed;
      top: 48px;
      width: 100%;
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
      z-index: 1000;
      transition: all 0.3s ease;
      border-bottom: 1px solid #e9ecef;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-navy);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .logo img {
      height: 30px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-weight: 500;
      font-size: 1rem;
      transition: color 0.3s;
    }

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

    /* Desktop-only Active Styles */
    @media (min-width: 769px) {
      .nav-links a.active {
        color: var(--primary-navy);
        font-weight: 700;
        position: relative;
      }

      .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary-navy);
      }
    }

    .nav-links .mobile-cta {
      display: none;
    }

    /* Dropdown Styles */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background: #ffffff;
      min-width: 180px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      z-index: 1002;
      border-radius: 12px;
      overflow: hidden;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 1px solid #e9ecef;
    }

    .dropdown-content a {
      color: var(--text-muted);
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      border-bottom: 1px solid #e9ecef;
    }

    .dropdown-content a:last-child {
      border-bottom: none;
    }

    .dropdown-content a:hover {
      background: #f8f9fa;
      color: var(--primary-navy);
      padding-left: 20px;
    }

    .dropdown:hover .dropdown-content {
      display: block;
      animation: fadeInDown 0.3s ease forwards;
    }

    .dropdown > a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .dropdown > a svg {
      transition: transform 0.3s ease;
    }

    .dropdown:hover > a svg {
      transform: rotate(180deg);
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translate(-50%, -10px);
      }
      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }

    .hamburger {
      display: none;
      cursor: pointer;
      z-index: 2005;
    }

    .hamburger .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background-color: var(--primary-navy);
    }

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

    .hamburger {
      display: none;
      cursor: pointer;
      z-index: 2005;
    }

    .nav-btn {
      padding: 0.6rem 1.5rem;
      background: transparent;
      border: 1px solid var(--primary-navy);
      border-radius: 50px;
      color: var(--primary-navy);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .nav-btn:hover {
      color: var(--primary-navy);
    }

    .nav-buttons {
      display: flex;
      gap: 1rem;
    }

    /* Antigravity-Inspired Mobile Menu */
    @media (max-width: 768px) {
      .nav-buttons {
        display: none;
      }

      /* Mobile Announcement Bar Adjustment */
      .announcement-bar {
        font-size: 0.75rem;
        padding: 0.5rem 5%;
        line-height: 1.35;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        z-index: 1001;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        visibility: visible;
        opacity: 1;
      }

      .navbar {
        top: 55px; /* Adjusted to ensuring announcement bar visibility */
        height: 60px; /* Reduced from 70px */
        padding: 0 5%;
        border-bottom: 1px solid rgba(0, 31, 63, 0.05);
        display: flex;
        align-items: center;
        z-index: 1002; /* Ensure navbar sits ABOVE announcement bar if they touch */
      }

      .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px; /* Reduced gap */
        z-index: 3001;
        cursor: pointer;
        padding: 8px; /* Reduced padding */
        border-radius: 8px;
        transition: all 0.3s ease;
      }

      .hamburger:hover {
        background: rgba(0, 31, 63, 0.05);
      }

      .hamburger .bar {
        width: 22px; /* Reduced width */
        height: 3px;
        background-color: var(--primary-navy);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 3px;
      }

      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #ffffff;
      }

      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }

      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #ffffff;
      }

      /* Full-Screen Centered Overlay */
      .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
        z-index: 3000;
        padding: 4rem 2rem;
        overflow-y: auto;
      }

      .nav-links.active {
        opacity: 1;
        visibility: visible;
      }

      /* Centered Navigation Items */
      .nav-links a {
        font-size: 2.5rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1rem 2rem;
        position: relative;
        letter-spacing: -0.5px;
        text-align: center;
        width: 100%;
        display: block;
        box-sizing: border-box;
      }

      .nav-links a.active {
      color: #ffffff;
      font-weight: 700;
    }

    .nav-links a.active::after {
      width: 100%;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffffff, transparent);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .nav-links a:hover {
        color: #ffffff;
        transform: translateY(0) scale(1.05);
      }

      .nav-links a:hover::after {
        transform: translateX(-50%) scaleX(1);
      }

      .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
      }

      /* Staggered Animation Delays */
      .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
      .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
      .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
      .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
      .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
      .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }
      .nav-links.active a:nth-child(7) { transition-delay: 0.4s; }

      /* Dropdown in Mobile */
      .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .nav-links.active .dropdown {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
      }

      .dropdown > a {
        display: none;
      }

      .dropdown-content {
        display: flex;
        flex-direction: column;
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        width: 100%;
        align-items: center;
        gap: 0;
      }

      .dropdown-content a {
        padding: 1rem 2rem;
        border: none;
        font-size: 2.5rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        letter-spacing: -0.5px;
        text-align: center;
        width: 100%;
        display: block;
      }

      .dropdown-content a:hover {
        background: transparent;
        color: #ffffff;
        padding: 1rem 2rem;
        transform: translateY(0); /* Disable scale effect that might look like sliding */
      }

      .dropdown-content a.active {
        color: #ffffff;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.05);
      }

      /* Mobile CTA Button */
      .nav-links .mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1.2rem 3rem;
        background: #ffffff;
        color: var(--primary-navy) !important;
        border-radius: 50px;
        font-weight: 700;
        margin-top: 2rem;
        font-size: 1.1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.5s;
        letter-spacing: 0;
        max-width: none;
        width: auto;
      }

      .nav-links .mobile-cta::after {
        display: none;
      }

      .nav-links .mobile-cta:hover {
        background: #f8f9fa;
        transform: translateY(0) scale(1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
      }

      .nav-links.active .mobile-cta {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Nav Button Hover Effects (Specific to Index) */
    .nav-btn:before {
      position: absolute;
      content: "";
      left: 0;
      bottom: 0;
      height: 2px;
      width: 100%;
      border-bottom: 2px solid transparent;
      border-left: 2px solid transparent;
      box-sizing: border-box;
      transform: translateX(100%);
    }

    .nav-btn:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      border-top: 2px solid transparent;
      border-right: 2px solid transparent;
      box-sizing: border-box;
      transform: translateX(-100%);
    }

    .nav-btn:hover:before {
      border-color: var(--primary-navy);
      height: 100%;
      color: var(--lexgo-blue);
      transform: translateX(0);
      transition: 0.3s transform linear, 0.3s height linear 0.3s;
    }

    .nav-btn:hover:after {
      border-color: var(--primary-navy);
      height: 100%;
      color: var(--primary-navy);
      transform: translateX(0);
      transition: 0.3s transform linear, 0.3s height linear 0.5s;
    }

    .hero {
      padding: 200px 5% 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
      margin-top: 0;
    }

    .legal-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.08;
      z-index: 0;
      contain: strict;
      pointer-events: none;
    }

    .pattern-icon {
      position: absolute;
      width: 40px;
      height: 40px;
      fill: #ffffff;
    }

    @keyframes floatPattern {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      25% {
        transform: translate(30px, -30px) rotate(90deg);
      }

      50% {
        transform: translate(0, -60px) rotate(180deg);
      }

      75% {
        transform: translate(-30px, -30px) rotate(270deg);
      }
    }

    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      animation: float 15s infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        transform: translateY(-1000px) translateX(100px);
        opacity: 0;
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 2rem;
      color: #ffffff;
      line-height: 1.3;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      min-height: 120px;
      /* Prevent layout shift */
    }

    .typing-cursor {
      display: inline-block;
      width: 3px;
      height: 1em;
      background-color: #ffffff;
      margin-left: 5px;
      vertical-align: middle;
      animation: blink 0.7s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    .hero p {
      font-size: 1.1rem;
      font-weight: 150;
      font-style: italic;
      text-align: center;
      color: #ffffff;
      margin-top: 2rem;
      margin-bottom: 3rem;
      max-width: 850px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
      background: rgba(255, 255, 255, 0.03);
      /* Slightly increased for edge definition */
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

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

    /* ── Primary CTA: filled white button ── */
    .cta-primary {
      padding: 1.25rem 3rem;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.6);
      border-radius: 50px;
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .cta-primary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #ffffff;
      transform: translateY(-3px);
    }

    /* ── Secondary CTA: ghost outline button ── */
    .cta-secondary {
      padding: 1.25rem 3rem;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.6);
      border-radius: 50px;
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .cta-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #ffffff;
      transform: translateY(-3px);
    }

    .cta-primary:before,
    .cta-primary:after,
    .cta-secondary:before,
    .cta-secondary:after {
      position: absolute;
      content: "";
      box-sizing: border-box;
    }

    .cta-primary:before,
    .cta-secondary:before {
      left: 0;
      bottom: 0;
      height: 2px;
      width: 100%;
      border-bottom: 2px solid transparent;
      border-left: 2px solid transparent;
      transform: translateX(100%);
    }

    .cta-primary:after,
    .cta-secondary:after {
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      border-top: 2px solid transparent;
      border-right: 2px solid transparent;
      transform: translateX(-100%);
    }

    .cta-primary:hover:before,
    .cta-secondary:hover:before {
      border-color: #ffffff;
      height: 100%;
      transform: translateX(0);
      transition: 0.3s transform linear, 0.3s height linear 0.3s;
    }

    .cta-primary:hover:after,
    .cta-secondary:hover:after {
      border-color: #ffffff;
      height: 100%;
      transform: translateX(0);
      transition: 0.3s transform linear, 0.3s height linear 0.5s;
    }

    .store-buttons {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .store-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      background: #ffffff;
      border: 2px solid #ffffff;
      border-radius: 12px;
      color: #001f3f;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
    }

    .store-btn:hover {
      transform: translateY(-3px);
    }

    .store-icon svg {
      width: 35px;
      height: 35px;
    }

    .carousel-section {
      padding: 100px 5%;
      background: transparent;
      /* Removed white tint */
      text-align: center;
      position: relative;
    }

    .carousel-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }

    .carousel-container {
      position: relative;
      overflow: visible;
      border-radius: none;
      background: transparent;
    }

    .carousel-slides {
      display: flex;
      gap: 1.5rem;
      width: 100%;
      height: auto;
    }

    .carousel-slide {
      position: relative;
      width: calc((100% - 3rem) / 3);
      height: auto;
      flex-shrink: 0;
      border-radius: 0;
      /* Removed rounding to avoid white corners */
      padding: 0;
      /* Removed padding to avoid white "frame" */
      transition: all 0.3s ease;
      background: transparent;
    }

    .carousel-slide img {
      width: 100%;
      height: 130%;
      max-height: 400px;
      object-fit: contain;
      background: transparent !important;
      /* Force transparency */
      user-select: none;
      -webkit-user-drag: none;
      transition: transform 0.3s ease, filter 0.3s ease;
      cursor: pointer;
    }

    .carousel-slide .carousel-caption {
      opacity: 0;
    }

    #carouselDescription {
      position: relative;
      padding: 2rem 1.5rem 3.5rem;
      color: #001f3f;
      text-align: center;
    }

    #carouselDescription h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      margin-top: 0.5rem;

    }

    #carouselDescription p {
      font-size: 1.1rem;
      opacity: 0.9;
      color: #555;
      margin-top: 0.5rem;

    }

    .carousel-slide.active img,
    .carousel-slide:hover img {
      transform: scale(1.05);
      /* Removed box-shadow to prevent white halo on dark items */
    }

    .carousel-slides .carousel-slide:not(.active):not(:hover) img {
      transform: scale(0.9);
    }

    .carousel-dots {
      position: absolute;
      bottom: 0px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
      margin: 0.5rem;
    }

    .carousel-dots .dot {
      width: 4px;
      height: 4px;
      background: rgba(0, 31, 63, 0.25);
      border-radius: 50%;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      padding: 0;
    }

    .carousel-dots .dot.active {
      background: #001f3f;
      transform: scale(1.3);
      box-shadow: 0 2px 8px rgba(0, 31, 63, 0.4);
    }

    .carousel-dots .dot:hover {
      background: #001f3f;
      transform: scale(1.15);
    }

    /* New Gallery Carousel Section */
    .gallery-section {
      /* padding: 100px 5%;*/
      background: #ffffff;
      text-align: center;
    }

    .gallery-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .gallery-container {
      position: relative;
      overflow-x: auto;
      border-radius: 20px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE 10+ */
    }

    .gallery-container::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }

    .gallery-slides {
      display: flex;
      cursor: grab;
      user-select: none;
    }

    .gallery-slides.grabbing {
      cursor: grabbing;
    }

    .gallery-slide {
      flex: 0 0 calc(80% - 1rem);
      /* Show partial slides on sides like Apple */
      margin-right: 1rem;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 450px;
      /* Increased height */
      scroll-snap-align: center;
    }

    .gallery-slide:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 31, 63, 0.083);
      cursor: pointer;
    }

    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.8);
      z-index: 0;
    }

    .gallery-slide video {
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .gallery-slide:hover img {
      display: none;
    }

    .gallery-slide:hover video {
      display: block;
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 2rem;
      color: #ffffff;
      background: linear-gradient(to bottom, rgba(0, 31, 63, 0), rgba(0, 31, 63, 0.008));
      z-index: 1;
    }

    .gallery-overlay h3 {
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
    }

    .gallery-overlay p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      max-width: 60%;
    }

    .gallery-overlay button {
      padding: 0.75rem 2rem;
      background: #001f3f;
      border: none;
      border-radius: 50px;
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }

    .gallery-overlay button:hover {
      background: #003d7a;
    }

    .gallery-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 2rem;
    }

    .gallery-dots .dot {
      width: 2px;
      height: 2px;
      background: rgba(0, 31, 63, 0.35);
      border-radius: 50%;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      padding: 0;
    }

    .gallery-dots .dot.active {
      background: #001f3f;
      transform: scale(1.4);
      box-shadow: 0 2px 6px rgba(0, 31, 63, 0.35);
    }

    .gallery-dots .dot:hover {
      background: #001f3f;
      transform: scale(1.2);
    }

    @media (max-width: 768px) {
      .gallery-slide {
        flex: 0 0 calc(90% - 1rem);
      }

      .gallery-overlay h3 {
        font-size: 2rem;
      }

      .gallery-overlay p {
        font-size: 1rem;
        max-width: 80%;
      }
    }

    /* Small Ads Carousels */
    .ads-section {
      padding: 50px 5% 100px;
      background: #ffffff;
      text-align: center;
    }

    .ads-title {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 2rem;
      color: #001f3f;
    }

    .small-carousel {
      max-width: 1200px;
      margin: 0 auto 3rem;
      position: relative;
    }

    .small-carousel-container {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
    }

    .small-slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      cursor: grab;
    }

    .small-slides.grabbing {
      cursor: grabbing;
    }

    .small-slide {
      flex: 0 0 calc(50% - 1rem);
      margin-right: 1rem;
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 31, 63, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 200px;
    }

    .small-slide:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 31, 63, 0.15);
    }

    .small-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .small-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1rem;
      background: rgba(0, 31, 63, 0.6);
      color: #ffffff;
    }

    .small-overlay h4 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .small-overlay p {
      font-size: 0.9rem;
    }

    .small-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 1rem;
    }

    .small-dots .dot {
      width: 3px;
      height: 3px;
      background: rgba(0, 31, 63, 0.5);
      border-radius: 50%;
      transition: all 0.3s;
      cursor: pointer;
    }

    .small-dots .dot.active {
      background: #001f3f;
      transform: scale(1.2);
    }

    .small-dots .dot:hover {
      background: #001f3f;
    }

    @media (max-width: 768px) {
      .small-slide {
        flex: 0 0 calc(80% - 1rem);
        height: 180px;
      }

      .small-overlay h4 {
        font-size: 1rem;
      }

      .small-overlay p {
        font-size: 0.8rem;
      }
    }

    .stats-section {
      padding: 50px 5%;
      text-align: center;
      background-image: url('./resources/LexGo Background.png');
    }

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

    .stat-item {
      padding: 2rem;
    }

    .stat-number {
      font-size: 4rem;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1.2rem;
      color: #e0e0e0;
    }

    .download-section {
      padding: 100px 5%;
      background: #ffffff;
      text-align: center;
    }

    .download-title {
      font-size: 2.5rem;
      font-weight: 900;
      color: #001f3f;
      margin-bottom: 1.5rem;
    }

    .download-subtitle {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .download-buttons {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .download-btn {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 18px 35px;
      background: #001f3f;
      border: 3px solid #001f3f;
      border-radius: 15px;
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
    }

    .download-btn:hover {
      transform: translateY(-5px);
      background: #003d7a;
    }

    .download-icon svg {
      width: 45px;
      height: 45px;
    }

    .download-text-small {
      font-size: 0.85rem;
      color: #e0e0e0;
      font-weight: 500;
    }

    .download-text-large {
      font-size: 1.4rem;
      font-weight: 700;
      color: #ffffff;
    }

    .waitlist-section {
      padding: 120px 5%;
      background: #f8f9fa;
    }

    .waitlist-container {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      background: #ffffff;
      border: 3px solid #001f3f;
      border-radius: 30px;
      padding: 4rem;
    }

    .waitlist-container h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #001f3f;
    }

    .waitlist-container p {
      color: #555;
      font-size: 1.2rem;
      margin-bottom: 3rem;
    }

    .waitlist-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      gap: 1rem;
    }

    .form-input {
      flex: 1;
      padding: 1.2rem;
      background: #f8f9fa;
      border: 2px solid #001f3f;
      border-radius: 15px;
      color: #001f3f;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .form-input:focus {
      outline: none;
      border-color: #003d7a;
      box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
    }

    select.form-input {
      cursor: pointer;
    }

    .submit-btn {
      padding: 1.5rem;
      background: #001f3f;
      border: none;
      border-radius: 15px;
      color: white;
      font-size: 1.2rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      background: #003d7a;
    }

    .success-message {
      display: none;
      padding: 1.5rem;
      background: #28a745;
      border-radius: 15px;
      margin-top: 1.5rem;
      font-weight: 600;
      color: white;
    }

    .ceo-letter-bar {
      max-width: 700px;
      margin: 0 0 2rem 0;
      background: #e9ecef;
      padding: 1.2rem 2rem;
      border-radius: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      border-left: 5px solid #001f3f;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .ceo-letter-bar:hover {
      background: #dee2e6;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .ceo-letter-caption {
      font-size: 1.1rem;
      font-weight: 700;
      color: #001f3f;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .ceo-arrow {
      width: 24px;
      height: 24px;
      stroke: #001f3f;
      transition: transform 0.3s ease;
    }

    .ceo-letter-bar:hover .ceo-arrow {
      transform: translateX(5px);
    }

    footer {
      padding: 4rem 5% 2rem;
      background: #001f3f;
      color: #ffffff;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto 3rem auto;
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 800;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .footer-logo img {
      height: 40px;
      filter: brightness(0) invert(1);
    }

    .footer-column {
      flex: 1;
      min-width: 160px;
    }

    .footer-column h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

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

    .footer-column li {
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
      color: #d0d8e0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      cursor: pointer;
      opacity: 0.8;
      transition: all 0.3s ease;
    }

    .footer-column li:hover {
      color: #ffffff;
      opacity: 1;
      padding-left: 5px;
    }

    .footer-column li svg {
      width: 18px;
      height: 18px;
      fill: #ffffff;
      opacity: 0.8;
    }

    /* Footer Socials */
    .footer-socials {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      transition: all 0.3s;
      text-decoration: none;
    }

    .social-icon:hover {
      background: #ffffff;
      color: #001f3f;
      transform: translateY(-3px);
    }

    .social-icon svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    footer hr {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      margin: 0 auto;
      max-width: 1200px;
    }

    .copyright {
      text-align: center;
      font-size: 0.85rem;
      color: #a0b0c0;
      margin-top: 2rem;
    }

    .copyright a {
      color: #d0d8e0;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .copyright a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      footer {
        padding: 3rem 5% 1.5rem;
        text-align: center;
      }

      .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
      }

      .footer-logo {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        justify-content: center;
        width: 100%;
      }

      .footer-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-column h4 {
        margin-bottom: 1rem;
      }

      .footer-column li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        justify-content: center;
      }

      .footer-socials {
        justify-content: center;
      }

      .footer-column p {
        margin-left: auto;
        margin-right: auto;
      }

      .copyright {
        font-size: 0.8rem;
        margin-top: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.2rem;
      }


      .hero {
        margin-top: 0;
        padding-top: 200px;
      }

      /* Mobile waitlist form fixes */
      .waitlist-container {
        margin: 0 1rem;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
      }

      .waitlist-container h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
      }

      .waitlist-container p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }

      .form-group {
        flex-direction: column;
        gap: 1rem;
      }

      .form-input {
        padding: 1rem;
        font-size: 0.95rem;
        width: 100%;
      }

      .submit-btn {
        padding: 1.2rem;
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .waitlist-container {
        margin: 0 0.5rem;
        padding: 2rem 1rem;
      }

      .waitlist-container h2 {
        font-size: 1.8rem;
      }

      .waitlist-container p {
        font-size: 1rem;
      }

      .form-input {
        padding: 0.9rem;
        font-size: 0.9rem;
      }

      .submit-btn {
        padding: 1rem;
        font-size: 1rem;
      }
    }

    /* Pre-Launch Box Styles */
    .pre-launch-box {
      margin-top: 3rem;
      padding: 2rem;
      background: #f8f9fa;
      border-radius: 20px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      border: 2px solid #001f3f;
    }
    .pre-launch-title {
      font-size: 1.1rem;
      color: #001f3f;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .pre-launch-text {
      color: #555;
    }

    /* Scroll to Top Button Styles are in style.css or specific if unique */
    #scrollToTopBtn {
        display: none;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99;
        font-size: 18px;
        border: 3px solid transparent;
        outline: none;
        background-color: var(--primary-navy);
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 31, 63, 0.4);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: floatBtn 3s ease-in-out infinite;
    }
    @keyframes floatBtn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    #scrollToTopBtn:hover { background-color: var(--accent-blue); transform: scale(1.1) translateY(-5px); box-shadow: 0 8px 25px rgba(0, 31, 63, 0.5); }
    #scrollToTopBtn.at-footer { background-color: #ffffff; color: var(--primary-navy); border-color: var(--primary-navy); box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
    #scrollToTopBtn.at-footer:hover { background-color: #f0f0f0; color: var(--accent-blue); }

    /* Confetti Animation */
    .confetti-piece {
      position: fixed;
      width: 40px;
      height: 40px;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.9;
    }

    @keyframes confetti-fall {
      0% {
        transform: translateY(-100vh) rotate(0deg) scale(1);
        opacity: 1;
      }

      50% {
        opacity: 1;
      }

      100% {
        transform: translateY(100vh) rotate(720deg) scale(0.5);
        opacity: 0;
      }
    }

    /* ==================================
       FEATURE CARDS - MODERN STYLE
       ================================== */

    .features-section {
      padding: 5rem 5%;
      background: #f8f9fa;
      position: relative;
    }

    .features-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    .features-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 3rem;
      color: #001f3f;
    }

    /* Features Carousel Styles */
    .features-carousel-wrapper {
      position: relative;
      padding: 0;
    }

    .features-grid {
      display: flex;
      overflow-x: auto;
      gap: 2rem;
      padding: 2rem 1rem;
      margin-top: 1rem;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      perspective: 1000px;
      align-items: stretch;
      /* Add Scroll Snap */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .features-grid::-webkit-scrollbar {
      display: none;
    }

    .feature-card {
      flex: 0 0 520px;
      position: relative;
      height: 520px;
      border-radius: 20px;
      cursor: pointer;
      transition: transform 0.3s ease;
      transform-style: preserve-3d;
      /* Snap alignment */
      scroll-snap-align: center;
    }

    /* Carousel Controls Bar */
    .features-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    /* ... control buttons ... */

    @media (max-width: 768px) {
      .features-grid {
        gap: 1rem;
        padding: 1rem;
        scroll-padding: 0 1rem;
        /* Offset for snap */
      }

      .feature-card {
        /* Mobile: show 85% of card width to peek next card */
        flex: 0 0 88vw;
        max-width: 360px;
        height: 480px;
      }

      .features-controls {
        gap: 1rem;
        transform: scale(0.9);
        /* Slightly smaller controls */
      }
    }

    .control-btn {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: white;
      border: 1px solid #f0f0f0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #333;
      transition: all 0.3s ease;
    }

    .control-btn:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
      color: #001f3f;
    }

    .scroll-progress-container {
      position: relative;
      height: 24px;
      display: flex;
      align-items: center;
      width: 80px;
      justify-content: center;
    }

    .scroll-track-bg {
      display: flex;
      gap: 8px;
    }

    .scroll-track-bg .dot {
      width: 5px;
      height: 5px;
      background: #e6e6e6;
      border-radius: 50%;
      display: block;
    }

    .scroll-pill {
      position: absolute;
      left: 0;
      height: 5px;
      width: 24px;
      background: #001f3f;
      border-radius: 20px;
      transition: left 0.1s ease-out;
    }



    .feature-card:hover {
      transform: translateY(-10px);
    }

    /* Flip animation when active */
    .feature-card.flipped .card-inner {
      transform: rotateY(180deg);
    }

    /* Card inner container for flip */
    .card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transform-style: preserve-3d;
      transform-style: preserve-3d;
    }

    /* Front and back face shared styles */
    .card-front,
    .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 31, 63, 0.1);
    }

    .feature-card:hover .card-front,
    .feature-card:hover .card-back {
      box-shadow: 0 10px 30px rgba(0, 31, 63, 0.2);
    }

    /* Front face */
    .card-front {
      background: #ffffff;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: rotateY(0deg) translateZ(1px);
      -webkit-transform: rotateY(0deg) translateZ(1px);
    }

    /* Back face - rotated 180deg */
    .card-back {
      background: #ffffff;
      transform: rotateY(180deg) translateZ(1px);
      -webkit-transform: rotateY(180deg) translateZ(1px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* Centered content for clean look */
      align-items: center;
      padding: 2rem 1.5rem;
      text-align: center;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 31, 63, 0.2) transparent;
    }

    .card-back::-webkit-scrollbar {
      width: 4px;
    }

    .card-back::-webkit-scrollbar-thumb {
      background: rgba(0, 31, 63, 0.2);
      border-radius: 10px;
    }

    /* back-icon styles removed as requested */

    .card-back p {
      display: block !important;
      /* Override the hide rule */
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
      text-align: center;
      margin: 0;
    }

    .card-back ul {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
      text-align: left;
      width: 100%;
    }

    .card-back li {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 0.8rem;
      padding-left: 1.5rem;
      position: relative;
      line-height: 1.4;
    }

    .card-back li::before {
      content: "";
      color: #001f3f;
      font-weight: bold;
      position: absolute;
      left: 0;
      font-size: 1.2rem;
      line-height: 1.2;
    }

    .card-back .flip-back-btn {
      margin-top: 1.5rem;
      padding: 0.7rem 1.5rem;
      background: #001f3f;
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }

    .card-back .flip-back-btn:hover {
      background: #003d7a;
    }

    /* Removed overlay gradient */
    .card-front::before {
      display: none;
    }

    .card-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    /* feature-icon retired in favor of card-image */
    .feature-icon {
      display: none;
    }

    /* Bottom label box - only on front */
    .card-front h3 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      /* Semi-transparent background for overlaid title */
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(5px);
      padding: 1.25rem;
      margin: 0;
      font-size: 1.05rem;
      font-weight: 700;
      color: #001f3f;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
      z-index: 2;
      border-radius: 0 0 20px 20px;
      line-height: 1.3;
    }

    .card-front h3::after {
      content: '';
      font-size: 1.5rem;
      opacity: 0.6;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .feature-card:hover .card-front h3::after {
      transform: translateX(5px);
      opacity: 1;
    }

    /* Hide paragraphs on front, show on back */
    .card-front p {
      display: none;
    }

    /* Pattern background */
    .features-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.03;
      z-index: 1;
      contain: strict;
      pointer-events: none;
    }

    /* Mobile responsive for feature cards */
    @media (max-width: 768px) {
      .features-section {
        padding: 4rem 4%;
      }

      .card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .card-front h3 {
        height: 90px;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
      }
    }


    @media (max-width: 480px) {
      .section-title {
        font-size: 1.75rem;
      }
      
      .feature-card {
        height: 480px;
      }

      .card-back {
        padding: 1.25rem 1rem;
      }

      .back-icon {
        display: none;
        /* retired */
      }

      .card-back h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
      }

      .card-back p {
        font-size: 0.85rem;
      }

      .card-back .flip-back-btn {
        margin-top: 1rem;
        padding: 0.5rem 1.25rem;
      }
    }

    /* =================================
       MOBILE RESPONSIVE - NAVBAR BUTTONS
       ================================= */

    /* Tablet - Reduce button padding */
    @media (max-width: 1024px) {
      .navbar {
        padding: 1.2rem 4%;
      }

      .nav-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
      }

      .navbar div {
        gap: 0.75rem;
      }
    }

    /* Mobile - Stack buttons and optimize sizing (Overridden by modern menu above) */
    @media (max-width: 768px) {
      .navbar {
        height: 70px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
      }
      
      .logo {
        width: auto;
        justify-content: flex-start;
      }
      
      .nav-buttons {
        display: none;
      }
    }

    /* Security Section - Mobile First */
    .security-section {
      padding: 3rem 5%;
      background: #f8f9fa;
      text-align: center;
      overflow: hidden;
    }

    .security-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .security-scroller {
      height: 4rem;
      /* Match row height */
      overflow: hidden;
      position: relative;
    }

    .security-rows {
      display: flex;
      flex-direction: column;
      animation: textRollMobile 15s cubic-bezier(0.76, 0, 0.24, 1) infinite;
    }

    .security-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      height: 4rem;
      /* Increased for wrapping */
      padding: 0 10px;
      flex-shrink: 0;
    }

    .security-title {
      font-size: 1.1rem;
      /* Slightly smaller to fit longer phrases */
      font-weight: 900;
      color: #001f3f;
      margin: 0;
      line-height: 1.2;
      /* Remove white-space: nowrap for mobile wrapping */
    }

    .security-highlight {
      color: #afafc2;
    }

    .security-icon {
      width: 22px;
      height: 22px;
      color: #001f3f;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .security-icon svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    @keyframes textRollMobile {
      0%, 15% { transform: translateY(0); }
      20%, 35% { transform: translateY(-4rem); }
      40%, 55% { transform: translateY(-8rem); }
      60%, 75% { transform: translateY(-12rem); }
      80%, 95% { transform: translateY(-16rem); }
      100% { transform: translateY(0); }
    }

    /* Desktop Enhancements */
    @media (min-width: 768px) {
      .security-section {
        padding: 4rem 5%;
      }

      .security-scroller {
        height: 10rem;
        /* Increased for desktop wrapping */
      }

      .security-row {
        height: 10rem;
        /* Increased for desktop wrapping */
        gap: 2rem;
      }

      .security-title {
        font-size: 3.2rem;
        white-space: normal;
        /* Enable wrapping on desktop */
        max-width: 900px;
      }

      .security-icon {
        width: 60px;
        height: 60px;
      }

      .security-rows {
        animation: textRollDesktop 15s cubic-bezier(0.76, 0, 0.24, 1) infinite;
      }

      @keyframes textRollDesktop {
        0%, 15% { transform: translateY(0); }
        20%, 35% { transform: translateY(-10rem); }
        40%, 55% { transform: translateY(-20rem); }
        60%, 75% { transform: translateY(-30rem); }
        80%, 95% { transform: translateY(-40rem); }
        100% { transform: translateY(0); }
      }
    }

    /* Navbar Scrolled State */
    .navbar.scrolled {
      padding: 0.8rem 5%;
      box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
    }

/* ============================================
   CROSS-DEVICE OPTIMIZATION ENHANCEMENTS
   ============================================ */

/* Enhanced Button Touch Targets for Mobile */
button, .btn, .cta-primary, .cta-secondary, .nav-btn, 
.submit-btn, .store-btn, .download-btn, .hero-search-btn {
  min-height: 15px;
  min-width: 15px;
  -webkit-tap-highlight-color: rgba(0, 31, 63, 0.1);
  touch-action: manipulation;
  cursor: pointer;
}

/* Enhanced Link Touch Areas */
a {
  -webkit-tap-highlight-color: rgba(0, 31, 63, 0.1);
}

/* Form Input Optimizations */
input, textarea, select {
  font-size: 16px; /* Prevents zoom on iOS */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  min-height: 44px;
  padding: 0.75rem 1rem;
}

select {
  min-height: 44px;
  padding: 0.5rem 2rem 0.5rem 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* iOS Specific Input Resets */
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
}

/* Better Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-navy);
  outline-offset: 2px;
}

/* Smooth Transforms with Vendor Prefixes */
.feature-card,
.course-card,
.who-card,
.showcase-card {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/* Optimize Animations for Mobile */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Prevent Text Selection on Interactive Elements */
.hamburger,
.carousel-dots .dot,
.gallery-dots .dot,
.store-btn,
.download-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Enhanced Table Responsiveness */
table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

@media (max-width: 768px) {
  table {
    font-size: 14px;
  }
}

/* Better Modal Scrolling on Mobile */
.modal-overlay {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Fix for iOS Safe Area */
@supports (padding: max(0px)) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  
  .navbar {
    padding-left: max(5%, env(safe-area-inset-left));
    padding-right: max(5%, env(safe-area-inset-right));
  }
}

/* Enhanced Grid Responsiveness */
@media (max-width: 480px) {
  .features-grid,
  .courses-grid,
  .who-grid,
  .showcase-cards {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .store-buttons,
  .download-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .store-btn,
  .download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Tablet-Specific Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .navbar {
    padding: 0.8rem 3%;
  }
}

/* Ensure Images Don't Break Layout */
.feature-card img,
.course-card img,
.gallery-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Better Hover States for Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .course-card:hover,
  .who-card:hover {
    transform: none;
  }
  
  button:hover,
  a:hover {
    opacity: 0.9;
  }
}

/* END CROSS-DEVICE OPTIMIZATIONS */

/* Partners Page Specific Styles - Enhanced & Futuristic */
.partners-page main {
  padding-top: 80px; /* Offset for fixed header */
  background-color: #ffffff;
  overflow-x: hidden;
}


/* ============================================================
   PARTNERS PAGE  –  Minimal & Clean
   ============================================================ */

/* ── Base ── */
.partners-page body,
.partners-main {
  background: #ffffff;
  color: var(--primary-navy);
  font-family: 'Inter', sans-serif;
}

/* ── Hero ─────────────────────────────────────────────────── */
.pm-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  align-items: center;
  padding-top: 80px; /* navbar offset */
  overflow: hidden;
}

.pm-hero .container {
  padding: 120px 60px 120px 8%;
}

.pm-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.pm-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -3px;
  color: var(--primary-navy);
  margin-bottom: 2rem;
}

.pm-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.pm-scroll-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.pm-scroll-link:hover { opacity: 0.5; }

.pm-hero-img-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  overflow: hidden;
}

.pm-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: pmFloat 8s ease-in-out infinite;
}

@keyframes pmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ── Stats Bar ────────────────────────────────────────────── */
.pm-stats {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 0;
}

.pm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pm-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-right: 1px solid #e2e8f0;
  gap: 0.5rem;
  transition: background 0.3s;
}

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

.pm-stat:hover { background: #f8fafc; }

.pm-stat-num {
  font-family: 'EB Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1;
}

.pm-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
}

/* ── Partner Categories ───────────────────────────────────── */
.pm-partners {
  padding: 120px 0 80px;
}

.pm-category {
  padding: 80px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pm-category.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pm-category-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.pm-category-num {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 400;
}

.pm-category-title {
  font-family: 'EB Garamond', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
  margin: 0;
}

.pm-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 0;
}

/* ── Carousel ─────────────────────────────────────────────── */
.pm-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  cursor: grab;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.pm-carousel::-webkit-scrollbar { display: none; }
.pm-carousel:active { cursor: grabbing; }

/* ── Cards ────────────────────────────────────────────────── */
.pm-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;

  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary-navy);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pm-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e6b800;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.pm-card:hover {
  border-color: rgba(230, 184, 0, 0.5);
  box-shadow: 0 8px 30px rgba(0, 31, 63, 0.25);
  transform: translateY(-4px);
}

.pm-card:hover::before { transform: scaleX(1); }

.pm-card span {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  line-height: 1.4;
}

/* ── CTA ──────────────────────────────────────────────────── */
.pm-cta {
  padding: 120px 0;
  border-top: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.pm-cta.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pm-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.pm-cta-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.pm-cta-title {
  font-family: 'EB Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.pm-cta-desc {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
}

.pm-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 1.1rem 3rem;
  border: 1.5px solid var(--primary-navy);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pm-cta-btn:hover {
  background: var(--primary-navy);
  color: white;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pm-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: visible;
  }
  .pm-hero .container { padding: 140px 5% 60px; }
  .pm-hero-img-wrap { height: 360px; }
  .pm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-stat:nth-child(2) { border-right: none; }
  .pm-cta-inner { flex-direction: column; align-items: flex-start; gap: 3rem; }
  .pm-cta-title { font-size: 2.75rem; }
  .pm-card { flex: 0 0 220px; }
  .pm-partners { padding: 80px 0 60px; }
  .pm-category { padding: 50px 0; }
}

@media (max-width: 640px) {
  .pm-title { font-size: 2.75rem; letter-spacing: -2px; }
  .pm-stats-grid { grid-template-columns: 1fr 1fr; }
  .pm-card { flex: 0 0 175px; padding: 2rem 1.25rem; }
  .pm-card span { font-size: 0.9rem; }
  .pm-category-title { font-size: 1.5rem; }
  .pm-category-header { margin-bottom: 2rem; }
  .pm-partners { padding: 60px 0 40px; }
  .pm-category { padding: 40px 0; }
  .pm-cta { padding: 80px 0; }
  .pm-cta-title { font-size: 2.25rem; letter-spacing: -1px; }
  .pm-stat-num { font-size: 2.5rem; }
  .pm-stat { padding: 2rem 1.25rem; }
}

/* ── Mobile Touch Scroll (iOS + Android) ── */
.pm-carousel {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

/* Prevent full-page horizontal overflow caused by carousels */
.partners-main,
.pm-partners {
  overflow-x: hidden;
}

@media (max-width: 480px) {
  .pm-card { flex: 0 0 155px; padding: 1.75rem 1rem; }
  .pm-card span { font-size: 0.85rem; }
  .pm-category-title { font-size: 1.35rem; }
  .pm-hero .container { padding: 120px 5% 50px; }
  .pm-hero-img-wrap { height: 260px; }
}


.partners-hero {
  padding: 160px 0 120px;
  background: radial-gradient(at 0% 0%, rgba(0, 31, 63, 0.1) 0px, transparent 50%),
              radial-gradient(at 100% 0%, rgba(230, 184, 0, 0.1) 0px, transparent 50%),
              radial-gradient(at 100% 100%, rgba(0, 61, 122, 0.08) 0px, transparent 50%);
  text-align: left;
  position: relative;
}

.hero-header-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 31, 63, 0.05);
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
}

.partners-hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: 5.5rem;
  color: var(--primary-navy);
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -3px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #004da1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 31, 63, 0.05));
}

.hero-subtitle {
  font-size: 1.6rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.4;
  font-weight: 300;
}

/* Floating SVG Decorations */
.hero-orbits {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.orbit-circle {
  fill: none;
  stroke: var(--primary-navy);
  stroke-width: 0.5;
  stroke-dasharray: 4 8;
  animation: rotateOrbit 60s linear infinite;
  transform-origin: center;
}

.orbit-circle:nth-child(2) { animation-duration: 90s; animation-direction: reverse; }

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-image-container {
  position: relative;
  border-radius: 40px;
  padding: 20px;
  z-index: 1;
}

.futuristic-hero-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0, 31, 63, 0.2);
  animation: floatHero 8s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* Refined Mission Section */
.partners-mission {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.partners-mission::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'EB Garamond', serif;
  font-size: 12rem;
  color: rgba(0, 31, 63, 0.03);
  line-height: 1;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission-content h2 {
  font-family: 'EB Garamond', serif;
  font-size: 3.5rem;
  color: var(--primary-navy);
  margin-bottom: 2rem;
  font-weight: 600;
  font-style: italic;
}

.mission-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #475569;
  font-weight: 300;
}

/* Polished Carousel & Cards */
.partner-categories {
  padding: 100px 0;
  background: white;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.category-title::before,
.category-title::after {
  content: '';
  height: 1px;
  width: 100px;
  background: linear-gradient(to right, transparent, #cbd5e1);
}

.category-title::after { background: linear-gradient(to left, transparent, #cbd5e1); }

.partner-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
              0 10px 40px rgba(0, 31, 63, 0.04);
  padding: 3rem;
  border-radius: 24px;
}

.partner-placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #64748b 0%, var(--primary-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Swipe Indicator */
.swipe-indicator {
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.swipe-indicator svg { animation: swipeMove 2s infinite; }

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

/* Premium Gradient CTA */
.partners-cta {
  padding: 140px 0;
  background: white;
}

.glass-cta {
  position: relative;
  background: var(--primary-navy);
  padding: 1px; /* Gradient border width */
  border-radius: 40px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.glass-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent, 
    var(--accent-gold), 
    transparent 30%, 
    var(--accent-gold), 
    transparent
  );
  animation: rotateGlow 8s linear infinite;
}

.cta-box {
  background: linear-gradient(135deg, rgba(0, 31, 63, 1) 0%, rgba(0, 51, 102, 1) 100%);
  color: white;
  padding: 100px 60px;
  border-radius: 39px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Removed override — .cta-primary uses the base ghost-outline style matching .cta-secondary */

@media (max-width: 1024px) {
  .partners-hero h1 { font-size: 4rem; }
  .mission-content h2 { font-size: 2.75rem; }
}
