:root {
      --primary-gradient: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
      --secondary-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
      --accent-gradient: linear-gradient(135deg, #6366f1, #4f46e5);
      --light-gradient: linear-gradient(135deg, #ffffff, #f8fafc, #f1f5f9);
      --glass-bg: rgba(139, 92, 246, 0.1);
      --glass-border: rgba(139, 92, 246, 0.2);
      --text-primary: #1e293b;
      --text-secondary: #64748b;
      --text-light: #1e293b;
    }

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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: var(--text-primary);
      background: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* NAVIGATION */


    /* HERO SECTION */
    .hero-section {
      min-height: 100vh;
      background: var(--light-gradient);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 6rem 0 2rem;
      margin-top: 80px;
    }

    .hero-bg-animation {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0.3;
    }

    .floating-orb {
      position: absolute;
      border-radius: 50%;
      background: var(--primary-gradient);
      filter: blur(2px);
      animation: float 8s ease-in-out infinite;
      opacity: 0.1;
    }

    .orb-1 { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
    .orb-2 { width: 200px; height: 200px; top: 60%; right: 15%; animation-delay: 2s; }
    .orb-3 { width: 150px; height: 150px; bottom: 20%; left: 60%; animation-delay: 4s; }

    @keyframes float {
      0%, 100% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-30px) scale(1.1); }
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-content {
      color: var(--text-primary);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      padding: 1rem 2rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      font-weight: 600;
      color: #8b5cf6;
      position: relative;
      overflow: hidden;
    }

    .hero-badge::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    .hero-title {
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #1e293b, #8b5cf6, #3b82f6);
      background-size: 200% 200%;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 4s ease infinite;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero-subtitle {
      font-size: 1.4rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 3rem;
      max-width: 600px;
    }

    .hero-cta-group {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--primary-gradient);
      color: white;
      padding: 1.2rem 3rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
    }

    .btn-secondary {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: #8b5cf6;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      padding: 1.2rem 2.5rem;
      border: 2px solid var(--glass-border);
      border-radius: 50px;
      transition: all 0.3s ease;
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
    }

    .btn-secondary:hover {
      background: rgba(139, 92, 246, 0.2);
      border-color: rgba(139, 92, 246, 0.4);
      transform: translateY(-2px);
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-3d-card {
      width: 100%;
      max-width: 500px;
      height: 600px;
      background: white;
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
      animation: cardFloat 6s ease-in-out infinite;
      box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
    }

    @keyframes cardFloat {
      0%, 100% { transform: translateY(0px) rotateY(0deg); }
      50% { transform: translateY(-20px) rotateY(5deg); }
    }

    .hero-3d-card:hover {
      transform: scale(1.02) rotateY(10deg);
      box-shadow: 0 30px 80px rgba(139, 92, 246, 0.2);
    }

    .card-content {
      padding: 3rem 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: var(--text-primary);
    }

    .card-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .stat-item {
      text-align: center;
      padding: 1.5rem;
      background: var(--glass-bg);
      border-radius: 16px;
      border: 1px solid var(--glass-border);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 900;
      color: #8b5cf6;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* INNOVATION SHOWCASE SECTION */
    .innovation-section {
      padding: 8rem 0;
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
      position: relative;
    }

    .section-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 6rem;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(139, 92, 246, 0.1);
      color: #8b5cf6;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 2rem;
    }

    .section-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
      position: relative;
    }

    .section-subtitle {
      font-size: 1.3rem;
      color: var(--text-secondary);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .innovation-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .innovation-card {
      background: white;
      border-radius: 24px;
      padding: 3rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(139, 92, 246, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .innovation-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-gradient);
    }

    .innovation-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(139, 92, 246, 0.15);
    }

    .card-icon {
      width: 80px;
      height: 80px;
      background: var(--primary-gradient);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      margin-bottom: 2rem;
      transition: transform 0.3s ease;
    }

    .innovation-card:hover .card-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .card-description {
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .card-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .feature-tag {
      background: rgba(139, 92, 246, 0.1);
      color: #8b5cf6;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    /* VALUES MASONRY SECTION */
    .values-section {
      padding: 8rem 0;
      background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
      position: relative;
    }

    .values-masonry {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .value-card {
      background: white;
      border-radius: 24px;
      padding: 3rem 2rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(139, 92, 246, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .value-card:nth-child(2n) {
      transform: translateY(2rem);
    }

    .value-card:nth-child(3n) {
      transform: translateY(-1rem);
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-gradient);
    }

    .value-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
    }

    .value-icon {
      width: 80px;
      height: 80px;
      background: var(--primary-gradient);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      margin-bottom: 2rem;
      transition: transform 0.3s ease;
    }

    .value-card:hover .value-icon {
      transform: scale(1.1) rotate(10deg);
    }

    .value-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .value-description {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* FINAL CTA SECTION */
    .cta-section {
      padding: 8rem 0;
      background: var(--primary-gradient);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-particles {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      animation: particleFloat 10s linear infinite;
    }

    @keyframes particleFloat {
      0% { transform: translateY(100vh) translateX(0px); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
    }

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

    .cta-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
      background-size: 200% 200%;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 3s ease infinite;
    }

    .cta-subtitle {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 3rem;
      line-height: 1.7;
    }

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

    /* Footer */
    .footer {
      background: #ffffff;
      color: #334155;
      padding: 4rem 0 2rem 0;
      border-top: 1px solid #e5e7eb;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      margin-top: 1rem;
      color: #64748b;
      line-height: 1.6;
    }

    .footer-section h4 {
      color: #1e293b;
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 18px;
    }

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

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: #64748b;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 15px;
    }

    .footer-links a:hover {
      color: #8b5cf6;
    }

    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      padding-top: 2rem;
      text-align: center;
      color: #64748b;
      font-size: 14px;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
      }
    }

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

      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
      }

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

      .values-masonry {
        grid-template-columns: 1fr;
      }

      .value-card {
        transform: none !important;
      }

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

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

    @media (max-width: 480px) {
      .section-container {
        padding: 0 1rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    /* SCROLL ANIMATIONS */
    .fade-in {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s ease;
    }

    .slide-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .slide-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.8s ease;
    }

    .slide-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }