    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Work Sans', sans-serif;
      color: #1A1A2E;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: #0243C6; color: #fff; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }
    ul { list-style: none; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInScale {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(8px); }
    }
    @keyframes navSlideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes floatParticle {
      0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
      25% { transform: translate(30px, -40px) rotate(90deg); opacity: 0.8; }
      50% { transform: translate(-20px, -80px) rotate(180deg); opacity: 0.4; }
      75% { transform: translate(40px, -40px) rotate(270deg); opacity: 0.7; }
    }
    @keyframes morphBlob {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
      50% { border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%; }
      75% { border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%; }
    }
    @keyframes orbMove1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(60px, -40px) scale(1.1); }
      66% { transform: translate(-30px, 30px) scale(0.95); }
    }
    @keyframes orbMove2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(-50px, 30px) scale(0.9); }
      66% { transform: translate(40px, -60px) scale(1.05); }
    }
    @keyframes lineGrow {
      from { width: 0; }
      to { width: 100%; }
    }
    @keyframes logoScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes pulseRing {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(2.5); opacity: 0; }
    }
    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 0 20px rgba(2,67,198,0.15); }
      50% { box-shadow: 0 0 40px rgba(2,67,198,0.3), 0 0 80px rgba(2,201,143,0.1); }
    }

    /* Scroll-triggered animation classes */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.revealed {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.revealed {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-scale {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.revealed {
      opacity: 1;
      transform: scale(1);
    }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
    .delay-6 { transition-delay: 0.6s; }

    /* ===== ANIMATED BACKGROUNDS ===== */
    .particles-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }
    .animated-bg-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
      opacity: 0.5;
    }
    .animated-bg-orb.orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(2,67,198,0.12), transparent 70%);
      top: -100px; right: -100px;
      animation: orbMove1 20s ease-in-out infinite;
    }
    .animated-bg-orb.orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(2,201,143,0.1), transparent 70%);
      bottom: -50px; left: -50px;
      animation: orbMove2 25s ease-in-out infinite;
    }
    .animated-bg-orb.orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(2,67,198,0.08), transparent 70%);
      top: 50%; left: 30%;
      animation: orbMove1 18s ease-in-out infinite reverse;
    }
    .section-animated-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .morph-shape {
      position: absolute;
      background: rgba(2,67,198,0.03);
      animation: morphBlob 15s ease-in-out infinite;
      pointer-events: none;
    }
    .morph-shape.shape-1 {
      width: 600px; height: 600px;
      top: -200px; right: -150px;
      background: rgba(2,67,198,0.04);
    }
    .morph-shape.shape-2 {
      width: 400px; height: 400px;
      bottom: -100px; left: -100px;
      background: rgba(2,201,143,0.03);
      animation-delay: -7s;
    }

    /* ===== PARTNERS SECTION ===== */
    .partners-section {
      padding: 64px 0;
      background: #fff;
      border-top: 1px solid rgba(26,26,46,0.04);
      border-bottom: 1px solid rgba(26,26,46,0.04);
      overflow: hidden;
      position: relative;
    }
    .partners-label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: rgba(26,26,46,0.3);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 40px;
    }
    .partners-track-wrapper {
      position: relative;
      overflow: hidden;
    }
    .partners-track-wrapper::before,
    .partners-track-wrapper::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .partners-track-wrapper::before {
      left: 0;
      background: linear-gradient(90deg, #fff, transparent);
    }
    .partners-track-wrapper::after {
      right: 0;
      background: linear-gradient(270deg, #fff, transparent);
    }
    .partners-track {
      display: flex;
      align-items: center;
      gap: 64px;
      animation: logoScroll 30s linear infinite;
      width: max-content;
    }
    .partner-logo-item {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      opacity: 0.35;
      transition: opacity 0.5s;
      padding: 12px 24px;
    }
    .partner-logo-item:hover { opacity: 0.7; }
    .partner-logo-item .p-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(2,67,198,0.06);
    }
    .partner-logo-item .p-icon svg {
      width: 20px; height: 20px;
      stroke: #0243C6;
      stroke-width: 1.5;
      fill: none;
    }
    .partner-logo-item .p-name {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1A1A2E;
      letter-spacing: -0.01em;
    }
    .partner-logo-item .p-type {
      font-size: 11px;
      color: rgba(26,26,46,0.35);
      letter-spacing: 0.03em;
    }

    /* ===== VOLUME BANNER ===== */
    .volume-banner {
      position: relative;
      padding: 80px 0;
      background: linear-gradient(135deg, #0A1628 0%, #0F2347 30%, #0A2040 60%, #0A1628 100%);
      background-size: 200% 200%;
      animation: gradientShift 12s ease-in-out infinite;
      overflow: hidden;
    }
    .volume-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #02C98F, #0243C6, transparent);
    }
    .volume-banner::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #0243C6, #02C98F, transparent);
    }
    .volume-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 10;
    }
    .volume-item {
      text-align: center;
      position: relative;
      padding: 24px;
    }
    .volume-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,0.06);
    }
    .volume-number {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .volume-number .accent { color: #02C98F; }
    .volume-unit {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      margin-top: 8px;
      font-weight: 500;
    }
    .volume-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      margin-top: 4px;
      letter-spacing: 0.04em;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      position: relative;
      padding: 120px 0;
      background: linear-gradient(135deg, #0243C6 0%, #0335a0 40%, #021d5e 100%);
      overflow: hidden;
    }
    .cta-bg-elements {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .cta-bg-circle {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .cta-bg-circle:nth-child(1) {
      width: 600px; height: 600px;
      top: -200px; right: -100px;
      animation: orbMove1 20s ease-in-out infinite;
    }
    .cta-bg-circle:nth-child(2) {
      width: 400px; height: 400px;
      bottom: -150px; left: -50px;
      animation: orbMove2 18s ease-in-out infinite;
    }
    .cta-bg-circle:nth-child(3) {
      width: 200px; height: 200px;
      top: 50%; left: 60%;
      background: rgba(2,201,143,0.05);
      animation: morphBlob 12s ease-in-out infinite;
    }
    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 10;
      padding: 0 24px;
    }
    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 50px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(8px);
      margin-bottom: 32px;
    }
    .cta-badge span {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.05em;
    }
    .cta-section h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }
    .cta-section h2 .cta-highlight {
      color: #02C98F;
    }
    .cta-section p {
      font-size: 18px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto 48px;
    }
    .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .cta-btn-white {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 40px;
      background: #fff;
      color: #0243C6;
      font-weight: 700;
      border-radius: 50px;
      font-size: 16px;
      transition: all 0.4s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    .cta-btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    }
    .cta-btn-white svg { transition: transform 0.3s; }
    .cta-btn-white:hover svg { transform: translateX(4px); }
    .cta-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 18px 40px;
      border: 2px solid rgba(255,255,255,0.2);
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      font-size: 16px;
      transition: all 0.4s;
    }
    .cta-btn-outline:hover {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
    }
    .cta-trust-row {
      margin-top: 64px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cta-trust-item svg {
      width: 18px; height: 18px;
      stroke: #02C98F;
      stroke-width: 2;
      fill: none;
    }
    .cta-trust-item span {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }

    /* ===== HOW WE WORK – DARK TIMELINE ===== */
    .process-section {
      position: relative;
      padding: 120px 0 100px;
      background: linear-gradient(180deg, #060C18 0%, #0D1B33 50%, #060C18 100%);
      overflow: hidden;
    }
    .process-section .section-label {
      color: #02C98F;
    }
    .process-section .section-title {
      color: #fff;
    }
    .process-section .section-divider {
      background: linear-gradient(90deg, #0243C6, #02C98F);
    }
    /* Decorative background glows */
    .process-bg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(140px);
      pointer-events: none;
    }
    .process-bg-glow-1 {
      width: 600px;
      height: 600px;
      top: -200px;
      left: -200px;
      background: rgba(2, 67, 198, 0.1);
    }
    .process-bg-glow-2 {
      width: 500px;
      height: 500px;
      bottom: -150px;
      right: -150px;
      background: rgba(2, 201, 143, 0.07);
    }

    /* Timeline container */
    .process-timeline {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
      padding: 48px 0 16px;
    }
    /* Central vertical line */
    .process-timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, transparent 0%, #0243C6 6%, #0356E8 40%, #02C98F 94%, transparent 100%);
      transform: translateX(-50%);
    }

    /* Individual step */
    .process-step {
      position: relative;
      display: flex;
      align-items: flex-start;
      margin-bottom: 40px;
    }
    .process-step:last-child {
      margin-bottom: 0;
    }
    /* Alternating layout */
    .process-step:nth-child(odd) {
      padding-right: calc(50% + 44px);
    }
    .process-step:nth-child(even) {
      flex-direction: row-reverse;
      padding-left: calc(50% + 44px);
    }

    /* Timeline node (icon circle) */
    .process-step-node {
      position: absolute;
      left: 50%;
      top: 12px;
      width: 52px;
      height: 52px;
      transform: translateX(-50%);
      z-index: 3;
    }
    .process-step-node-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(135deg, #0243C6, #0356E8);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 24px rgba(2, 67, 198, 0.45), 0 0 64px rgba(2, 67, 198, 0.12);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .process-step:hover .process-step-node-inner {
      transform: scale(1.15);
      box-shadow: 0 0 32px rgba(2, 67, 198, 0.55), 0 0 80px rgba(2, 67, 198, 0.18);
    }
    .process-step-node-inner svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
    }
    /* Pulse ring */
    .process-step-node::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(2, 67, 198, 0.25);
      animation: tlPulse 3s ease-in-out infinite;
    }
    @keyframes tlPulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 0; }
    }

    /* Connector arm from card to line */
    .process-step::after {
      content: '';
      position: absolute;
      top: 36px;
      height: 2px;
      width: 18px;
      z-index: 2;
    }
    .process-step:nth-child(odd)::after {
      right: calc(50% - 26px);
      background: linear-gradient(90deg, rgba(2,67,198,0.08), rgba(2,67,198,0.3));
    }
    .process-step:nth-child(even)::after {
      left: calc(50% - 26px);
      background: linear-gradient(90deg, rgba(2,67,198,0.3), rgba(2,67,198,0.08));
    }

    /* Glass card */
    .process-step-card {
      flex: 1;
      background: rgba(255, 255, 255, 0.035);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 30px 32px 28px;
      position: relative;
      overflow: hidden;
      transition: background 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    }
    /* Gradient border overlay */
    .process-step-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(2, 67, 198, 0.25), transparent 50%, rgba(2, 201, 143, 0.12));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    .process-step:hover .process-step-card {
      background: rgba(255, 255, 255, 0.055);
      transform: translateY(-4px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    }
    /* Text alignment per side */
    .process-step:nth-child(odd) .process-step-card {
      text-align: right;
    }
    .process-step:nth-child(even) .process-step-card {
      text-align: left;
    }

    /* Large step number watermark */
    .process-step-number {
      font-family: 'Poppins', sans-serif;
      font-size: 72px;
      font-weight: 800;
      line-height: 1;
      position: absolute;
      top: -6px;
      background: linear-gradient(135deg, rgba(2, 67, 198, 0.13), rgba(2, 201, 143, 0.08));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      pointer-events: none;
      user-select: none;
    }
    .process-step:nth-child(odd) .process-step-number { right: 28px; }
    .process-step:nth-child(even) .process-step-number { left: 28px; }

    /* Card typography */
    .process-step-title {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .process-step-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.75;
    }

    /* Final step – green accent */
    .process-step.final-step .process-step-node-inner {
      background: linear-gradient(135deg, #02C98F, #00A874);
      box-shadow: 0 0 24px rgba(2, 201, 143, 0.45), 0 0 64px rgba(2, 201, 143, 0.12);
    }
    .process-step.final-step:hover .process-step-node-inner {
      box-shadow: 0 0 32px rgba(2, 201, 143, 0.55), 0 0 80px rgba(2, 201, 143, 0.18);
    }
    .process-step.final-step .process-step-node::before {
      border-color: rgba(2, 201, 143, 0.25);
    }
    .process-step.final-step .process-step-card {
      border-color: rgba(2, 201, 143, 0.12);
    }
    .process-step.final-step .process-step-title {
      color: #02C98F;
    }

    /* ---- Responsive ---- */
    @media (max-width: 768px) {
      .process-section { padding: 80px 0 64px; }
      .process-timeline { padding: 32px 0 8px; }
      .process-timeline::before { left: 28px; }
      .process-step { margin-bottom: 28px; }
      .process-step:nth-child(odd),
      .process-step:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
        padding-right: 0;
      }
      .process-step:nth-child(odd) .process-step-card,
      .process-step:nth-child(even) .process-step-card {
        text-align: left;
      }
      .process-step-node {
        left: 28px;
        width: 44px;
        height: 44px;
      }
      .process-step-node-inner svg { width: 18px; height: 18px; }
      .process-step:nth-child(odd) .process-step-number,
      .process-step:nth-child(even) .process-step-number {
        right: auto;
        left: 20px;
      }
      .process-step::after { display: none; }
      .process-step-card { padding: 24px; }
      .process-step-title { font-size: 16px; }
      .process-step-number { font-size: 52px; }
    }
    @media (max-width: 480px) {
      .process-section { padding: 64px 0 48px; }
      .process-timeline::before { left: 22px; }
      .process-step:nth-child(odd),
      .process-step:nth-child(even) { padding-left: 62px; }
      .process-step-node { left: 22px; width: 36px; height: 36px; }
      .process-step-node-inner svg { width: 16px; height: 16px; }
      .process-step-card { padding: 20px; border-radius: 12px; }
      .process-step-title { font-size: 15px; }
      .process-step-desc { font-size: 13px; }
      .process-step-number { font-size: 40px; }
    }


    /* Enhanced service card animations */
    .service-card {
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(2,67,198,0.02), transparent 50%);
      opacity: 0;
      transition: opacity 0.5s;
    }
    .service-card:hover::before { opacity: 1; }
    .service-card:hover {
      transform: translateY(-4px);
    }

    /* Enhanced industry cards */
    .industry-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(2,201,143,0.08), transparent 70%);
      opacity: 0;
      transition: opacity 0.5s;
      border-radius: 16px;
    }
    .industry-card:hover::before { opacity: 1; }
    .industry-card:hover {
      transform: translateY(-4px);
    }

    /* Form row responsive */
    @media (max-width: 520px) {
      .form-row { grid-template-columns: 1fr; }
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      transition: all 0.5s ease;
      background: transparent;
    }
    .navbar.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    }
    .navbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }
    .navbar-logo img {
      height: 36px; width: auto;
      filter: brightness(0) invert(1);
      transition: filter 0.5s;
    }
    .navbar.scrolled .navbar-logo img {
      filter: none;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.03em;
      color: rgba(255,255,255,0.75);
      transition: color 0.3s;
      position: relative;
    }
    .navbar.scrolled .nav-links a {
      color: rgba(26,26,46,0.8);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: #fff;
      transition: width 0.3s ease, background 0.5s;
    }
    .navbar.scrolled .nav-links a::after { background: #0243C6; }
    .nav-links a:hover { color: #fff; }
    .navbar.scrolled .nav-links a:hover { color: #0243C6; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      margin-left: 8px;
      padding: 10px 24px;
      background: #0243C6;
      color: #fff !important;
      font-size: 14px;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(2,67,198,0.3);
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: #0335a0;
      box-shadow: 0 6px 20px rgba(2,67,198,0.4);
      transform: translateY(-1px);
    }

    /* Mobile navbar actions (lang switch + hamburger) */
    .navbar-mobile-actions {
      display: none;
      align-items: center;
      gap: 12px;
    }
    .lang-switch-mobile {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
    }
    .lang-switch-mobile .lang-active { color: #02C98F; }
    .lang-switch-mobile .lang-link { color: rgba(255,255,255,0.4); transition: color 0.3s; }
    .lang-switch-mobile .lang-link:hover { color: #fff; }
    .lang-switch-mobile .lang-sep { color: rgba(255,255,255,0.15); }
    .navbar.scrolled .lang-switch-mobile .lang-link { color: rgba(26,26,46,0.35); }
    .navbar.scrolled .lang-switch-mobile .lang-link:hover { color: #1A1A2E; }
    .navbar.scrolled .lang-switch-mobile .lang-sep { color: rgba(26,26,46,0.15); }

    /* Mobile menu toggle */
    .menu-toggle {
      display: none;
      padding: 8px;
      color: #fff;
    }
    .navbar.scrolled .menu-toggle { color: #1A1A2E; }
    .menu-toggle svg {
      width: 24px; height: 24px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 100;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .mobile-menu.open {
      display: flex;
      opacity: 1;
    }
    .mobile-menu a {
      font-size: 22px;
      font-weight: 600;
      color: #1A1A2E;
      font-family: 'Poppins', sans-serif;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: #0243C6; }
    .mobile-menu-close {
      position: absolute;
      top: 24px; right: 24px;
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(26,26,46,0.05);
      transition: background 0.3s;
    }
    .mobile-menu-close:hover { background: rgba(26,26,46,0.1); }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: #0A1628;
    }
    /* Full-width background image */
    .hero-bg-image {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .hero-bg-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 40%;
    }
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.82) 35%, rgba(10,22,40,0.5) 70%, rgba(10,22,40,0.35) 100%);
    }
    .hero-bg-gradient {
      position: absolute;
      inset: 0;
      z-index: 3;
      background:
        linear-gradient(180deg, rgba(10,22,40,0.5) 0%, transparent 25%, transparent 75%, rgba(10,22,40,0.95) 100%);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 4;
    }
    .hero-bg .grid-pattern {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      opacity: 0.04;
    }
    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 1280px;
      margin: 0 auto;
      padding: 180px 24px 0;
      width: 100%;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .hero-inner {
      max-width: 720px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 50px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 40px;
      animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero-badge .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #02C98F;
      animation: pulse 2s ease infinite;
    }
    .hero-badge span {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.05em;
    }
    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(40px, 4.5vw, 64px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #fff;
      animation: fadeInUp 0.8s 0.15s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero h1 .highlight {
      background: linear-gradient(135deg, #3B9DFF, #02C98F);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-desc {
      margin-top: 32px;
      font-size: clamp(15px, 1.3vw, 18px);
      color: rgba(255,255,255,0.55);
      max-width: 540px;
      line-height: 1.8;
      animation: fadeInUp 0.8s 0.3s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-buttons {
      margin-top: 44px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      animation: fadeInUp 0.8s 0.45s cubic-bezier(0.16,1,0.3,1) both;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: #0243C6;
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s;
      box-shadow: 0 8px 24px rgba(2,67,198,0.4);
      font-size: 15px;
    }
    .btn-primary:hover {
      background: #0335a0;
      box-shadow: 0 12px 32px rgba(2,67,198,0.5);
      transform: translateY(-2px);
    }
    .btn-primary svg { transition: transform 0.3s; }
    .btn-primary:hover svg { transform: translateX(4px); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      border: 2px solid rgba(255,255,255,0.15);
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s;
      font-size: 15px;
    }
    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.05);
    }

    /* Hero stats bar - pinned to bottom */
    .hero-stats-bar {
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      animation: fadeIn 0.8s 0.7s cubic-bezier(0.16,1,0.3,1) both;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .hero-stat-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 24px 32px;
      position: relative;
      justify-content: center;
    }
    .hero-stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,0.08);
    }
    .hero-stat-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(2,201,143,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hero-stat-icon svg {
      width: 18px; height: 18px;
      stroke: #02C98F;
      stroke-width: 2;
      fill: none;
    }
    .hero-stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .hero-stat-label {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.04em;
    }
    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: fadeIn 1s 1s both;
    }
    .scroll-mouse {
      width: 24px; height: 40px;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.2);
      display: flex;
      justify-content: center;
      padding-top: 8px;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    .scroll-mouse .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #02C98F;
    }

    /* ===== SECTIONS COMMON ===== */
    .section { position: relative; padding: 112px 0; overflow: hidden; }
    .section-alt { background: #F7F8FC; }
    .section-dark { background: #1A1A2E; }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 10;
    }
    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 80px;
    }
    .section-label {
      font-size: 13px;
      font-weight: 600;
      color: #02C98F;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #1A1A2E;
    }
    .section-dark .section-title { color: #fff; }
    .section-title .highlight { color: #0243C6; }
    .section-dark .section-title .highlight { color: #02C98F; }
    .section-divider {
      width: 64px; height: 4px;
      background: linear-gradient(90deg, #0243C6, #02C98F);
      border-radius: 4px;
      margin-top: 32px;
    }
    .section-header .section-divider { margin-left: auto; margin-right: auto; }

    /* Background decorations */
    .bg-circle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    /* ===== ABOUT ===== */
    .about-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 64px;
    }
    .about-header .section-divider { margin: 32px auto 0; }
    .about-lead {
      margin-top: 28px;
      font-size: 18px;
      color: rgba(26,26,46,0.55);
      line-height: 1.8;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Stats bar */
    .about-stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: linear-gradient(135deg, #0A1628 0%, #0F2347 50%, #0A1628 100%);
      border-radius: 20px;
      padding: 0;
      margin-bottom: 64px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(10,22,40,0.25);
      position: relative;
    }
    .about-stats-bar::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #0243C6, #02C98F, #0243C6);
      background-size: 200% 100%;
      animation: shimmer 4s linear infinite;
    }
    .about-stat-item {
      padding: 40px 32px;
      text-align: center;
      position: relative;
      transition: background 0.4s;
    }
    .about-stat-item:hover {
      background: rgba(255,255,255,0.03);
    }
    .about-stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 24px; bottom: 24px;
      width: 1px;
      background: rgba(255,255,255,0.08);
    }
    .about-stat-number {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    .about-stat-number .accent { color: #02C98F; }
    .about-stat-label {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      margin-top: 8px;
      letter-spacing: 0.04em;
      font-weight: 400;
    }
    .about-stat-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(2,201,143,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .about-stat-icon svg {
      width: 18px; height: 18px;
      stroke: #02C98F;
      stroke-width: 2;
      fill: none;
    }

    /* Content columns */
    .about-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px 64px;
      margin-bottom: 64px;
    }
    .about-col-text {
      color: rgba(26,26,46,0.6);
      font-size: 15px;
      line-height: 1.85;
    }
    .about-col-text strong {
      color: #1A1A2E;
      font-weight: 600;
    }

    /* Feature strip */
    .about-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      background: #fff;
      border-radius: 16px;
      border: 1px solid rgba(26,26,46,0.06);
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    }
    .about-feature {
      padding: 36px 32px;
      position: relative;
      transition: background 0.4s;
    }
    .about-feature:hover {
      background: #FAFBFE;
    }
    .about-feature:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20px; bottom: 20px;
      width: 1px;
      background: rgba(26,26,46,0.06);
    }
    .about-feature-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .about-feature-icon.blue { background: rgba(2,67,198,0.07); }
    .about-feature-icon.green { background: rgba(2,201,143,0.07); }
    .about-feature-icon svg {
      width: 20px; height: 20px;
      stroke-width: 2;
      fill: none;
    }
    .about-feature-icon.blue svg { stroke: #0243C6; }
    .about-feature-icon.green svg { stroke: #02C98F; }
    .about-feature h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1A1A2E;
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .about-feature p {
      font-size: 13px;
      color: rgba(26,26,46,0.45);
      line-height: 1.6;
    }

    /* ===== SERVICES – PHOTO CARDS ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      min-height: 480px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    }
    /* Background image */
    .service-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-card:hover .service-card-bg {
      transform: scale(1.05);
    }
    /* Dark gradient overlay */
    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.92) 100%);
      transition: background 0.5s;
    }
    .service-card:hover .service-card-overlay {
      background: linear-gradient(180deg, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.45) 40%, rgba(10,22,40,0.88) 100%);
    }
    /* Card content positioned over image */
    .service-card-content {
      position: relative;
      z-index: 2;
      padding: 36px 32px;
    }
    .service-card-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #02C98F;
      margin-bottom: 16px;
      padding: 5px 12px;
      background: rgba(2, 201, 143, 0.12);
      border-radius: 6px;
    }
    .service-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .service-card p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.75;
    }

    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr; gap: 20px; }
      .service-card { min-height: 400px; }
    }
    @media (max-width: 768px) {
      .service-card { min-height: 360px; border-radius: 16px; }
      .service-card-content { padding: 28px 24px; }
      .service-card h3 { font-size: 20px; }
    }
    @media (max-width: 480px) {
      .service-card { min-height: 320px; }
      .service-card-content { padding: 24px 20px; }
      .service-card h3 { font-size: 18px; }
      .service-card p { font-size: 13px; }
    }

    /* ===== INDUSTRIES – PHOTO TILES ===== */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .industry-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 280px;
      cursor: default;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
    }
    .industry-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    }
    /* Photo background */
    .industry-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .industry-card:hover .industry-card-bg {
      transform: scale(1.08);
    }
    /* Dark overlay */
    .industry-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,22,40,0.25) 0%, rgba(10,22,40,0.75) 100%);
      transition: background 0.5s;
    }
    .industry-card:hover .industry-card-overlay {
      background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.65) 100%);
    }
    /* Content pinned to bottom */
    .industry-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 24px;
      z-index: 2;
    }
    .industry-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
      line-height: 1.25;
    }
    .industry-card p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s, transform 0.4s;
    }
    .industry-card:hover p {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .industry-card { height: 260px; }
    }
    @media (max-width: 768px) {
      .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .industry-card { height: 220px; border-radius: 12px; }
      .industry-card-content { padding: 20px 16px; }
      .industry-card h3 { font-size: 16px; }
      .industry-card p { opacity: 1; transform: none; font-size: 12px; }
    }
    @media (max-width: 480px) {
      .industry-card { height: 180px; }
      .industry-card-content { padding: 16px 14px; }
      .industry-card h3 { font-size: 15px; }
    }

    /* ===== WHY US ===== */
    .why-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 40px;
    }
    .why-header .section-divider { margin: 32px auto 0; }
    .why-header-desc {
      margin-top: 24px;
      font-size: 17px;
      color: rgba(26,26,46,0.5);
      line-height: 1.75;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .why-highlight-bar {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-bottom: 64px;
      padding: 32px 40px;
      background: linear-gradient(135deg, #0A1628 0%, #0F2347 50%, #0A1628 100%);
      border-radius: 20px;
      box-shadow: 0 16px 48px rgba(10,22,40,0.2);
      position: relative;
      overflow: hidden;
    }
    .why-highlight-bar::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, #0243C6, #02C98F, #0243C6);
      background-size: 200% 100%;
      animation: shimmer 4s linear infinite;
    }
    .why-highlight-stat {
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
    }
    .why-highlight-stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -24px; top: 0; bottom: 0;
      width: 1px;
      background: rgba(255,255,255,0.08);
    }
    .why-highlight-num {
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .why-highlight-num .accent { color: #02C98F; }
    .why-highlight-label {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.4;
      max-width: 140px;
    }
    .why-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .why-card {
      position: relative;
      padding: 36px 28px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(26,26,46,0.05);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      border-radius: 20px 20px 0 0;
      opacity: 0;
      transition: opacity 0.5s;
    }
    .why-card:hover::before { opacity: 1; }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(2,67,198,0.08);
      border-color: rgba(2,67,198,0.1);
    }
    .why-card:nth-child(1)::before { background: linear-gradient(90deg, #0243C6, #3B7DFF); }
    .why-card:nth-child(2)::before { background: linear-gradient(90deg, #02C98F, #00E6A0); }
    .why-card:nth-child(3)::before { background: linear-gradient(90deg, #0243C6, #02C98F); }
    .why-card:nth-child(4)::before { background: linear-gradient(90deg, #02C98F, #0243C6); }
    .why-card:nth-child(5)::before { background: linear-gradient(90deg, #3B7DFF, #0243C6); }
    .why-card:nth-child(6)::before { background: linear-gradient(90deg, #00E6A0, #02C98F); }
    .why-card-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: all 0.5s;
    }
    .why-card-icon svg {
      width: 24px; height: 24px;
      stroke-width: 1.8;
      fill: none;
      transition: stroke 0.5s;
    }
    .why-card-icon.blue { background: rgba(2,67,198,0.07); }
    .why-card-icon.blue svg { stroke: #0243C6; }
    .why-card-icon.green { background: rgba(2,201,143,0.07); }
    .why-card-icon.green svg { stroke: #02C98F; }
    .why-card:hover .why-card-icon.blue { background: #0243C6; }
    .why-card:hover .why-card-icon.blue svg { stroke: #fff; }
    .why-card:hover .why-card-icon.green { background: #02C98F; }
    .why-card:hover .why-card-icon.green svg { stroke: #fff; }
    .why-card-num {
      position: absolute;
      top: 20px; right: 20px;
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 800;
      color: rgba(26,26,46,0.03);
      line-height: 1;
      letter-spacing: -0.03em;
      pointer-events: none;
      transition: color 0.5s;
    }
    .why-card:hover .why-card-num { color: rgba(2,67,198,0.06); }
    .why-card h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #1A1A2E;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .why-card p {
      font-size: 14px;
      color: rgba(26,26,46,0.5);
      line-height: 1.7;
    }

    /* ===== CONTACT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .contact-items { display: flex; flex-direction: column; gap: 16px; }
    .contact-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(26,26,46,0.04);
      transition: all 0.5s;
    }
    .contact-card:hover {
      border-color: rgba(2,67,198,0.1);
      box-shadow: 0 8px 32px rgba(2,67,198,0.04);
    }
    .contact-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(2,67,198,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg {
      width: 20px; height: 20px;
      stroke: #0243C6;
      stroke-width: 2;
      fill: none;
    }
    .contact-card .label {
      font-size: 11px;
      color: rgba(26,26,46,0.4);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }
    .contact-card .value {
      font-size: 16px;
      font-weight: 600;
      color: #1A1A2E;
    }
    .contact-card a.value {
      transition: color 0.3s;
    }
    .contact-card a.value:hover { color: #0243C6; }
    .registration-card {
      padding: 24px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(26,26,46,0.04);
    }
    .registration-card .title {
      font-size: 11px;
      color: rgba(26,26,46,0.4);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }
    .reg-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .reg-item .reg-label {
      font-size: 12px;
      color: rgba(26,26,46,0.35);
      margin-bottom: 2px;
    }
    .reg-item .reg-value {
      font-size: 14px;
      font-weight: 600;
      color: #1A1A2E;
    }
    /* Contact form card */
    .contact-form-card {
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(26,26,46,0.06);
      padding: 40px 36px;
      box-shadow: 0 8px 40px rgba(2,67,198,0.04);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .contact-form-header {
      margin-bottom: 32px;
    }
    .contact-form-header h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #1A1A2E;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .contact-form-header p {
      font-size: 14px;
      color: rgba(26,26,46,0.45);
      line-height: 1.6;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      margin-bottom: 20px;
      position: relative;
    }
    .form-group.full-width {
      grid-column: 1 / -1;
    }
    .form-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: rgba(26,26,46,0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .form-input,
    .form-textarea,
    .form-select {
      width: 100%;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1.5px solid rgba(26,26,46,0.08);
      background: #F7F8FC;
      font-family: 'Work Sans', sans-serif;
      font-size: 15px;
      color: #1A1A2E;
      transition: all 0.3s;
      outline: none;
    }
    .form-input::placeholder,
    .form-textarea::placeholder {
      color: rgba(26,26,46,0.25);
    }
    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
      border-color: #0243C6;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(2,67,198,0.06);
    }
    .form-textarea {
      min-height: 110px;
      resize: vertical;
    }
    .form-select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231A1A2E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.35'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }
    .form-submit {
      width: 100%;
      padding: 16px 32px;
      background: linear-gradient(135deg, #0243C6, #0335a0);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.4s;
      box-shadow: 0 8px 24px rgba(2,67,198,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 4px;
    }
    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(2,67,198,0.35);
    }
    .form-submit svg {
      width: 18px; height: 18px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
      transition: transform 0.3s;
    }
    .form-submit:hover svg {
      transform: translateX(4px);
    }
    .form-footer {
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .form-footer svg {
      width: 14px; height: 14px;
      stroke: #02C98F;
      stroke-width: 2;
      fill: none;
      flex-shrink: 0;
    }
    .form-footer span {
      font-size: 12px;
      color: rgba(26,26,46,0.35);
      line-height: 1.4;
    }

    /* Form success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 48px 24px;
    }
    .form-success.show {
      display: block;
      animation: successFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes successFadeIn {
      from { opacity: 0; transform: scale(0.9) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .form-success-icon {
      width: 72px; height: 72px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, #02C98F, #0243C6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: successPulse 0.6s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    @keyframes successPulse {
      0% { transform: scale(0); }
      60% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }
    .form-success-icon svg {
      width: 36px; height: 36px;
      stroke: #fff;
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 40;
      stroke-dashoffset: 40;
      animation: checkDraw 0.5s 0.6s ease forwards;
    }
    @keyframes checkDraw {
      to { stroke-dashoffset: 0; }
    }
    .form-success h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #1A1A2E;
      margin-bottom: 8px;
    }
    .form-success p {
      color: rgba(26,26,46,0.5);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #1A1A2E;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 64px 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
    }
    .footer-logo {
      height: 32px;
      width: auto;
      filter: brightness(0) invert(1);
      margin-bottom: 20px;
    }
    .footer-desc {
      color: rgba(255,255,255,0.35);
      font-size: 14px;
      line-height: 1.7;
      max-width: 320px;
    }
    .footer h4 {
      color: rgba(255,255,255,0.6);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.3);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: #02C98F; }
    .footer-legal {
      color: rgba(255,255,255,0.3);
      font-size: 14px;
      line-height: 1.6;
    }
    .footer-bottom {
      margin-top: 64px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-size: 12px;
      color: rgba(255,255,255,0.2);
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      font-size: 12px;
      color: rgba(255,255,255,0.2);
      transition: color 0.3s;
    }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.4); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .navbar-inner { padding: 0 20px; }
      .nav-links { display: none; }
      .navbar-mobile-actions { display: flex; }
      .menu-toggle { display: block; }
      .hero-content { padding: 140px 20px 60px; }
      .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
      .hero-stat-item:nth-child(2)::after { display: none; }
      .hero-stat-item { padding: 20px 24px; }
      .about-stats-bar { grid-template-columns: repeat(4, 1fr); }
      .about-columns { grid-template-columns: 1fr; gap: 24px; }
      .about-features { grid-template-columns: 1fr; }
      .about-feature::after { display: none !important; }
      .about-feature { border-bottom: 1px solid rgba(26,26,46,0.06); }
      .about-feature:last-child { border-bottom: none; }
      .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .why-highlight-bar { gap: 32px; padding: 28px 24px; flex-wrap: wrap; justify-content: center; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .section { padding: 80px 0; }
      .volume-grid { grid-template-columns: repeat(2, 1fr); }
      .volume-item:nth-child(2)::after { display: none; }
      .cta-section { padding: 80px 0; }
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 34px; }
      .hero-desc { font-size: 15px; }
      .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
      .hero-stat-item { padding: 16px 20px; justify-content: flex-start; }
      .hero-stat-item:nth-child(2)::after,
      .hero-stat-item:nth-child(4)::after { display: none; }
      .about-header { text-align: left; margin-bottom: 40px; }
      .about-header .section-divider { margin: 24px 0 0; }
      .about-lead { font-size: 15px; margin-left: 0; margin-right: 0; text-align: left; line-height: 1.7; }
      .about-stat-number { font-size: 28px; }
      .about-stat-item { padding: 24px 16px; }
      .about-stats-bar {
        margin-bottom: 32px;
        background: none;
        border-radius: 0;
        box-shadow: none;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        border-top: 1px solid rgba(26,26,46,0.08);
        border-bottom: 1px solid rgba(26,26,46,0.08);
      }
      .about-stats-bar::before { display: none; }
      .about-stat-item {
        padding: 20px 8px;
        text-align: center;
      }
      .about-stat-item:not(:last-child)::after {
        background: rgba(26,26,46,0.08);
        top: 16px;
        bottom: 16px;
      }
      .about-stat-icon { display: none; }
      .about-stat-number { font-size: 22px; color: #1A1A2E; }
      .about-stat-number .accent { color: #02C98F; }
      .about-stat-label { color: rgba(26,26,46,0.45); font-size: 11px; margin-top: 4px; }
      .about-columns { margin-bottom: 32px; }
      .about-col-text { font-size: 14px; text-align: left; }
      .about-feature { padding: 24px 20px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .section { padding: 64px 0; }
      .section-header { margin-bottom: 48px; }
      .scroll-indicator { display: none; }
      .container { padding: 0 16px; }
      .volume-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .volume-number { font-size: 28px; }
      .volume-item { padding: 16px; }
      .cta-section h2 { font-size: 28px; }
      .cta-section p { font-size: 16px; }
      .cta-trust-row { display: none; }
      .partners-track { gap: 40px; }
      .why-header { text-align: left; margin-bottom: 32px; }
      .why-header .section-divider { margin: 24px 0 0; }
      .why-header-desc { text-align: left; margin-left: 0; margin-right: 0; font-size: 15px; }
      .why-cards-grid { grid-template-columns: 1fr; gap: 16px; }
      .why-card { padding: 28px 24px; }
      .why-highlight-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
      .why-highlight-stat { padding: 20px 24px; gap: 12px; justify-content: flex-start; }
      .why-highlight-stat:not(:last-child)::after { display: none; }
      .why-highlight-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
      .why-highlight-stat:nth-child(1),
      .why-highlight-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
      .why-highlight-num { font-size: 24px; }
      .why-highlight-label { font-size: 12px; }
    }

    @media (max-width: 480px) {
      .hero-buttons { flex-direction: column; width: 100%; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
      .hero-stats-bar { grid-template-columns: 1fr 1fr; }
      .hero-stat-item { padding: 14px 16px; }
      .hero-stat-item:not(:last-child)::after { display: none; }
      .hero-stat-num { font-size: 15px; }
      .about-stats-bar { grid-template-columns: repeat(4, 1fr); }
      .about-stat-item { padding: 16px 4px; }
      .about-stat-number { font-size: 18px; }
      .about-stat-label { font-size: 10px; letter-spacing: 0.02em; }
      .about-lead { font-size: 14px; }
      .section-title { font-size: 26px; }
      .section-label { font-size: 11px; }
      .why-highlight-stat { padding: 16px; }
      .why-highlight-num { font-size: 20px; }
      .why-highlight-label { font-size: 11px; }
      .why-card { padding: 24px 20px; border-radius: 16px; }
      .why-card-icon { width: 48px; height: 48px; margin-bottom: 16px; }
      .why-card h4 { font-size: 15px; }
      .why-card p { font-size: 13px; }
      .reg-grid { grid-template-columns: 1fr; }
      .map-distances { flex-direction: column; gap: 8px; }
      .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
      .volume-grid { grid-template-columns: 1fr; }
      .volume-item:not(:last-child)::after { display: none; }
      .cta-buttons { flex-direction: column; align-items: center; }
      .cta-btn-white, .cta-btn-outline { width: 100%; justify-content: center; }
      .cta-trust-row { flex-direction: column; gap: 16px; }
    }

    /* ===== FIRE TRUCKS CAROUSEL ===== */
    .fleet-section {
      position: relative;
      padding: 112px 0;
      background: linear-gradient(180deg, #060C18 0%, #0D1B33 50%, #060C18 100%);
      overflow: hidden;
    }
    .fleet-section .section-label { color: #02C98F; }
    .fleet-section .section-title { color: #fff; }
    .fleet-section .section-title .highlight { color: #02C98F; }
    .fleet-section .section-divider { background: linear-gradient(90deg, #0243C6, #02C98F); }
    .fleet-section .section-header {
      max-width: 700px;
    }
    .fleet-section .section-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.5);
      line-height: 1.75;
      max-width: 600px;
      margin: 20px auto 0;
    }
    .fleet-carousel-wrapper {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 60px;
      overflow: hidden;
    }
    .fleet-carousel {
      display: flex;
      gap: 20px;
      overflow: visible;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fleet-card {
      display: block;
      color: inherit;
      text-decoration: none;
      flex: 0 0 calc(33.333% - 14px);
      min-width: 0;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 3 / 2;
      cursor: pointer;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
    }
    .fleet-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    }
    .fleet-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fleet-card:hover .fleet-card-bg {
      transform: scale(1.08);
    }
    .fleet-card-overlay {
      position: absolute;
      inset: 0;
      background: transparent;
      transition: background 0.5s;
    }
    .fleet-card:hover .fleet-card-overlay {
      background: linear-gradient(180deg, rgba(10,22,40,0) 0%, rgba(10,22,40,0.25) 50%, rgba(10,22,40,0.85) 100%);
    }
    .fleet-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 24px;
      z-index: 2;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.4s, transform 0.4s;
    }
    .fleet-card:hover .fleet-card-content {
      opacity: 1;
      transform: translateY(0);
    }
    .fleet-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 0;
      line-height: 1.3;
    }
    /* Carousel navigation */
    .fleet-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      z-index: 10;
    }
    .fleet-nav:hover {
      background: rgba(2,67,198,0.5);
      border-color: rgba(2,67,198,0.6);
      transform: translateY(-50%) scale(1.1);
    }
    .fleet-nav svg {
      width: 20px;
      height: 20px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
    }
    .fleet-nav-prev { left: 4px; }
    .fleet-nav-next { right: 4px; }
    /* Carousel dots */
    .fleet-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 36px;
    }
    .fleet-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      padding: 0;
    }
    .fleet-dot.active {
      background: #02C98F;
      width: 28px;
      border-radius: 5px;
    }

    @media (max-width: 1024px) {
      .fleet-section { padding: 80px 0; }
      .fleet-card { flex: 0 0 calc(50% - 10px); }
      .fleet-carousel-wrapper { padding: 0 52px; }
    }
    @media (max-width: 768px) {
      .fleet-section { padding: 64px 0; }
      .fleet-card { flex: 0 0 calc(50% - 10px); }
      .fleet-carousel-wrapper { padding: 0 48px; }
      .fleet-nav { width: 36px; height: 36px; }
      .fleet-nav svg { width: 16px; height: 16px; }
      .fleet-nav-prev { left: 2px; }
      .fleet-nav-next { right: 2px; }
      /* Always show title on touch devices */
      .fleet-card-content {
        opacity: 1;
        transform: translateY(0);
      }
      .fleet-card-overlay {
        background: linear-gradient(180deg, rgba(10,22,40,0) 0%, rgba(10,22,40,0.15) 50%, rgba(10,22,40,0.75) 100%);
      }
    }
    @media (max-width: 480px) {
      .fleet-section { padding: 48px 0; }
      .fleet-section .section-desc { font-size: 14px; }
      .fleet-carousel-wrapper {
        padding: 0;
        overflow: visible;
      }
      .fleet-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px;
        gap: 12px;
      }
      .fleet-carousel::-webkit-scrollbar { display: none; }
      .fleet-card {
        flex: 0 0 calc(100vw - 48px);
        scroll-snap-align: center;
        aspect-ratio: 4 / 3;
        border-radius: 12px;
      }
      .fleet-card.fleet-clone { display: none; }
      .fleet-card h3 { font-size: 16px; }
      .fleet-card-content { padding: 16px; }
      .fleet-nav { display: none; }
      .fleet-dots { margin-top: 20px; }
    }

    /* ===== LANGUAGE SWITCHER ===== */
    .lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 12px; font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif; }
    .lang-active { color: #02C98F; }
    .lang-link { color: rgba(255,255,255,0.4); transition: color 0.3s; }
    .lang-link:hover { color: #fff; }
    .lang-sep { color: rgba(255,255,255,0.15); }

    /* Hide decorative animations on mobile — saves CPU & battery */
    @media (max-width: 768px) {
      .particles-canvas,
      .animated-bg-orb,
      .section-animated-bg,
      .morph-shape { display: none !important; }
    }

    /* Smooth page load */
    body {
      animation: fadeIn 0.5s ease;
    }
