<style>    :root {
      /* Colori dal logo Edisoft */
      --edisoft-blue-dark: #2572A4;
      --edisoft-blue-medium: #509AC8;
      --edisoft-blue-light: #8FBBE1;
      --edisoft-accent: #3A8BBC;

      --bg: #0a0e27;
      --white: #ffffff;
      --primary: #2572A4;
      --primary-light: #509AC8;
      --secondary: #3A8BBC;
      --accent: #8FBBE1;
      --dark: #0f172a;
      --gray: #94a3b8;
      --light-gray: #cbd5e1;
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --radius: 24px;
    }

    * { 
      box-sizing: border-box; 
      margin: 0; 
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: var(--bg);
      color: white;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { text-decoration: none; color: inherit; }

    /* ANIMATED BACKGROUND */
    .animated-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    }

    .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.6;
      animation: float-orb 20s infinite ease-in-out;
      will-change: transform;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #2572A4, transparent);
      top: -10%;
      left: -10%;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, #3A8BBC, transparent);
      top: 40%;
      right: -5%;
      animation-delay: 7s;
    }

    .orb-3 {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, #8FBBE1, transparent);
      bottom: -10%;
      left: 30%;
      animation-delay: 14s;
    }

    @keyframes float-orb {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(50px, -80px) scale(1.1); }
      66% { transform: translate(-30px, 60px) scale(0.9); }
    }

    /* MOBILE MENU TOGGLE */
    .mobile-menu-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      position: relative;
      width: 32px;
      height: 32px;
      z-index: 101;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      margin: 5px 0;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      border-radius: 2px;
    }

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

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

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

    /* MOBILE MENU OVERLAY */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(10, 14, 39, 0.98);
      backdrop-filter: blur(30px);
      z-index: 99;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .mobile-menu.active {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      font-size: 2rem;
      font-weight: 700;
      color: white;
      transform: translateY(30px);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .mobile-menu.active a {
      transform: translateY(0);
      opacity: 1;
    }

    .mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }

    /* HEADER NAVIGATION */
    header {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      width: 90%;
      max-width: 1200px;
      transition: all 0.3s ease;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: rgba(15, 23, 42, 0.7);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-img {
      height: 40px;
      width: auto;
      filter: brightness(1.2);
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: 800;
      background: linear-gradient(90deg, #2572A4, #509AC8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--light-gray);
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #2572A4, #509AC8);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: white;
    }

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

    .nav-cta {
      padding: 0.7rem 1.8rem;
      background: linear-gradient(135deg, #2572A4, #3A8BBC);
      color: white;
      border-radius: 999px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(37, 114, 164, 0.4);
      min-width: 48px;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-cta:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 30px rgba(37, 114, 164, 0.6);
    }

    .nav-cta:active {
      transform: scale(0.95);
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8rem 3rem 4rem;
      z-index: 1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 1400px;
      align-items: center;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      animation: fade-slide-in 1s ease-out;
    }

    @keyframes fade-slide-in {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 900;
      letter-spacing: -2px;
      line-height: 1.1;
      text-shadow: 0 0 80px rgba(37, 114, 164, 0.5);
      color: white;
    }

    .hero h1 span {
      background: linear-gradient(135deg, #2572A4, #3A8BBC, #8FBBE1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 3s ease infinite;
      background-size: 200% 200%;
    }

    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .hero p {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      color: white;
      line-height: 1.8;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.2rem 2.2rem;
      background: linear-gradient(135deg, #2572A4, #3A8BBC);
      color: white;
      border-radius: 999px;
      font-weight: 600;
      font-size: clamp(0.95rem, 2.5vw, 1.1rem);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 40px rgba(37, 114, 164, 0.4);
      position: relative;
      overflow: hidden;
      min-height: 56px;
      text-align: center;
      -webkit-user-select: none;
      user-select: none;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .cta:hover::before {
      width: 300px;
      height: 300px;
    }

    .cta:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 60px rgba(37, 114, 164, 0.6);
    }

    .cta:active {
      transform: scale(0.96);
    }

    .cta-secondary {
      background: transparent;
      border: 2px solid rgba(80, 154, 200, 0.5);
      backdrop-filter: blur(10px);
      box-shadow: none;
    }

    .cta-secondary:hover {
      background: rgba(37, 114, 164, 0.2);
      border-color: var(--primary-light);
    }

    .cta-secondary:active {
      background: rgba(37, 114, 164, 0.3);
    }

    /* TRUST BADGES */
    .trust-badges {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: var(--light-gray);
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      padding: 0.7rem 1.2rem;
      background: rgba(37, 114, 164, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(80, 154, 200, 0.3);
      border-radius: 999px;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .trust-badge:hover {
      background: rgba(37, 114, 164, 0.2);
      transform: translateY(-2px);
      border-color: rgba(80, 154, 200, 0.5);
    }

    .trust-badge:active {
      transform: scale(0.95);
    }

    .trust-badge::before {
      content: "✓";
      color: #3A8BBC;
      font-weight: bold;
      font-size: 1.3rem;
      text-shadow: 0 0 10px #3A8BBC;
    }

    /* ENHANCED MATRIX VISUALIZATION */
    .hero-card {
      position: relative;
      animation: fade-slide-in 1s ease-out 0.3s both;
    }

    .matrix-container {
      position: relative;
      width: 100%;
      height: 550px;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 14, 39, 0.98));
      border-radius: 30px;
      border: 2px solid rgba(37, 114, 164, 0.5);
      overflow: hidden;
      box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(37, 114, 164, 0.3) inset;
      transition: all 0.5s ease;
    }

    .matrix-container:hover {
      border-color: rgba(80, 154, 200, 0.8);
      box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 120px rgba(37, 114, 164, 0.5) inset;
      transform: translateY(-5px);
    }

    #matrixCanvas {
      width: 100%;
      height: 100%;
      opacity: 0.5;
    }

    .matrix-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      padding: 3rem 2rem;
      z-index: 2;
    }

    .matrix-header {
      text-align: center;
      margin-bottom: 1rem;
    }

    .matrix-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #509AC8;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 0.5rem;
      animation: glow-pulse 2s ease-in-out infinite;
    }

    @keyframes glow-pulse {
      0%, 100% { text-shadow: 0 0 20px rgba(80, 154, 200, 0.6); }
      50% { text-shadow: 0 0 40px rgba(80, 154, 200, 1); }
    }

    .matrix-subtitle {
      font-size: 0.85rem;
      color: var(--gray);
      letter-spacing: 1px;
    }

    .data-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      width: 100%;
      max-width: 500px;
    }

    .data-stat {
      background: linear-gradient(135deg, rgba(37, 114, 164, 0.2), rgba(58, 139, 188, 0.15));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(80, 154, 200, 0.5);
      border-radius: 20px;
      padding: 1.5rem 1rem;
      text-align: center;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(37, 114, 164, 0.3);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .data-stat::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: radial-gradient(circle, rgba(80, 154, 200, 0.4), transparent);
      transform: translate(-50%, -50%);
      border-radius: 50%;
      transition: width 0.6s, height 0.6s;
    }

    .data-stat:hover::before {
      width: 300px;
      height: 300px;
    }

    .data-stat:hover {
      transform: translateY(-10px) scale(1.05);
      border-color: rgba(80, 154, 200, 0.9);
      box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(37, 114, 164, 0.6);
    }

    .stat-value {
      font-size: 2.8rem;
      font-weight: 900;
      background: linear-gradient(135deg, #2572A4, #509AC8, #8FBBE1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% 200%;
      animation: gradient-flow 4s ease infinite;
      position: relative;
      z-index: 1;
    }

    @keyframes gradient-flow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .stat-label {
      font-size: 0.75rem;
      color: #cbd5e1;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 0.8rem;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    .system-status {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.4);
      border-radius: 999px;
      padding: 0.8rem 1.5rem;
      animation: fade-in-up 1s ease-out 0.8s both;
    }

    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .status-dot {
      width: 12px;
      height: 12px;
      background: #10b981;
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
      box-shadow: 0 0 20px #10b981, 0 0 40px #10b981;
    }

    @keyframes pulse-dot {
      0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px #10b981;
      }
      50% { 
        transform: scale(1.2); 
        box-shadow: 0 0 30px #10b981, 0 0 50px #10b981;
      }
    }

    .status-text {
      font-size: 0.9rem;
      font-weight: 600;
      color: #10b981;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* SECTIONS */
    section {
      position: relative;
      padding: 6rem 2rem;
      z-index: 1;
    }

    .section-title {
      text-align: center;
      margin-bottom: 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-title h2 {
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      background: linear-gradient(135deg, #fff, #cbd5e1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-title p {
      color: var(--light-gray);
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      line-height: 1.8;
    }

    /* STATS WITH GLASS */
    .stats-section {
      padding: 3rem 2rem;
    }

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

    .stat-card {
      background: rgba(37, 114, 164, 0.08);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(80, 154, 200, 0.3);
      border-radius: var(--radius);
      padding: 2.5rem 1.5rem;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      -webkit-user-select: none;
      user-select: none;
    }

    .stat-card:hover {
      transform: translateY(-10px) scale(1.03);
      background: rgba(37, 114, 164, 0.15);
      box-shadow: 0 20px 60px rgba(37, 114, 164, 0.4);
      border-color: rgba(80, 154, 200, 0.6);
    }

    .stat-card:active {
      transform: scale(0.97);
    }

    .stat-number {
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 900;
      background: linear-gradient(135deg, #2572A4, #509AC8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 0.5rem;
    }

    /* THEMIS HERO SECTION - EVIDENZA SPECIALE */
    .themis-hero {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(37, 114, 164, 0.3));
      border-radius: 40px;
      margin: 0 2rem;
      padding: 6rem 2rem;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
      border: 2px solid rgba(139, 92, 246, 0.5);
      box-shadow: 0 40px 100px rgba(139, 92, 246, 0.3);
    }

    .themis-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
      border-radius: 50%;
      animation: pulse-glow 8s infinite ease-in-out;
    }

    @keyframes pulse-glow {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.1); }
    }

    .themis-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .themis-text h2 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 900;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #fff, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .themis-text h2 span {
      color: #a78bfa;
      text-shadow: 0 0 40px #a78bfa;
    }

    .themis-badge {
      display: inline-block;
      background: rgba(139, 92, 246, 0.2);
      border: 1px solid rgba(139, 92, 246, 0.5);
      border-radius: 999px;
      padding: 0.5rem 1.2rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: #a78bfa;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .themis-features-list {
      list-style: none;
      margin: 2rem 0;
    }

    .themis-features-list li {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1.1rem;
      color: var(--light-gray);
    }

    .themis-features-list li::before {
      content: "✓";
      color: #a78bfa;
      font-weight: bold;
      font-size: 1.5rem;
      text-shadow: 0 0 10px #a78bfa;
    }

    .themis-visual {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 14, 39, 0.98));
      border-radius: 30px;
      border: 2px solid rgba(139, 92, 246, 0.5);
      padding: 3rem;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
    }

    .themis-icon {
      font-size: 5rem;
      filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.6));
    }

    /* SERVICE CARDS GRID */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .service-card {
      background: rgba(37, 114, 164, 0.08);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(80, 154, 200, 0.3);
      border-radius: var(--radius);
      padding: 2.5rem;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #2572A4, #509AC8);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

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

    .service-card:hover {
      transform: translateY(-15px) scale(1.03);
      background: rgba(37, 114, 164, 0.15);
      box-shadow: 0 30px 80px rgba(37, 114, 164, 0.4);
      border-color: rgba(80, 154, 200, 0.6);
    }

    .service-card:active {
      transform: scale(0.98);
    }

    .service-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: block;
      filter: drop-shadow(0 0 20px rgba(37, 114, 164, 0.5));
    }

    .service-card h3 {
      font-size: clamp(1.3rem, 3.5vw, 1.8rem);
      margin-bottom: 1rem;
      color: white;
      font-weight: 700;
    }

    .service-card p {
      color: var(--light-gray);
      font-size: clamp(0.95rem, 2.2vw, 1.1rem);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #509AC8;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .service-link:hover {
      gap: 0.8rem;
      color: #8FBBE1;
    }

    .service-link::after {
      content: "→";
      transition: transform 0.3s ease;
    }

    .service-link:hover::after {
      transform: translateX(5px);
    }

    /* ATHENA SECTION */
    .athena-section {
      background: linear-gradient(135deg, rgba(37, 114, 164, 0.25), rgba(58, 139, 188, 0.2));
      border-radius: 40px;
      margin: 0 2rem;
      padding: 6rem 2rem;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
      border: 2px solid rgba(80, 154, 200, 0.4);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    }

    .athena-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(80, 154, 200, 0.4), transparent);
      border-radius: 50%;
      animation: pulse-glow 8s infinite ease-in-out;
    }

    .athena-section h2 span {
      color: #509AC8;
      text-shadow: 0 0 40px #509AC8;
    }

    .athena-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
      position: relative;
      z-index: 2;
    }

    .athena-card {
      background: rgba(37, 114, 164, 0.15);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(80, 154, 200, 0.4);
      border-radius: 25px;
      padding: 2rem;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .athena-card:hover {
      transform: translateY(-10px);
      background: rgba(37, 114, 164, 0.25);
      box-shadow: 0 20px 60px rgba(37, 114, 164, 0.5);
      border-color: rgba(80, 154, 200, 0.6);
    }

    .athena-card:active {
      transform: scale(0.98);
    }

    .athena-card h4 {
      font-size: clamp(1.2rem, 3vw, 1.4rem);
      margin-bottom: 1rem;
      color: #8FBBE1;
      font-weight: 700;
    }

    .athena-card p {
      font-size: clamp(0.95rem, 2.2vw, 1.05rem);
      color: #cbd5e1;
      line-height: 1.7;
    }

    /* COMPLIANCE SECTION */
    .compliance-section {
      padding: 6rem 2rem;
    }

    .compliance-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 3rem auto 0;
    }

    .compliance-card {
      background: rgba(251, 146, 60, 0.1);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(251, 146, 60, 0.3);
      border-radius: 25px;
      padding: 2.5rem;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(251, 146, 60, 0.2);
    }

    .compliance-card:hover {
      transform: translateY(-10px);
      background: rgba(251, 146, 60, 0.15);
      box-shadow: 0 20px 60px rgba(251, 146, 60, 0.4);
      border-color: rgba(251, 146, 60, 0.5);
    }

    .compliance-badge {
      display: inline-block;
      background: rgba(251, 146, 60, 0.2);
      color: #fb923c;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 1rem;
      letter-spacing: 1px;
    }

    /* FINAL CTA */
    .final-cta {
      text-align: center;
      padding: 8rem 2rem;
    }

    .final-cta h2 {
      font-size: clamp(2rem, 6vw, 3.8rem);
      margin-bottom: 3rem;
      line-height: 1.3;
      font-weight: 900;
    }

    /* FOOTER */
    footer {
      background: rgba(10, 14, 39, 0.8);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(80, 154, 200, 0.2);
      padding: 4rem 2rem 2rem;
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2.5rem;
      max-width: 1400px;
      margin: 0 auto 3rem;
    }

    .footer-column h4 {
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      color: white;
    }

    .footer-column p,
    .footer-column a {
      color: var(--light-gray);
      line-height: 2.2;
      display: block;
      transition: all 0.3s ease;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .footer-column a:hover {
      color: #509AC8;
      transform: translateX(5px);
    }

    .footer-column a:active {
      transform: translateX(3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(80, 154, 200, 0.2);
      color: var(--gray);
      font-size: clamp(0.85rem, 2vw, 0.95rem);
    }

    /* MOBILE RESPONSIVE */
    @media(max-width: 1200px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .hero-card {
        display: none;
      }

      .themis-content {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media(max-width: 768px) {
      header {
        width: 95%;
        top: 15px;
      }

      nav {
        padding: 0.8rem 1.2rem;
      }

      .logo-img {
        height: 32px;
      }

      .logo-text {
        font-size: 1.2rem;
      }

      .nav-links {
        display: none;
      }

      .nav-cta {
        font-size: 0.9rem;
        padding: 0.6rem 1.4rem;
      }

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

      .hero {
        min-height: calc(100vh - 60px);
        padding: 6rem 1.5rem 3rem;
      }

      section {
        padding: 4rem 1.5rem;
      }

      .stats-section {
        padding: 2rem 1.5rem;
      }

      .stats-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .stat-card {
        padding: 2rem 1rem;
      }

      .services-grid,
      .athena-features,
      .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .themis-hero,
      .athena-section {
        margin: 0 1rem;
        padding: 4rem 1.5rem;
        border-radius: 30px;
      }

      .final-cta {
        padding: 6rem 1.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .cta {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }

      .hero-ctas {
        width: 100%;
        flex-direction: column;
      }

      .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
      }

      .trust-badge {
        width: 100%;
        justify-content: center;
      }

      .data-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .themis-visual {
        min-height: 300px;
        padding: 2rem;
      }

      .themis-icon {
        font-size: 3rem;
      }
    }

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

    a:focus-visible, button:focus-visible {
      outline: 3px solid #509AC8;
      outline-offset: 3px;
    }

    /* iOS SAFARI FIXES */
    @supports (-webkit-touch-callout: none) {
      .hero {
        min-height: -webkit-fill-available;
      }

      nav {
        -webkit-backdrop-filter: blur(20px);
      }

      .glass, .stat-card, .service-card, .athena-card {
        -webkit-backdrop-filter: blur(20px);
      }
    }
</style>