/* ============= Core Styles ============= */
    :root {
      --top-nav-h: 64px;
      --mobile-menu-width: 280px;
    }
    html {
      scroll-behavior: smooth;
    }
    
    /* Skip to main content link (accessibility) */
    .skip-to-content {
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      background: #ff8a00;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      z-index: 10000;
      transition: top 0.3s;
    }
    .skip-to-content:focus {
      top: 10px;
    }
    
    /* Top navigation bar */
    .topnav-dark {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10050;
      background: #2f3047;
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    
    .nav-inner {
      max-width: min(1120px, 92vw);
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(12px, 2vw, 18px);
      flex-wrap: nowrap;
      min-width: 0;
    }
    
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      text-decoration: none;
      font-weight: 900;
      letter-spacing: .2px;
      flex-shrink: 0;
      min-width: 0;
    }

    .brand-name {
      display: inline-block;
      font-size: clamp(16px, 1.5vw, 22px);
      white-space: nowrap;
      font-weight: inherit;
      line-height: 1;
    }
    
    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid rgba(255,255,255,0.9);
      box-shadow: 0 3px 8px rgba(0,0,0,0.22);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    
    .nav-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: clamp(10px, 2.2vw, 28px);
      font-weight: 700;
      font-size: clamp(13px, 1.1vw, 16px);
      flex: 1 1 auto;
      justify-content: center;
      flex-wrap: nowrap;
      min-width: 0;
    }
    
    .nav-links a {
      color: #fff;
      text-decoration: none;
      opacity: .9;
      transition: opacity 0.2s;
      padding: clamp(6px, 1vh, 11px) 0;
      white-space: nowrap;
    }

    @media (max-width: 1100px) {
      .brand-name {
        font-size: clamp(15px, 1.3vw, 20px);
      }
      .nav-links {
        gap: clamp(9px, 1.9vw, 22px);
        font-size: clamp(12.5px, 1.05vw, 15px);
      }
      .nav-actions {
        gap: 14px;
      }
      .nav-actions .cta {
        padding: 9px 16px;
        font-size: 15px;
      }
    }

    @media (max-width: 980px) {
      .nav-inner {
        gap: 10px;
      }
      .brand-name {
        font-size: clamp(14px, 1.2vw, 18px);
      }
      .nav-links {
        gap: 10px;
        font-size: 13px;
      }
      .nav-links a {
        padding: 7px 0;
      }
      .nav-actions {
        gap: 9px;
      }
      .nav-actions .nav-link {
        font-size: 13px;
      }
      .nav-actions .cta {
        padding: 7px 13px;
        font-size: 13.5px;
      }
      .lang-toggle {
        padding: 6px 10px;
        min-width: 38px;
        font-size: 11px;
      }
    }

    @media (max-width: 900px) {
      .topnav-dark .brand-name {
        display: none;
      }
    }
    
    .nav-links a:hover, .nav-links a:focus {
      opacity: 1;
      outline: 2px solid rgba(255,191,0,0.5);
      outline-offset: 4px;
      border-radius: 4px;
    }
    
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex: 0 1 auto;
      flex-wrap: nowrap;
      min-width: 0;
    }
    
    .nav-actions .nav-link {
      color: #ffbe8d;
      text-decoration: none;
      font-weight: 700;
      transition: color 0.2s;
    }
    
    .nav-actions .nav-link:hover {
      color: #fff;
    }

    .nav-actions .cta {
      white-space: nowrap;
      flex: 0 1 auto;
    }
    .lang-toggle {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 999px;
      padding: 7px 14px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .lang-toggle:hover,
    .lang-toggle:focus {
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.55);
      box-shadow: 0 10px 22px rgba(0,0,0,0.18);
      transform: translateY(-1px);
      outline: none;
    }

    .lang-toggle .lang-label {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      color: #fff;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .mobile-menu-links .lang-toggle {
      width: auto;
      margin: 0 auto;
      display: inline-flex;
    }

    @media (max-width: 1100px) {
      .brand-name {
        font-size: clamp(15px, 1.3vw, 20px);
      }
      .nav-links {
        gap: clamp(9px, 1.9vw, 22px);
        font-size: clamp(12.5px, 1.05vw, 15px);
      }
      .nav-actions {
        gap: 14px;
      }
      .nav-actions .cta {
        padding: 9px 16px;
        font-size: 15px;
      }
    }

    @media (max-width: 980px) {
      .nav-inner {
        gap: 10px;
      }
      .brand-name {
        font-size: clamp(14px, 1.2vw, 18px);
      }
      .nav-links {
        gap: 10px;
        font-size: 13px;
      }
      .nav-links a {
        padding: 7px 0;
      }
      .nav-actions {
        gap: 9px;
      }
      .nav-actions .nav-link {
        font-size: 13px;
      }
      .nav-actions .cta {
        padding: 7px 13px;
        font-size: 13.5px;
      }
      .lang-toggle {
        padding: 6px 10px;
        min-width: 38px;
        font-size: 11px;
      }
    }

    @media (max-width: 900px) {
      .topnav-dark .brand-name {
        display: none;
      }
    }
    
    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 16px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ffb703, #ff8a00);
      color: #fff;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(255,138,0,.26);
      transition: all 0.3s;
    }
    
    .cta:hover, .cta:focus {
      box-shadow: 0 14px 30px rgba(255,138,0,.32);
      transform: translateY(-2px);
    }
    
    /* Mobile hamburger menu */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      padding: 8px;
      z-index: 10051;
    }
    .mobile-menu-toggle .menu-icon {
      display: block;
      width: 24px;
      height: 24px;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      fill: none;
    }
    .mobile-menu-toggle .menu-icon-close {
      display: none;
    }
    .mobile-menu-toggle[aria-expanded="true"] .menu-icon-open {
      display: none;
    }
    .mobile-menu-toggle[aria-expanded="true"] .menu-icon-close {
      display: block;
    }
    
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;
      width: var(--mobile-menu-width);
      height: 100vh;
      background: #2f3047;
      box-shadow: -4px 0 20px rgba(0,0,0,0.3);
      z-index: 10049;
      transition: right 0.3s ease;
      overflow-y: auto;
    }
    
    .mobile-menu.open {
      right: 0;
    }
    
    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu-close {
      background: none;
      border: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
      padding: 4px;
    }
    
    .mobile-menu-links {
      list-style: none;
      padding: 20px;
      margin: 0;
    }
    
    .mobile-menu-links li {
      margin-bottom: 12px;
    }
    
    .mobile-menu-links a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      display: block;
      padding: 10px;
      border-radius: 8px;
      transition: background 0.2s;
    }
    
    .mobile-menu-links a:hover {
      background: rgba(255,255,255,0.1);
    }
    .mobile-submenu details {
      width: 100%;
    }
    .mobile-submenu summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      padding: 8px;
      border-radius: 0;
      background: transparent;
      cursor: pointer;
      transition: background 0.2s;
    }
    .mobile-submenu summary:hover {
      background: rgba(255,255,255,0.08);
    }
    .mobile-submenu summary::-webkit-details-marker {
      display: none;
    }
    .mobile-submenu summary::after {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.2s;
    }
    .mobile-submenu details[open] summary::after {
      transform: rotate(-135deg);
    }
    .mobile-submenu-links {
      list-style: none;
      margin: 6px 0 0;
      padding: 0 0 0 10px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .mobile-submenu-links a {
      font-size: 15px;
      font-weight: 600;
      opacity: 0.9;
      padding: 6px 10px;
      background: transparent;
      border-radius: 4px;
    }
    
    .mobile-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      z-index: 10048;
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .mobile-overlay.show {
      display: block;
      opacity: 1;
    }

    body.mobile-menu-open {
      overflow: hidden;
    }
    
    .topnav-spacer {
      height: var(--top-nav-h);
    }
    
    /* Ticker position adjustment */
    .ticker {
      position: fixed;
      top: calc(var(--top-nav-h) + 15px);
      left: 0;
      right: 0;
      z-index: 100;
    }
    
    /* Globe container */
    .globe-frame {
      position: relative;
      height: 60vh;
      min-height: 400px;
      margin: 32px 0;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    
    .globe-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    
    /* Services section new styles */
    .services-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
      align-items: start;
      margin-top: 40px;
    }
    
    .services-left {
      position: relative;
    }
    
    .services-title {
      font-size: 48px;
      font-weight: 300;
      margin-bottom: 24px;
      color: #1a1a2e;
      border-bottom: 3px solid #2d6a4f;
      display: inline-block;
      padding-bottom: 8px;
    }
    
    .services-intro {
      font-size: 16px;
      line-height: 1.8;
      color: #333;
      margin-bottom: 32px;
    }
    
    .services-intro strong {
      font-weight: 600;
    }
    
    .btn-learn-more {
      display: inline-block;
      padding: 14px 32px;
      background: #2d6a4f;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s;
    }
    
    .btn-learn-more:hover {
      background: #1b4332;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
    }
    
    .services-right {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    
    .service-accordion-item {
      background: white;
      border: 1px solid rgba(45, 106, 79, 0.2);
      overflow: hidden;
    }
    
    .service-accordion-item:first-child {
      border-radius: 8px 8px 0 0;
    }
    
    .service-accordion-item:last-child {
      border-radius: 0 0 8px 8px;
    }
    
    .service-accordion-btn {
      width: 100%;
      padding: 20px 24px;
      background: white;
      border: none;
      text-align: left;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
      color: #1a1a2e;
    }
    
    .service-accordion-btn:hover {
      background: rgba(45, 106, 79, 0.05);
    }
    
    .service-accordion-btn:focus {
      outline: 2px solid #2d6a4f;
      outline-offset: -2px;
    }
    
    .accordion-icon {
      font-size: 14px;
      color: #2d6a4f;
      transition: transform 0.3s;
    }
    
    .service-accordion-item.active .accordion-icon {
      transform: rotate(180deg);
    }
    
    .service-accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 24px;
      background: white;
    }
    
    .service-accordion-item.active .service-accordion-content {
      max-height: 600px;
      padding: 0 24px 20px;
    }
    
    .service-accordion-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .service-accordion-content li {
      padding: 8px 0;
      padding-left: 24px;
      position: relative;
      color: #555;
      line-height: 1.6;
    }
    
    .service-accordion-content li::before {
      content: "•";
      position: absolute;
      left: 8px;
      color: #2d6a4f;
      font-weight: bold;
    }

    
    @media (max-width: 968px) {
      .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .services-left {
        position: static;
      }
      
      .services-title {
        font-size: 36px;
      }
    }

    .section__title a {
      color: inherit;
      text-decoration: none;
    }

    .section__title a:hover,
    .section__title a:focus-visible {
      text-decoration: underline;
    }

    /* FAQ styles */
    .faq-section {
      margin-top: 60px;
    }
    
    .faq-item {
      background: white;
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: box-shadow 0.3s;
    }
    
    .faq-item:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 20px 24px;
      background: none;
      border: none;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.2s;
    }
    
    .faq-question:hover {
      background: rgba(255,138,0,0.05);
    }
    
    .faq-question:focus {
      outline: 2px solid #ff8a00;
      outline-offset: -2px;
    }
    
    .faq-icon {
      font-size: 24px;
      transition: transform 0.3s;
      color: transparent;
      position: relative;
    }

    .faq-icon::after {
      content: "+";
      position: absolute;
      inset: 0;
      display:flex;
      justify-content:center;
      align-items:center;
      color: #ff8a00;
      font-weight: 700;
    }

    .faq-item.active .faq-icon {
      transform: rotate(0deg);
    }

    .faq-item.active .faq-icon::after {
      content: "−";
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 24px;
    }
    
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 24px 20px;
    }
    
    .faq-answer p {
      margin: 0;
      line-height: 1.6;
      color: #666;
    }

    /* Footer */
    .site-footer {
      margin-top: 96px;
      padding: 80px 0 48px;
      background: #2f3047;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: none;
    }

    .site-footer > * {
      position: relative;
      z-index: 1;
    }

    .site-footer .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
      gap: clamp(24px, 5vw, 72px);
      align-items: flex-start;
    }

    .footer-brand {
      max-width: 460px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: #ffffff;
      text-decoration: none;
      font-size: 20px;
    }

    .footer-logo .logo-mark {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: linear-gradient(135deg, #21d4fd, #2163fd);
      display: grid;
      place-items: center;
      font-weight: 900;
      color: #050f1f;
      font-size: 18px;
    }

    .footer-text {
      margin: 0;
      color: rgba(255,255,255,0.82);
      line-height: 1.8;
      font-size: 15px;
    }

    .footer-socials {
      display: flex;
      gap: 14px;
      margin-top: 8px;
    }

    .footer-socials a {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(9, 16, 41, 0.4);
      display: grid;
      place-items: center;
      color: #ffffff;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .footer-socials a:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,0.12);
      color: #1bc5ff;
    }

    .footer-socials svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .footer-heading {
      margin: 0 0 18px;
      font-size: 16px;
      font-weight: 700;
      color: #fff !important;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .footer-heading::after {
      content: '';
      height: 2px;
      width: 36px;
      background: rgba(255,255,255,0.5);
      border-radius: 2px;
    }

    .footer-links,
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 14px;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      letter-spacing: 0.01em;
      opacity: 0.95;
      transition: opacity 0.25s ease, color 0.25s ease;
    }

    .footer-links a:hover {
      color: #4de0ff;
      opacity: 1;
    }

    .footer-contact {
      gap: 18px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: rgba(8, 18, 41, 0.55);
      border: 1px solid rgba(255,255,255,0.12);
      display: grid;
      place-items: center;
      color: #ffffff;
    }

    .contact-icon svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 2px;
      color: #fff;
    }

    .contact-details span {
      font-size: 14px;
      color: #fff;
    }

    .contact-details strong {
      font-size: 12px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #fff;
    }

    .contact-details a {
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      opacity: 0.95;
      transition: opacity 0.25s ease, color 0.25s ease;
    }

    .contact-details a:hover {
      color: #4de0ff;
      opacity: 1;
    }

    .footer-bottom {
      margin-top: 56px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.15);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }

    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      font-weight: 600;
    }

    .footer-bottom a:hover {
      color: #a7f5ff;
    }

    @media (max-width: 960px) {
      .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    
    /* Loading animation */
    .loading-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255,255,255,.3);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    /* Responsive design */
    @media (max-width: 760px) {
      :root {
        --top-nav-h: 58px;
      }
      
      .nav-links {
        display: none;
      }
      
      .mobile-menu-toggle {
        display: block;
      }
      
      .mobile-menu {
        display: block;
        top: var(--top-nav-h);
        height: calc(100vh - var(--top-nav-h));
      }

      .nav-actions {
        gap: 12px;
      }
      
      .topnav-dark .brand-name {
        display: none;
      }

      .mobile-menu-header {
        display: none;
      }

      .topnav-spacer {
        height: 0;
      }

      .hero .container {
        padding-top: 0;
      }

      .services-layout {
        gap: 20px;
      }

      .services-intro {
        margin-bottom: 16px;
      }

      #services.section {
        padding-top: 18px;
        padding-bottom: 18px;
      }

      #faq.section {
        padding-top: 18px;
        padding-bottom: 18px;
      }

      .faq-section {
        margin-top: 30px;
      }

      
      .globe-frame {
        height: 50vh;
        min-height: 300px;
      }

      
      .faq-question {
        font-size: 16px;
        padding: 16px 20px;
      }

      .site-footer {
        padding: 40px 0 24px;
      }

      .footer-brand {
        gap: 10px;
      }

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

      .site-footer {
        margin-top: 48px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
      }
    }
    
    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
      .faq-item {
        background: #2a2a3e;
      }
      
      .faq-answer p {
        color: #ccc;
      }
    }
    
    /* Reduce motion preference */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      
      .ticker {
        display: none;
      }
    }
