*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white: #ffffff;
      --bg-primary: #ffffff;
      --bg-secondary: #f8f9fb;
      --bg-dark: #111827;
      --bg-dark-card: rgba(255,255,255,0.06);

      /* Solid color system - NO gradients */
      --accent: #1a388a;
      --accent-hover: #132c6e;
      --accent-light: rgba(26,56,138,0.07);
      --accent-light2: rgba(26,56,138,0.12);

      --text-primary: #111827;
      --text-secondary: #6B7280;
      --text-tertiary: #9CA3AF;
      --text-dark-primary: #F9FAFB;
      --text-dark-secondary: #9CA3AF;
      --border: rgba(0,0,0,0.07);
      --border-light: rgba(0,0,0,0.04);

      --glass-bg: rgba(255,255,255,0.6);
      --glass-bg-strong: rgba(255,255,255,0.82);
      --glass-border: rgba(0,0,0,0.05);
      --glass-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.03);
      --glass-shadow-hover: 0 4px 8px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.06);

      --font-sans: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --font-num: 'Inter', -apple-system, sans-serif;
      --max-w: 1200px;
      --nav-h: 66px;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      background: var(--white);
      color: var(--text-primary);
      line-height: 1.5;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ::selection { background: rgba(26,56,138,0.12); color: var(--text-primary); }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

    /* ==================== NAV ==================== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--nav-h);
      display: flex; align-items: center;
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid rgba(0,0,0,0.04);
      transition: all 0.4s var(--ease-out);
      box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.92);
      box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    }
    .nav-inner {
      max-width: var(--max-w); margin: 0 auto;
      padding: 0 24px; width: 100%;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 1px;
      text-decoration: none; color: var(--text-primary);
    }
    .nav-logo img {
      height: 40px; width: auto;
      flex-shrink: 0;
      display: block;
    }
    .nav-logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
    .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--text-secondary);
      font-size: 14px; font-weight: 450;
      padding: 7px 14px; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--text-primary); background: rgba(0,0,0,0.03); }
    .nav-links a.active { color: var(--accent); font-weight: 550; }
    .nav-cta {
      background: var(--accent) !important;
      color: #fff !important; font-weight: 550 !important;
      padding: 7px 20px !important; border-radius: 980px !important;
      transition: background 0.2s, transform 0.2s var(--ease-out) !important;
    }
    .nav-cta:hover { background: var(--accent-hover) !important; transform: scale(1.02) !important; }
    .nav-hamburger {
      display: none; background: none; border: none; cursor: pointer;
      padding: 8px; color: var(--text-primary); flex-direction: column; gap: 5px;
    }
    .nav-hamburger span { display: block; width: 18px; height: 1.5px; background: currentColor; border-radius: 2px; transition: all 0.3s var(--ease-out); }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    .mobile-menu {
      position: fixed; inset: 0; z-index: 999;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(40px);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 4px;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      text-decoration: none; color: var(--text-primary);
      font-size: 20px; font-weight: 500; padding: 12px 32px;
      width: 100%; text-align: center; border-radius: 12px;
      transition: background 0.2s;
    }
    .mobile-menu a:hover { background: rgba(0,0,0,0.03); }

    /* ==================== HERO ==================== */
    .hero {
      position: relative; min-height: 100dvh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      background: var(--bg-primary);
    }
    /* Subtle tinted wash instead of gradient mesh */
    .hero-wash {
      position: absolute; inset: 0; z-index: 0;
      background: #eef1f8;
    }
    /* Decorative geometric shapes - solid, no gradient */
    .hero-shape {
      position: absolute; z-index: 0; opacity: 0.07;
      animation: shapeFloat 20s ease-in-out infinite;
    }
    .hero-shape-1 {
      width: 600px; height: 600px; border-radius: 50%;
      border: 1px solid var(--accent);
      top: -15%; right: -5%;
      animation-delay: 0s;
    }
    .hero-shape-2 {
      width: 400px; height: 400px; border-radius: 50%;
      border: 1px solid var(--accent);
      bottom: -10%; left: -3%;
      animation-delay: -7s;
    }
    .hero-shape-3 {
      width: 200px; height: 200px; border-radius: 50%;
      background: var(--accent);
      top: 25%; right: 20%; opacity: 0.03;
      animation-delay: -3s;
    }
    @keyframes shapeFloat {
      0%, 100% { transform: translate(0, 0); }
      33% { transform: translate(15px, -10px); }
      66% { transform: translate(-10px, 8px); }
    }

    #hero-canvas {
      position: absolute; inset: 0; z-index: 1;
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
      text-align: center; width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--glass-bg-strong);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border-light);
      border-radius: 980px; padding: 6px 16px 6px 8px;
      font-size: 13px; font-weight: 500; color: var(--accent);
      margin-bottom: 28px;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
    }
    .hero-badge-dot {
      width: 8px; height: 8px; background: var(--accent);
      border-radius: 50%;
      animation: dotPulse 2s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.4); }
    }
    .hero-title {
      font-size: clamp(40px, 7vw, 72px);
      font-weight: 800; letter-spacing: -0.045em; line-height: 1.36;
      max-width: 780px; margin: 0 auto 24px;
      color: var(--text-primary);
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
    }
    .hero-title .accent { color: var(--accent); }
    .hero-subtitle {
      font-size: clamp(16px, 1.8vw, 19px);
      color: var(--text-secondary); max-width: 540px;
      line-height: 1.75; margin: 0 auto 44px;
      font-weight: 400;
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
    }
    .hero-actions {
      display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--accent);
      color: #fff; font-weight: 550; font-size: 15px;
      padding: 13px 28px; border-radius: 980px;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s var(--ease-out);
      font-family: var(--font-sans);
      justify-content: center;
    }
    .btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white);
      color: var(--accent); font-weight: 550; font-size: 15px;
      padding: 13px 28px; border-radius: 980px;
      text-decoration: none; border: 1px solid var(--border); cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
      font-family: var(--font-sans);
    }
    .btn-secondary:hover { background: var(--accent-light); border-color: rgba(26,56,138,0.15); transform: translateY(-1px); }
    .hero-stats {
      display: flex; justify-content: center; gap: 64px; margin-top: 72px;
      opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
    }
    .hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .hero-stat-num {
      font-family: var(--font-num); font-size: 42px; font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.03em; line-height: 1;
    }
    .hero-stat-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
    .hero-scroll-hint {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--text-tertiary); font-size: 11px; letter-spacing: 0.1em; font-weight: 500;
      z-index: 2;
      opacity: 0; animation: fadeUp 0.6s var(--ease-out) 1.2s forwards;
    }
    .scroll-line {
      width: 1px; height: 32px;
      background: var(--accent);
      opacity: 0.3;
      animation: scrollPulse 2.5s ease-in-out infinite;
    }

    /* ==================== SECTION COMMON ==================== */
    .section { padding: 120px 0; position: relative; }
    .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600;
      margin-bottom: 14px;
      letter-spacing: 0.04em; text-transform: uppercase;
      color: var(--accent);
    }
    .section-eyebrow::before {
      content: '';
      width: 20px; height: 2px;
      background: var(--accent);
      border-radius: 1px;
    }
    .section-title {
      font-size: clamp(30px, 4.5vw, 52px); font-weight: 800;
      letter-spacing: -0.04em; line-height: 1.08;
      margin-bottom: 16px;
    }
    .section-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 520px; line-height: 1.7; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===================== ABOUT ===================== */
    .about { background: var(--bg-primary); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .about-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
    .about-highlights {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px;
    }
    .about-highlight {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 16px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-light);
      border-radius: 12px; font-size: 13px; color: var(--text-secondary); font-weight: 550;
      transition: all 0.3s var(--ease-out);
    }
    .about-highlight:hover {
      border-color: rgba(26,56,138,0.18);
      background: var(--accent-light);
      color: var(--accent);
      transform: translateY(-2px);
    }
    .about-highlight i { color: var(--accent); font-size: 18px; flex-shrink: 0; }

    .about-visual { display: flex; flex-direction: column; gap: 16px; }
    .about-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 28px;
      box-shadow: var(--glass-shadow);
      transition: all 0.4s var(--ease-out);
      position: relative; overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--accent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .about-card:hover { box-shadow: var(--glass-shadow-hover); transform: translateY(-4px); }
    .about-card:hover::before { opacity: 1; }
    .about-card-icon {
      width: 48px; height: 48px;
      background: var(--accent-light);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; font-size: 24px; color: var(--accent);
      transition: all 0.3s var(--ease-spring);
    }
    .about-card:hover .about-card-icon { transform: scale(1.08); background: var(--accent-light2); }
    .about-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
    .about-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

    .stats-row {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
      margin-top: 80px; padding-top: 80px;
      border-top: 1px solid var(--border);
    }
    .stat-item {
      text-align: center; padding: 24px 16px;
      background: var(--bg-secondary);
      border-radius: 16px;
      transition: all 0.3s var(--ease-out);
    }
    .stat-item:hover { background: var(--accent-light); transform: translateY(-2px); }
    .stat-num {
      font-family: var(--font-num); font-size: clamp(34px, 4.5vw, 52px);
      font-weight: 900;
      color: var(--accent);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 10px; font-weight: 500; }
    .stat-desc { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; }

    /* ===================== SERVICES (Dark) ===================== */
    .services {
      background: var(--bg-dark);
      position: relative; overflow: hidden;
    }
    /* Subtle dot pattern for texture, not gradient */
    .services::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 24px 24px;
      z-index: 0;
    }
    .services .section-eyebrow { color: #4a7fd4; }
    .services .section-title { color: var(--text-dark-primary); }
    .services .section-subtitle { color: var(--text-dark-secondary); }
    .services-header { text-align: center; margin-bottom: 60px; }
    .services-header .section-subtitle { margin: 0 auto; }
    .services-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
    }
    .service-card {
      background: var(--bg-dark-card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px; padding: 36px;
      transition: all 0.4s var(--ease-out);
      position: relative; overflow: hidden; cursor: pointer;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; width: 4px; height: 100%;
      background: var(--accent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .service-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.1);
      transform: translateY(-4px);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; margin-bottom: 22px;
      transition: transform 0.3s var(--ease-spring);
    }
    .service-card:hover .service-icon { transform: scale(1.08); }
    .service-card:nth-child(1) .service-icon { background: rgba(26,56,138,0.15); color: #4a7fd4; }
    .service-card:nth-child(2) .service-icon { background: rgba(59,130,246,0.15); color: #4a7fd4; }
    .service-card:nth-child(3) .service-icon { background: rgba(16,185,129,0.15); color: #34D399; }
    .service-card:nth-child(4) .service-icon { background: rgba(245,158,11,0.15); color: #FBBF24; }
    .service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; color: #F3F4F6; }
    .service-card p { font-size: 15px; color: var(--text-dark-secondary); line-height: 1.65; margin-bottom: 22px; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .service-tag {
      font-size: 11px; padding: 4px 10px; border-radius: 6px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
      color: var(--text-dark-secondary); font-weight: 500;
      transition: all 0.2s;
    }
    .service-card:hover .service-tag { background: rgba(255,255,255,0.08); color: #D1D5DB; }
    .service-arrow {
      position: absolute; top: 36px; right: 36px;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-dark-secondary); font-size: 16px;
      transition: all 0.3s var(--ease-out);
    }
    .service-card:hover .service-arrow { background: rgba(26,56,138,0.2); border-color: rgba(26,56,138,0.3); color: #4a7fd4; transform: translate(2px,-2px); }

    /* ===================== WHY US ===================== */
    .whyus { background: var(--bg-secondary); }
    .whyus-header { text-align: center; margin-bottom: 60px; }
    .whyus-header .section-subtitle { margin: 0 auto; }
    .whyus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .whyus-card {
      text-align: center; padding: 52px 32px;
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: 24px;
      transition: all 0.4s var(--ease-out);
    }
    .whyus-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.06);
      border-color: rgba(26,56,138,0.15);
    }
    .whyus-icon {
      width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 28px;
      display: flex; align-items: center; justify-content: center;
      font-size: 32px;
      transition: transform 0.3s var(--ease-spring);
    }
    .whyus-card:hover .whyus-icon { transform: scale(1.08); }
    .whyus-card:nth-child(1) .whyus-icon { background: rgba(26,56,138,0.08); color: #1a388a; }
    .whyus-card:nth-child(2) .whyus-icon { background: rgba(59,130,246,0.08); color: #1a388a; }
    .whyus-card:nth-child(3) .whyus-icon { background: rgba(16,185,129,0.08); color: #059669; }
    .whyus-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
    .whyus-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

    /* ===================== PARTNERS ===================== */
    .partners { padding: 80px 0; background: var(--bg-primary); overflow: hidden; }
    .partners-header { text-align: center; margin-bottom: 44px; }
    .partners-row { margin-bottom: 14px; }
    .partners-row:last-child { margin-bottom: 0; }
    .partners-track {
      overflow: hidden; position: relative;
      padding: 8px 0;
      mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    }
    .partners-track-inner {
      display: flex; gap: 14px; align-items: center;
      width: max-content;
      animation: marquee 30s linear infinite;
      will-change: transform;
    }
    .partners-track-inner.reverse {
      animation: marquee-reverse 50s linear infinite;
    }
    .partner-item {
      flex-shrink: 0; display: flex; align-items: center; gap: 10px;
      color: var(--text-secondary); font-size: 14px; font-weight: 550;
      white-space: nowrap; padding: 14px 22px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      transition: all 0.3s var(--ease-out);
      cursor: default;
      user-select: none;
    }
    .partner-item:hover {
      color: var(--accent);
      border-color: rgba(26,56,138,0.18);
      background: var(--accent-light);
      transform: scale(1.05);
      box-shadow: 0 4px 16px rgba(26,56,138,0.12);
    }
    

    /* ===================== CONTACT ===================== */
    .contact { background: var(--bg-primary); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
      align-items: start;
    }
    .contact-info h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.035em; margin-bottom: 16px; line-height: 1.1; }
    .contact-info > p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
    .contact-list { display: flex; flex-direction: column; gap: 12px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 18px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      transition: all 0.3s var(--ease-out);
    }
    .contact-item:hover { border-color: rgba(26,56,138,0.15); background: var(--accent-light); transform: translateX(4px); }
    .contact-item-icon {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
      background: var(--accent-light); color: var(--accent);
    }
    .contact-item-label { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; font-weight: 600; }
    .contact-item-value { font-size: 14px; font-weight: 550; color: var(--text-primary); }
    .contact-form-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px; padding: 40px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.03);
      position: relative; overflow: hidden;
    }
    .contact-form-wrap::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--accent);
    }
    .form-title { font-size: 18px; font-weight: 700; margin-bottom: 28px; letter-spacing: -0.01em; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label { font-size: 13px; font-weight: 550; color: var(--text-secondary); }
    .form-group input, .form-group textarea {
      background: var(--bg-secondary); border: 1px solid var(--border);
      border-radius: 12px; padding: 11px 16px;
      color: var(--text-primary); font-size: 15px;
      font-family: var(--font-sans); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-tertiary); }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(26,56,138,0.06);
      background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; margin-top: 4px; }

    /* ===================== FOOTER ===================== */
    .footer {
      background: var(--bg-dark);
      padding: 64px 0 40px;
    }
    .footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p { font-size: 13px; color: var(--text-dark-secondary); line-height: 1.7; margin-top: 16px; max-width: 280px; }
    .footer-col h4 { font-size: 12px; font-weight: 600; color: var(--text-dark-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { text-decoration: none; color: var(--text-dark-secondary); font-size: 13px; transition: color 0.2s; }
    .footer-col ul a:hover { color: #4a7fd4; }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 12px; color: var(--text-dark-secondary);
    }
    .footer-social { display: flex; gap: 8px; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-dark-secondary); text-decoration: none;
      transition: all 0.2s; font-size: 16px;
    }
    .footer-social a:hover { border-color: rgba(26,56,138,0.3); color: #4a7fd4; background: rgba(26,56,138,0.1); transform: translateY(-2px); }

    .footer .nav-logo img { filter: brightness(0) invert(1); }
    .footer .nav-logo-text { color: var(--text-dark-primary); }

    /* ===================== ANIMATIONS ===================== */
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes scrollPulse {
      0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
      50% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
      100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
    }
    @keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes marquee-reverse {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-visual { order: -1; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .section-inner { padding: 0 20px; }
      .hero-content { padding: 0 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .whyus-grid { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .hero-stats { gap: 32px; flex-wrap: wrap; }
      .hero-actions { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .section { padding: 80px 0; }
      .about-highlights { grid-template-columns: 1fr; }
      .contact-form-wrap { padding: 28px 20px; }
      .hero-shape-1 { width: 350px; height: 350px; }
      .hero-shape-2 { width: 250px; height: 250px; }
      .hero-shape-3 { width: 120px; height: 120px; }
    }
    @media (max-width: 480px) {
      .nav-inner { padding: 0 16px; }
      .about-card { padding: 22px; }
      .service-card { padding: 28px; }
      .hero-stat-num { font-size: 32px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before,
      .hero-shape { animation: none; }
    }
  
    /* ==================== INLINE SVG ICONS ====================*/
    .icon {
      display: inline-block;
      width: 1em;
      height: 1em;
      vertical-align: -0.125em;
      fill: none;
    }
    .partner-item .icon { width: 18px; height: 18px; flex-shrink: 0; }
    .about-card-icon .icon { width: 28px; height: 28px; }
    .service-icon .icon { width: 28px; height: 28px; }
    .whyus-icon .icon { width: 24px; height: 24px; }
    .contact-item-icon .icon { width: 22px; height: 22px; }
    .hero-actions .icon { width: 18px; height: 18px; }
    .footer-social .icon { width: 20px; height: 20px; }
