        :root {
            --primary: #5743f1;
            --secondary: #e67812;
            --dark: #111111;
            --light: #ffffff;
            --gray-bg: #f9fafb;
            --text: #222222;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 22px;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );
body {
  padding-top: 110px; /* matches header height */
}

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(201, 201, 201, 0.35);

  transition: all 0.35s ease;
}

.site-header.scrolled .header-inner {
  backdrop-filter: blur(30px);
}

/* LOGO */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo .apex {
  color: rgb(81, 87, 239);
}

.logo .finish {
  color: rgb(255, 106, 0);
}

/* NAV */
.nav-links {
  display: flex;
  gap: 26px;
  color: #000;
}

.nav-links a {
  color: #000; /* visible black */
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  font-weight: 500;
}


.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(30px);
  display: none;
  flex-direction: column;
  padding: 40px;
  z-index: 2000;
}

.mobile-menu nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  align-self: flex-end;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(87, 67, 241, 0.1), transparent 70%);
            z-index: -1;
            opacity: 0;
            animation: fadeIn 1.5s 0.5s forwards;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s 0.3s forwards;
        }
        .hero h1 span { color: var(--primary); }
        .hero h1 .highlight { 
            color: var(--secondary); 
            position: relative; 
        }
        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(230, 120, 18, 0.25);
            z-index: -1;
            opacity: 0;
            animation: fadeIn 0.8s 1.2s forwards;
        }

        .hero p {
            font-size: 1.15rem;
            color: #555;
            margin-bottom: 32px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s 0.6s forwards;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) translateX(100px);
            width: 48%;
            max-width: 650px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.15);
            opacity: 0;
            animation: slideInRight 1.2s 0.8s forwards;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===== STATS ===== */
        .stats-section {
            padding: 80px 0;
            background: var(--gray-bg);
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
        }
        .stat-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 8px;
        }
        .stat-text { 
            font-size: 1.1rem; 
            color: #555; 
        }

        /* ===== SERVICES ===== */
        .services-section {
            padding: 100px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            opacity: 0;
            animation: fadeIn 0.8s 0.3s forwards;
        }
        .section-header p {
            color: #666;
            max-width: 650px;
            margin: 20px auto 0;
            font-size: 1.1rem;
            opacity: 0;
            transform: translateY(15px);
            animation: fadeInUp 0.8s 0.2s forwards;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(40px);
        }
        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(87, 67, 241, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            color: var(--primary);
        }
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
        }
        .service-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .read-more:hover { gap: 12px; }

        /* ===== CASE STUDIES ===== */
        .case-studies {
            padding: 100px 0;
            background: var(--gray-bg);
        }
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .case-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .case-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .case-img {
            height: 220px;
            overflow: hidden;
        }
        .case-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .case-card:hover .case-img img {
            transform: scale(1.08);
        }
        .case-content {
            padding: 28px;
        }
        .case-content h3 { 
            font-size: 1.35rem; 
            margin-bottom: 12px; 
        }
        .case-content p { 
            color: #666; 
            margin-bottom: 20px; 
            line-height: 1.6; 
        }
        .results {
            display: flex;
            gap: 16px;
        }
        .result {
            flex: 1;
            text-align: center;
            padding: 12px 8px;
            background: rgba(87, 67, 241, 0.05);
            border-radius: 10px;
        }
        .result-value {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
        }
        .result-label { 
            font-size: 0.9rem; 
            color: #666; 
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary), #7a66f8);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -30%;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
            opacity: 0;
            animation: fadeIn 2s 0.5s forwards;
        }
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        .cta-content h2 { 
            font-size: 2.8rem; 
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s 0.3s forwards;
        }
        .cta-content p { 
            font-size: 1.2rem; 
            margin-bottom: 40px; 
            opacity: 0;
            transform: translateY(15px);
            animation: fadeInUp 1s 0.5s forwards;
        }
        .btn {
            display: inline-block;
            padding: 16px 42px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            animation: fadeInUp 1s 0.7s forwards;
        }
        .btn-primary:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.25);
        }
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            margin-left: 20px;
            animation: fadeInUp 1s 0.9s forwards;
        }
        .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

 /* Footer */
       footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 70px 0 25px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 45px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-col h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-col p, .footer-col a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.95rem;
            margin-bottom: 10px;
            display: block;
            transition: all 0.3s ease;
        }
        
        .footer-col a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
    
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid #1e293b;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        
        .footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 40px 25px;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer.reveal{
    opacity: 1;
    transform: translateY(0);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
}
.footer h2,
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
}
.footer h2 {
  font-size: 20px;
}
.footer h4 {  font-size: 16px;
}
.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer a {
  display: block;
  width: fit-content;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  background-image: linear-gradient(#1dbfff, #1d76fafb);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 2px;
  padding-bottom: 4px;
  transition: background-size 0.3s ease, color 0.2s ease;
}
.footer a:hover {
  background-size: 100% 2px;
  color: #fff;
}
.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.socials a img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.3s;
}
.socials a img:hover {
  transform: scale(1.2);
}
.footer-bottom {
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}
@media (max-width: 900px) {  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer a {
    margin-bottom: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

        /* Responsive Design */
        @media (max-width: 992px) {
            .privacy-content {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            .privacy-content {
                padding: 25px 15px;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-bottom div:first-child {
                order: 2;
            }
            
            .footer-bottom div:last-child {
                order: 1;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 480px) {
            .privacy-header h1 {
                font-size: 1.7rem;
            }
            
            .privacy-content p {
                font-size: 1rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }
        
        @keyframes slideInRight {
            from { 
                opacity: 0; 
                transform: translateY(-50%) translateX(100px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(-50%) translateX(0); 
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.6rem; }
            .hero-image { width: 55%; }
        }
        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding-top: 120px;
            }
            .hero-content { margin: 0 auto; }
            .hero-image {
                position: relative;
                width: 90%;
                max-width: 500px;
                margin: 60px auto 0;
                transform: none;
                top: 0;
                animation: slideInUp 1.2s 0.8s forwards;
            }
            .hero-image::before {
                animation: none;
            }
            .btn-secondary { 
                margin-left: 0; 
                margin-top: 16px; 
            }
            .cta-buttons { 
                display: flex; 
                flex-direction: column; 
                align-items: center; 
                gap: 16px; 
            }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2.1rem; }
            .section-header h2 { font-size: 2.2rem; }
            .cta-content h2 { font-size: 2.2rem; }
        }
