    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 15px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    nav a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.15);
      background: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.3px;
    }

    nav a:hover,
    nav a.active {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 8px 18px rgba(0, 102, 255, 0.25);
    }

    .mobile-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--text);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: url('../images/SC360-3.jpg') repeat;
      color: white;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0.5);
      z-index: 0;
    }

    .hero-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 620px;
    }

    .hero-badge {
      display: inline-block;
      padding: 8px 16px;
      background: rgba(0, 212, 170, 0.1);
      border: 1px solid rgba(0, 212, 170, 0.3);
      border-radius: 50px;
      font-size: 14px;
      color: var(--secondary);
      margin-bottom: 24px;
      font-weight: 500;
    }

    .hero h1 {
      font-size: clamp(42px, 7vw, 72px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -2px;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease;
    }

    .hero p {
      font-size: clamp(18px, 2.2vw, 22px);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 40px;
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 10px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
    }

    /* Sections */
    section {
      padding: 100px 0;
    }

    .section-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-badge {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(0, 102, 255, 0.1);
      color: var(--primary);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .section-header h2 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
      color: var(--text);
    }

    .section-header p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* About Section */
    .about {
      background: var(--bg-light);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-content h3 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--text);
      letter-spacing: -1px;
    }

    .about-content p {
      font-size: 17px;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 20px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 40px;
    }

    .stat-item h4 {
      font-size: 36px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .stat-item p {
      font-size: 14px;
      color: var(--text-light);
      margin: 0;
    }

    .about-image {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    /* Services/Strategy Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .service-card {
      background: white;
      border-radius: 16px;
      border: 1px solid var(--border);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

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

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      border-color: transparent;
    }

    .service-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin-bottom: 24px;
    }

    .service-card h4 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .service-card p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-light);
    }

    /* Sourcing Section */
    .sourcing {
      background: var(--bg-dark);
      color: white;
    }

    .sourcing .section-header h2,
    .sourcing .section-header p {
      color: white;
    }

    .sourcing .section-badge {
      background: rgba(0, 212, 170, 0.1);
      color: var(--secondary);
      border: 1px solid rgba(0, 212, 170, 0.2);
    }

    .accordion {
      max-width: 900px;
      margin: 0 auto;
    }

    .accordion-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 28px 0;
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 20px;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .accordion-header:hover {
      color: var(--secondary);
    }

    .accordion-header span {
      color: var(--secondary);
      margin-right: 20px;
      font-weight: 700;
      font-size: 18px;
    }

    .accordion-icon {
      font-size: 24px;
      transition: transform 0.3s ease;
      color: var(--secondary);
    }

    .accordion-item.active .accordion-icon {
      transform: rotate(45deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding-top: 0;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.8;
      font-size: 16px;
    }

    .accordion-item.active .accordion-content {
      max-height: 500px;
      padding-top: 20px;
    }

    /* CTA Section */
    .cta {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      text-align: center;
      position: relative;
      padding: 100px 0;
      isolation: isolate;
      contain: paint;
    }

    .cta::before {
      content: '';
      position: absolute;
      inset: -50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
      z-index: 0;
      pointer-events: none;
      transform-origin: 50% 50%;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .cta-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }

    .cta h3 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      margin-bottom: 0;
      letter-spacing: -1px;
    }

    .cta p {
      font-size: 20px;
      margin-bottom: 0;
      opacity: 0.95;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-features {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-bottom: 0;
      flex-wrap: wrap;
    }

    .cta-feature {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255, 255, 255, 0.1);
      padding: 20px 28px;
      border-radius: 12px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.3s ease;
    }

    .cta-feature:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .cta-feature-icon {
      font-size: 32px;
      line-height: 1;
    }

    .cta-feature-text {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .cta-feature-text strong {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .cta-feature-text span {
      font-size: 14px;
      opacity: 0.8;
    }

    /* Footer */
    footer {
      background: var(--bg-dark);
      color: white;
      padding: 80px 0 40px;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-section h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 24px;
      color: white;
    }

    .footer-section p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 12px;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--secondary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 32px;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 968px) {

      .mobile-toggle {
        display: block;
      }

      .hero {
        padding-top: 120px;
      }

      .section-container {
        padding: 0 20px;
      }

      section {
        padding: 80px 0;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .cta-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
      }

      .cta-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }
  
