    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #f59e0b;
      --accent: #10b981;
      --dark: #0f172a;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-600: #475569;
      --gray-700: #374151;
      --gray-800: #1e293b;
      --gray-900: #0f172a;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--gray-50);
      color: var(--gray-800);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
    }

     .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--secondary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .cta-button {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }

    /* HERO SECTION */
    .services-hero {
      background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
      color: white;
      padding: 8rem 0 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .services-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%);
      pointer-events: none;
    }

    .services-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .services-hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, white, #cbd5e1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .services-hero p {
      font-size: 1.2rem;
      color: #cbd5e1;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    /* SERVICES SECTION */
    .services {
      padding: 6rem 0;
      background: white;
      position: relative;
      margin-top: -2rem;
      border-radius: 2rem 2rem 0 0;
      z-index: 2;
    }

    .services-intro {
      text-align: center;
      margin-bottom: 5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .services-intro h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1rem;
    }

    .services-intro p {
      font-size: 1.1rem;
      color: var(--gray-600);
      line-height: 1.7;
    }

    .services-grid {
      display: grid;
      gap: 3rem;
    }

    .service-item {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .service-item:nth-child(even) {
      direction: rtl;
    }

    .service-item:nth-child(even) > * {
      direction: ltr;
    }

    .service-visual {
      background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
      border-radius: 20px;
      padding: 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--gray-200);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    }

    .service-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    .service-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
      color: white;
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }

    .service-content h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1rem;
    }

    .service-description {
      font-size: 1.1rem;
      color: var(--gray-700);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .service-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .service-features li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      color: var(--gray-700);
    }

    .service-features li::before {
      content: '✓';
      width: 20px;
      height: 20px;
      background: var(--accent);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: bold;
      flex-shrink: 0;
    }

    .service-pricing {
      background: var(--gray-50);
      padding: 1.5rem;
      border-radius: 12px;
      border: 1px solid var(--gray-200);
      margin-top: 1.5rem;
    }

    .price-tag {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .price-description {
      color: var(--gray-600);
      font-size: 0.95rem;
    }

    /* PROCESS SECTION */
    .process {
      padding: 6rem 0;
      background: var(--gray-50);
    }

    .process-content {
      text-align: center;
      margin-bottom: 4rem;
    }

    .process h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 1rem;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .step-card {
      background: white;
      padding: 2.5rem;
      border-radius: 16px;
      text-align: center;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--gray-200);
    }

    .step-number {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
      margin: 0 auto 1.5rem;
    }

    .step-card h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 1rem;
    }

    /* CTA SECTION */
    .final-cta {
      padding: 6rem 0;
      background: linear-gradient(135deg, var(--dark), var(--gray-800));
      color: white;
      text-align: center;
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .final-cta h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .final-cta p {
      font-size: 1.2rem;
      color: #cbd5e1;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 1rem 2rem;
      border-radius: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    }

    /* FOOTER */
    .footer {
      background: var(--dark);
      color: #cbd5e1;
      padding: 3rem 0 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      color: white;
      margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section li {
      color: #94a3b8;
      line-height: 1.6;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section a {
      color: #94a3b8;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .footer-section a:hover {
      color: var(--secondary);
    }

    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 2rem;
      text-align: center;
      color: #64748b;
    }

    /* MOBILE RESPONSIVENESS */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .services-hero {
        padding: 6rem 0 3rem;
      }

      .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .service-item:nth-child(even) {
        direction: ltr;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .services {
        padding: 4rem 0;
      }
    }