/**LANDING PAGE**/
       /* ── HERO ── */
    .hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 6vw 80px;
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

/* Left — text */
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sky);
  color: var(--teal);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.6s 0.1s forwards;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.6s 0.2s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 2.25rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.6s 0.35s forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.6s 0.5s forwards;
}

.hero-title {
      font-family: var(--font-head);
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin-bottom: 1.25rem;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.6s 0.2s forwards;
    }
    .hero-title em {
      font-style: normal;
      color: var(--teal);
    }

    .hero-sub {
      font-size: 1.05rem; line-height: 1.7;
      color: var(--slate);
      max-width: 480px;
      margin-bottom: 2.25rem;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.6s 0.35s forwards;
    }

    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 1rem;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.6s 0.5s forwards;
    }

    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      background: var(--teal);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.95rem; font-weight: 600;
      padding: 0.85rem 1.75rem;
      border-radius: 100px;
      border: none; cursor: pointer;
      text-decoration: none;
      transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
      box-shadow: 0 4px 20px rgba(10,138,122,0.3);
    }
    .btn-primary:hover {
      background: var(--teal-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(10,138,122,0.35);
    }

    .btn-outline {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      background: transparent;
      color: var(--navy);
      font-family: var(--font-body);
      font-size: 0.95rem; font-weight: 600;
      padding: 0.85rem 1.75rem;
      border-radius: 100px;
      border: 2px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      transition: border-color var(--trans), color var(--trans), transform var(--trans);
    }
    .btn-outline:hover {
      border-color: var(--teal);
      color: var(--teal);
      transform: translateY(-2px);
    }

/* Right — image */
.hero-image {
  position: relative;
  opacity: 0; transform: translateX(24px);
  animation: fadeLeft 0.7s 0.4s forwards;
}

.hero-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 24px 64px rgba(11, 31, 58, 0.15);
  transform: rotate(2deg);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { min-height: auto; padding-bottom: 60px; }
}

    /* ── POSITIONING STRIP ── */
    .strip {
      background: var(--navy);
      padding: 1.25rem 6vw;
      text-align: center;
    }
    .strip p {
      font-size: 0.95rem; font-weight: 500;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.02em;
    }
    .strip p span { color: var(--teal-lt); font-weight: 600; }

    /* ── SECTION COMMONS ── */
    section { padding: 96px 6vw; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--teal);
      background: var(--sky);
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      border: 1px solid var(--border);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .section-title em { font-style: normal; color: var(--teal); }
    .section-sub {
      font-size: 1rem; line-height: 1.7;
      color: var(--slate);
      max-width: 560px;
    }

    /* ── PROBLEM / SOLUTION ── */
    .problem-solution {
      background: var(--mist);
    }
    .ps-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: start;
      margin-top: 3.5rem;
    }
    .ps-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      border: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .ps-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
    }
    .ps-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }
    .ps-card.problem .ps-icon { background: rgba(224,82,82,0.08); }
    .ps-card.solution .ps-icon { background: var(--sky); }
    .ps-card h3 {
      font-family: var(--font-head);
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .ps-card p {
      font-size: 0.95rem; line-height: 1.75;
      color: var(--slate);
    }

    /* ── HOW IT WORKS ── */
    .how {
      background: var(--white);
    }
    .how-inner {
      max-width: 1100px; margin: 0 auto;
    }
    .how-head {
      text-align: center; margin-bottom: 4rem;
    }
    .steps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 36px; left: 12%; right: 12%;
      height: 2px;
      background: linear-gradient(90deg, var(--border) 0%, var(--teal) 50%, var(--border) 100%);
      z-index: 0;
    }
    .step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
      padding: 0 1.25rem;
      position: relative; z-index: 1;
    }
    .step-num {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
      transition: border-color var(--trans), box-shadow var(--trans);
      position: relative;
    }
    .step:hover .step-num {
      border-color: var(--teal);
      box-shadow: 0 0 0 6px rgba(10,138,122,0.1);
    }
    .step-num-inner {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--sky);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 1.3rem;
      color: var(--teal);
    }
    .step h4 {
      font-size: 0.95rem; font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }
    .step p {
      font-size: 0.85rem; line-height: 1.6;
      color: var(--slate);
    }

    /* ── WHO WE SERVE ── */
    .serve {
      background: var(--navy);
      overflow: hidden;
      position: relative;
    }
    .serve::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10,138,122,0.15) 0%, transparent 70%);
    }
    .serve-inner {
      max-width: 1100px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .serve-head { margin-bottom: 3.5rem; }
    .serve-head .section-label {
      background: rgba(10,138,122,0.15);
      border-color: rgba(10,138,122,0.3);
    }
    .serve-head .section-title { color: var(--white); }
    .serve-head .section-sub { color: rgba(255,255,255,0.6); }
    .serve-cards {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .serve-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: background var(--trans), transform var(--trans);
    }
    .serve-card:hover {
      background: rgba(255,255,255,0.09);
      transform: translateY(-4px);
    }
    .serve-card-icon {
      font-size: 2rem; margin-bottom: 1rem;
    }
    .serve-card h3 {
      font-family: var(--font-head);
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 0.6rem;
    }
    .serve-card p {
      font-size: 0.88rem; line-height: 1.65;
      color: rgba(255,255,255,0.55);
    }

    /* ── WHY MOBILELABS ── */
    .why {
      background: var(--mist);
    }
    .why-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 5rem; align-items: center;
    }
    .why-text .section-sub { max-width: 420px; }
    .why-features {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .why-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem 1.25rem;
      display: flex; gap: 0.9rem;
      transition: box-shadow var(--trans), transform var(--trans);
    }
    .why-item:hover {
      box-shadow: 0 8px 24px rgba(11,31,58,0.08);
      transform: translateY(-2px);
    }
    .why-icon {
      flex-shrink: 0;
      width: 40px; height: 40px;
      background: var(--sky);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .why-item-text h4 {
      font-size: 0.88rem; font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }
    .why-item-text p {
      font-size: 0.8rem; line-height: 1.5;
      color: var(--slate);
    }

    /* ── PARTNER CTA ── */
    .partner-cta {
      background: var(--white);
      padding: 80px 6vw;
    }
    .partner-cta-inner {
      max-width: 1100px; margin: 0 auto;
      background: linear-gradient(135deg, var(--navy) 0%, #153558 100%);
      border-radius: 28px;
      padding: 5rem 5vw;
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 3rem; align-items: center;
      position: relative; overflow: hidden;
    }
    .partner-cta-inner::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10,138,122,0.25) 0%, transparent 70%);
    }
    .partner-cta-text { position: relative; z-index: 1; }
    .partner-cta-text .section-title {
      color: var(--white);
      margin-bottom: 1rem;
    }
    .partner-cta-text p {
      font-size: 1rem; line-height: 1.7;
      color: rgba(255,255,255,0.65);
      max-width: 440px;
    }
    .partner-network {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; gap: 1rem;
    }
    .network-pill {
      display: flex; align-items: center; gap: 0.9rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 0.9rem 1.25rem;
      font-size: 0.88rem; font-weight: 500;
      color: rgba(255,255,255,0.8);
      transition: background var(--trans);
    }
    .network-pill:hover { background: rgba(255,255,255,0.1); }
    .network-pill .pill-icon {
      width: 36px; height: 36px;
      background: rgba(10,138,122,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      background: var(--sky);
      text-align: center;
      padding: 96px 6vw;
    }
    .final-cta .section-title {
      margin: 1rem auto 1.25rem;
      max-width: 560px;
    }
    .final-cta .section-sub {
      margin: 0 auto 2.5rem;
    }
    .final-cta-actions {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 1rem;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes growBar {
      from { width: 0; }
      to { width: 72%; }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .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; }

    /* ── MOBILE NAV ── */
    .mobile-nav {
      display: none;
      position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 6vw;
      flex-direction: column; gap: 1.25rem;
      box-shadow: 0 12px 32px rgba(11,31,58,0.1);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 1rem; font-weight: 500;
      color: var(--slate);
      text-decoration: none;
      padding: 0.4rem 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-nav a:last-child { border: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-cta.desktop { display: none; }
      .nav-burger { display: flex; }
 
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .hero { min-height: auto; padding-bottom: 60px; }
 
      .ps-grid { grid-template-columns: 1fr; }
      .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
      .steps-grid::before { display: none; }
      .serve-cards { grid-template-columns: 1fr; }
      .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .partner-cta-inner { grid-template-columns: 1fr; }
      .partner-network { display: none; }
    }
    @media (max-width: 600px) {
      section { padding: 64px 5vw; }
      .steps-grid { grid-template-columns: 1fr; }
      .why-features { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
    }