  :root {
    --navy: #0b1230;
    --navy-2: #0e1740;
    --blue: #2f6bff;
    --blue-dark: #1e4fd6;
    --blue-light: #eaf0ff;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --bg-light: #f7f8fb;
    --card-border: #e7e9f0;
    --white: #ffffff;
    --radius: 12px;
    --orange: #2f6bff;
    --orange-dark: #2f6bff;
    --orange-light: #fff1ea;
  }

  html {
    scroll-behavior: smooth;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  button {
    font-family: inherit;
  }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease, background .2s ease;
  }

  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg);
    animation: shineSweep 3.2s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes shineSweep {
    0% {
      left: -60%;
    }

    35%,
    100% {
      left: 130%;
    }
  }

  .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .55);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
  }

  .btn.rippling::after {
    animation: ripple .55s ease-out;
  }

  @keyframes ripple {
    0% {
      transform: translate(-50%, -50%) scale(0);
      opacity: .55;
    }

    100% {
      transform: translate(-50%, -50%) scale(28);
      opacity: 0;
    }
  }

  .btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 0 0 rgba(47, 107, 255, 0);
  }

  .btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(47, 107, 255, .45);
  }

  .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .6);
  }

  .btn-outline:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 26px rgba(255, 255, 255, .12);
  }

  .btn-outline-dark {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
  }

  .btn-outline-dark:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(47, 107, 255, .3);
  }

  /* ===== HEADER ===== */
  header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
  }

  header.solid {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 14px rgba(15, 23, 60, .08);
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .5px;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 4px;
    transition: color .2s ease;
  }

  header.solid .logo {
    color: var(--navy);
  }

  .logo span {
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
  }

  .nav-links {
    display: flex;
    gap: 26px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: color .2s ease;
  }

  header.solid .nav-links {
    color: #374151;
  }

  .nav-links>li {
    position: relative;
  }

  .nav-links a {
    position: relative;
    transition: color .15s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--blue);
    transition: width .25s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-links a:hover {
    color: var(--blue);
  }

  .nav-links .caret {
    transition: transform .25s ease;
  }

  .nav-links li:hover .caret {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(15, 23, 60, .16);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 50;
  }

  .nav-links li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown a {
    display: block;
    color: #374151 !important;
    font-size: 13.5px;
    padding: 9px 12px;
    border-radius: 6px;
    transition: background .15s ease, color .15s ease, padding-left .15s ease;
  }

  .nav-dropdown a::after {
    display: none;
  }

  .nav-dropdown a:hover {
    background: var(--blue-light);
    color: var(--blue) !important;
    padding-left: 16px;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .burger span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: background .2s ease;
  }

  header.solid .burger span {
    background: var(--navy);
  }

  /* ===== SECTION HEADING ===== */
  .section {
    padding: 96px 0 70px;
  }

  .section-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    animation: eyebrowPulse 2.4s ease-in-out infinite;
  }

  @keyframes eyebrowPulse {

    0%,
    100% {
      width: 22px;
      opacity: 1;
    }

    50% {
      width: 32px;
      opacity: .6;
    }
  }

  .section-heading-wrap {
    text-align: center;
    margin-bottom: 46px;
  }

  .section-heading::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--blue), #7ca3ff, var(--blue));
    background-size: 200% 100%;
    animation: underlineGrow 1s cubic-bezier(.16, .8, .3, 1) both, underlineShimmer 2.6s linear infinite 1s;
  }

  @keyframes underlineGrow {
    from {
      width: 0;
      opacity: 0;
    }

    to {
      width: 56px;
      opacity: 1;
    }
  }

  @keyframes underlineShimmer {
    0% {
      background-position: 0% 0;
    }

    100% {
      background-position: 200% 0;
    }
  }

  .section-sub {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ===== SCROLL REVEAL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16, .8, .3, 1), transform .7s cubic-bezier(.16, .8, .3, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s cubic-bezier(.16, .8, .3, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .reveal-scale.in-view {
    opacity: 1;
    transform: scale(1);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .7s cubic-bezier(.16, .8, .3, 1), transform .7s cubic-bezier(.16, .8, .3, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .7s cubic-bezier(.16, .8, .3, 1), transform .7s cubic-bezier(.16, .8, .3, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
  }

  /* ===================================================================
     1. HERO / BANNER — left copy, right trust/experience card
  =================================================================== */
  .hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: var(--navy);
  }

  .hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .7s ease;
  }

  .hero-bg-slide.active {
    opacity: 1;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 13, 40, .88) 0%, rgba(8, 13, 40, .72) 55%, rgba(8, 13, 40, .88) 100%);
  }

  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
  }

  .hero::before {
    width: 420px;
    height: 420px;
    background: rgba(47, 107, 255, .28);
    top: -140px;
    right: -80px;
    animation: orbFloat 9s ease-in-out infinite;
  }

  .hero::after {
    width: 280px;
    height: 280px;
    background: rgba(47, 107, 255, .18);
    bottom: -100px;
    left: 20%;
    animation: orbFloat 11s ease-in-out infinite reverse;
  }

  @keyframes orbFloat {

    0%,
    100% {
      transform: translate(0, 0);
    }

    50% {
      transform: translate(30px, -24px);
    }
  }

  .hero-slider-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 9px;
  }

  .hero-slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
  }

  .hero-slider-dots button:hover {
    background: rgba(255, 255, 255, .6);
    transform: scale(1.2);
  }

  .hero-slider-dots button.active {
    width: 26px;
    border-radius: 6px;
    background: var(--blue);
  }

  .hero .container {
    position: relative;
    z-index: 2;
    padding-top: 170px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    max-width: 1220px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text>* {
    opacity: 0;
    transform: translateY(24px);
    animation: heroRise .8s cubic-bezier(.16, .8, .3, 1) forwards;
  }

  .hero-text .eyebrow {
    animation-delay: .02s;
    color: #9db4ff;
  }

  .hero-text .eyebrow::before {
    background: #9db4ff;
  }

  .hero-text h1 {
    animation-delay: .12s;
  }

  .hero-text p {
    animation-delay: .3s;
  }

  .hero-text .hero-buttons {
    animation-delay: .46s;
  }

  .hero-text .hero-mini-stats {
    animation-delay: .6s;
  }

  @keyframes heroRise {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero h1 {
    font-size: 75px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
  }

  .hero p {
    color: #c6cbe6;
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 30px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 34px;
  }

  .hero-mini-stats {
    display: flex;
    gap: 26px;
    justify-content: center;
    text-align: center;
  }

  .hero-mini-stats div {
    font-size: 22px;
    font-weight: 800;
  }

  .hero-mini-stats span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #9aa0c0;
    margin-top: 2px;
  }

  /* ===================================================================
     2. ABOUT US
  =================================================================== */
  .about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
  }

  .about-media {
    position: relative;
  }

  .about-media::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(47, 107, 255, .25), transparent 60%);
    filter: blur(18px);
    z-index: -1;
    animation: auraGlow 4s ease-in-out infinite;
  }

  @keyframes auraGlow {

    0%,
    100% {
      opacity: .5;
      transform: scale(1);
    }

    50% {
      opacity: .9;
      transform: scale(1.04);
    }
  }

  .about-media .frame {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 50px rgba(15, 23, 60, .16);
  }

  .about-media img {
    transition: transform .6s cubic-bezier(.16, .8, .3, 1);
    width: 100%;
    height: 380px;
    object-fit: cover;
  }

  .about-media:hover img {
    transform: scale(1.06) rotate(-1deg);
  }

  .about-media .frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(11, 18, 48, .05), rgba(11, 18, 48, .35));
  }

  .about-badge {
    position: absolute;
    bottom: -26px;
    right: -22px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 60, .18);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: badgeBob 4s ease-in-out infinite;
  }

  @keyframes badgeBob {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  .about-badge .num {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
  }

  .about-badge .lbl {
    font-size: 11.5px;
    color: var(--text-gray);
    max-width: 90px;
    line-height: 1.3;
  }

  .about-badge .ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-list {
    margin: 22px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-dark);
  }

  .about-list .check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: transform .3s ease, background .3s ease, color .3s ease;
  }

  .about-list li:hover .check {
    transform: rotate(360deg) scale(1.1);
    background: var(--blue);
    color: #fff;
  }

  /* ===================================================================
     2b. PROCESS / HOW WE WORK (new section added after About Us)
  =================================================================== */
  .process-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .process-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 107, 255, .2), transparent 70%);
    top: -160px;
    left: -120px;
    animation: orbFloat 10s ease-in-out infinite;
  }

  .process-section .section-heading {
    color: #fff;
  }

  .process-section .section-sub {
    color: #aab0d1;
  }

  .process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(47, 107, 255, .5) 0 10px, transparent 10px 20px);
    z-index: 0;
  }

  .process-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 30px 22px;
    backdrop-filter: blur(6px);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  }

  .process-card:hover {
    border-color: rgba(47, 107, 255, .4);
    box-shadow: 0 20px 40px rgba(47, 107, 255, .15);
    transform: translateY(-6px);
  }

  .process-card .p-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 18px;
  }

  .process-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .process-card p {
    font-size: 13.5px;
    color: #aab0d1;
    line-height: 1.6;
  }

  /* ===================================================================
     3. SERVICES
  =================================================================== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .service-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.16, .8, .3, 1), box-shadow .35s ease, border-color .35s ease;
    animation: idleFloat 5s ease-in-out infinite;
    animation-delay: var(--reveal-delay, 0s);
    transform-style: preserve-3d;
    will-change: transform;
  }

  @keyframes idleFloat {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-7px);
    }
  }

  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: var(--radius);
    background: linear-gradient(120deg, var(--blue), transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    pointer-events: none;
    box-shadow: 0 0 0 rgba(47, 107, 255, 0);
    transition: box-shadow .35s ease;
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover::after {
    box-shadow: 0 24px 46px rgba(47, 107, 255, .22);
  }

  .service-card:hover {
    animation-play-state: paused;
    box-shadow: 0 16px 34px rgba(15, 23, 60, .1);
    border-color: transparent;
  }

  .service-card .s-num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 26px;
    font-weight: 800;
    color: var(--card-border);
    transition: color .3s ease;
  }

  .service-card:hover .s-num {
    color: var(--blue-light);
  }

  .service-card .s-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #eaf0ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, color .25s ease;
    animation: iconBreathe 3.4s ease-in-out infinite;
    animation-delay: var(--reveal-delay, 0s);
  }

  .why-card .s-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #eaf0ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, color .25s ease;
    animation: iconBreathe 3.4s ease-in-out infinite;
    animation-delay: var(--reveal-delay, 0s);
  }

  .achv-grid  .s-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #eaf0ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, color .25s ease;
    animation: iconBreathe 3.4s ease-in-out infinite;
    animation-delay: var(--reveal-delay, 0s);
  }

  @keyframes iconBreathe {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(47, 107, 255, .18);
    }

    50% {
      box-shadow: 0 0 0 8px rgba(47, 107, 255, 0);
    }
  }

  .service-card:hover .s-icon {
    transform: rotate(-10deg) scale(1.15);
    color: #fff;
  }

  .why-card:hover .s-icon {
    transform: rotate(-10deg) scale(1.15);
    color: #fff;
  }

  .achv-grid:hover .s-icon {
    transform: rotate(-10deg) scale(1.15);
    color: #fff;
  }


  .service-card h3 {
    font-size: 16.5px;
    margin-bottom: 8px;
    color: var(--navy);
  }

  .service-card p {
    font-size: 13.5px;
    color: var(--text-gray);
    margin-bottom: 14px;
  }

  .service-card .s-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .service-card .s-link svg {
    transition: transform .25s ease;
  }

  .service-card:hover .s-link svg {
    transform: translateX(6px);
  }

  .services-cta {
    text-align: center;
    margin-top: 40px;
  }

  /* ===================================================================
     4. OUR PARTNERS — image slider (replaces logo marquee)
  =================================================================== */
  .partners-section {
    background: var(--bg-light);
    overflow: hidden;
  }

  .logo-marquee-row {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .logo-marquee-row+.logo-marquee-row {
    margin-top: 22px;
  }

  .logo-marquee-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: marqueeRight 32s linear infinite;
  }

  .logo-marquee-track.reverse {
    animation-name: marqueeLeft;
  }

  .logo-marquee-row:hover .logo-marquee-track {
    animation-play-state: paused;
  }

  @keyframes marqueeLeft {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @keyframes marqueeRight {
    from {
      transform: translateX(-50%);
    }

    to {
      transform: translateX(0);
    }
  }

  .logo-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px 24px;
    box-shadow: 0 8px 20px rgba(15, 23, 60, .05);
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  }

  .logo-chip:hover {
    box-shadow: 0 14px 30px rgba(15, 23, 60, .1);
    border-color: transparent;
    transform: translateY(-3px);
  }

  .logo-chip .lc-dot {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12.5px;
  }

  .logo-chip span:last-child {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    white-space: nowrap;
  }

  /* ===================================================================
     5. WHY CHOOSE US
  =================================================================== */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .why-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: box-shadow .3s ease, border-color .3s ease;
    animation: idleFloat 5.6s ease-in-out infinite;
    animation-delay: var(--reveal-delay, 0s);
    transform-style: preserve-3d;
    will-change: transform;
  }

  .why-card:hover {
    box-shadow: 0 16px 34px rgba(15, 23, 60, .1);
    border-color: transparent;
    animation-play-state: paused;
  }

  .why-card .w-tag {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-light);
    padding: 3px 9px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all .25s ease;
  }

  .why-card:hover .w-tag {
    opacity: 1;
    transform: translateY(0);
  }

  .why-card .w-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eaf0ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, color .25s ease;
    animation: iconBreathe 3.8s ease-in-out infinite;
    animation-delay: var(--reveal-delay, 0s);
  }

  .why-card:hover .w-icon {
    transform: translateY(-4px) rotate(10deg) scale(1.14);
    background: var(--blue);
    color: #fff;
  }

  .why-card h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 13.5px;
    color: var(--text-gray);
  }

  /* ===================================================================
     6. TESTIMONIALS CAROUSEL
  =================================================================== */
  .testi-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .testi-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 107, 255, .22), transparent 70%);
    top: -180px;
    right: -160px;
    animation: orbFloat 10s ease-in-out infinite;
  }

  .testi-section .section-heading {
    color: #fff;
  }

  .testi-section .section-sub {
    color: #aab0d1;
  }

  .testi-wrap {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
  }

  .testi-track {
    overflow: hidden;
  }

  .testi-slides {
    display: flex;
    transition: transform .6s cubic-bezier(.16, .8, .3, 1);
  }

  .testi-slide {
    min-width: 100%;
    padding: 6px;
  }

  .testi-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 40px 44px;
    text-align: center;
    backdrop-filter: blur(6px);
    position: relative;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  }

  .testi-card:hover {
    border-color: rgba(47, 107, 255, .4);
    box-shadow: 0 20px 46px rgba(47, 107, 255, .15);
    transform: translateY(-4px);
  }

  .testi-card .quote-mark {
    font-size: 64px;
    font-weight: 800;
    color: rgba(47, 107, 255, .35);
    line-height: 1;
    margin-bottom: 6px;
    font-family: Georgia, serif;
    display: inline-block;
    animation: quoteBob 3s ease-in-out infinite;
  }

  @keyframes quoteBob {

    0%,
    100% {
      transform: translateY(0) rotate(0);
    }

    50% {
      transform: translateY(-4px) rotate(-4deg);
    }
  }

  .testi-card p {
    font-size: 16px;
    color: #dfe3f5;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .testi-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    position: relative;
    transition: transform .3s ease;
  }

  .testi-avatar::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid var(--blue);
    animation: ringPulse 2.4s ease-out infinite;
  }

  .testi-person:hover .testi-avatar {
    transform: scale(1.1) rotate(-6deg);
  }

  .testi-person h5 {
    font-size: 14.5px;
  }

  .testi-person span {
    font-size: 12.5px;
    color: #9aa0c0;
  }

  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
  }

  .testi-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
  }

  .testi-dots button:hover {
    background: rgba(255, 255, 255, .55);
    transform: scale(1.2);
  }

  .testi-dots button.active {
    width: 26px;
    border-radius: 6px;
    background: var(--blue);
  }

  .testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  }

  .testi-arrow:hover {
    box-shadow: 0 8px 20px rgba(47, 107, 255, .4);
  }

  .testi-arrow:hover {
    background: var(--blue);
    transform: translateY(-50%) scale(1.08);
  }

  .testi-arrow.prev {
    left: -58px;
  }

  .testi-arrow.next {
    right: -58px;
  }

  @media (max-width:900px) {
    .testi-arrow {
      display: none;
    }
  }

  /* ===================================================================
     7. IMAGE BACKGROUND — centered heading/text/buttons
  =================================================================== */
  .mission {
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 130px 24px;
  }

  .mission .bg-img {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    animation: kenBurns 18s ease-in-out infinite alternate;
  }

  @keyframes kenBurns {
    from {
      transform: scale(1);
    }

    to {
      transform: scale(1.12);
    }
  }

  .mission .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 13, 40, .82), rgba(8, 13, 40, .7));
  }

  .mission-content {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
  }

  .mission-content .eyebrow {
    justify-content: center;
    color: #9db4ff;
  }

  .mission-content .eyebrow::before {
    background: #9db4ff;
  }

  .mission h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .mission p {
    color: #c6cbe6;
    font-size: 15.5px;
    margin-bottom: 30px;
  }

  .mission-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ===================================================================
     8. ACHIEVEMENTS / STATS
  =================================================================== */
  .achv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .achv-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 34px 18px;
    transition: box-shadow .3s ease, border-color .3s ease;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .achv-card:hover {
    box-shadow: 0 16px 34px rgba(15, 23, 60, .1);
    border-color: transparent;
  }

  .achv-card .a-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), background .3s ease, color .3s ease;
  }

  .achv-card .a-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    animation: ringPulse 2.6s ease-out infinite;
  }

  @keyframes ringPulse {
    0% {
      opacity: .55;
      transform: scale(.85);
    }

    100% {
      opacity: 0;
      transform: scale(1.35);
    }
  }

  .achv-card:hover .a-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--blue);
    color: #fff;
  }

  .achv-card .num {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
  }

  .achv-card .label {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
  }

  /* ===================================================================
     8b. PORTFOLIO
  =================================================================== */
  .portfolio-section {
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .portfolio-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 130px;
    background: var(--navy);
    z-index: 0;
  }

  .portfolio-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 107, 255, .18), transparent 70%);
    top: -160px;
    right: -120px;
    z-index: 1;
    animation: orbFloat 10s ease-in-out infinite;
  }

  .portfolio-section .container {
    position: relative;
    z-index: 2;
  }

  .portfolio-section .section-heading {
    color: #fff;
  }

  .portfolio-section .section-sub {
    color: #aab0d1;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .portfolio-card {
    position: relative;
  }

  .portfolio-img {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
  }

  .portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, .8, .3, 1);
  }

  .portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
  }

  .portfolio-label {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -40px;
    background: #fff;
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: 0 16px 34px rgba(4, 8, 30, .3);
    transition: transform .3s ease;
  }

  .portfolio-card:hover .portfolio-label {
    transform: translateY(-4px);
  }

  .portfolio-label h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 2px;
  }

  .portfolio-label span {
    font-size: 12px;
    color: var(--text-gray);
  }

  .portfolio-cta {
    text-align: center;
    margin-top: 76px;
  }

  @media (max-width:980px) {
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 60px;
    }

    .portfolio-bg {
      bottom: 90px;
    }
  }

  @media (max-width:560px) {
    .portfolio-bg {
      bottom: 60px;
    }

  }

  /* ===================================================================
     8c. BLOG
  =================================================================== */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
  }

  @media(max-width:900px) {

    .blog-grid,
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  }

  .blog-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    align-items: flex-start;
    background: transparent;
    transition: transform .3s ease;
  }

  .blog-card:hover {
    transform: translateY(-4px);
  }

  .blog-card .b-img {
    height: 108px;
    width: 150px;
    overflow: hidden;
    border-radius: 10px;
  }

  .blog-card .b-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

  .blog-card:hover .b-img img {
    transform: scale(1.08);
  }

  .blog-card .b-cat {
    display: inline-block;
    color: var(--orange);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
  }

  .blog-card h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .blog-card p {
    font-size: 13.5px;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .blog-card .b-link {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .blog-card .b-link svg {
    transition: transform .25s ease;
  }

  .blog-card:hover .b-link svg {
    transform: translateX(6px);
  }

  .blog-cta {
    text-align: center;
    margin-top: 40px;
  }

  @media (max-width:700px) {
    .blog-card {
      grid-template-columns: 1fr;
    }

    .blog-card .b-img {
      width: 100%;
      height: 160px;
    }
  }

  /* ===================================================================
     8d. PRICING
  =================================================================== */
  .pricing-grid {
    display: grid;
    grid-template-columns: .85fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .pricing-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pricing-intro .eyebrow {
    color: var(--orange);
  }

  .pricing-intro .eyebrow::before {
    background: var(--orange);
  }

  .pricing-intro h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .pricing-intro p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 26px;
  }

  .btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
  }

  .btn-orange::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg);
    animation: shineSweep 3.2s ease-in-out infinite;
    pointer-events: none;
  }

  .btn-orange:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(255, 106, 44, .45);
  }

  .price-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.16, .8, .3, 1), box-shadow .35s ease, border-color .35s ease;
  }

  .price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 60, .1);
    border-color: transparent;
  }

  .price-card.featured {
    background: var(--navy);
    color: #fff;
    position: relative;
    box-shadow: 0 24px 50px rgba(15, 23, 60, .22);
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }

  .price-card h4 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .price-card .p-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .price-card.featured .p-desc {
    color: #b7bcd6;
  }

  .price-card .p-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
  }

  .price-card.featured .p-amount {
    border-bottom-color: rgba(255, 255, 255, .14);
  }

  .price-card .p-amount span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-left: 2px;
  }

  .price-card.featured .p-amount span {
    color: #b7bcd6;
  }

  .price-card .p-features {
    list-style: none;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
  }

  .price-card .p-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
  }

  .price-card .p-features .check {
    color: var(--orange);
    display: flex;
  }

  .price-card .btn-orange {
    width: 100%;
  }

  @media (max-width:1180px) {
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }

    .pricing-intro {
      grid-column: span 2;
    }
  }

  /* ===================================================================
     9. FINAL CTA
  =================================================================== */
  .cta-final {
    background: linear-gradient(120deg, var(--navy) 0%, #131c46 100%);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 90% 20%, rgba(47, 107, 255, .25), transparent 60%);
    animation: glowPulse 6s ease-in-out infinite;
  }

  .cta-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 260px at 6% 90%, rgba(47, 107, 255, .16), transparent 60%);
    animation: glowPulse 7s ease-in-out infinite reverse;
  }

  @keyframes glowPulse {

    0%,
    100% {
      opacity: 1;
      transform: translateX(0);
    }

    50% {
      opacity: .6;
      transform: translateX(-20px);
    }
  }

  .cta-final h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
  }

  .cta-final p {
    color: #c6cbe6;
    margin-bottom: 26px;
    position: relative;
  }

  .cta-final .btn {
    position: relative;
  }

  .cta-final .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  /* ===================================================================
     10. GET IN TOUCH — left text, right form
  =================================================================== */
  .reach-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
  }

  .reach-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 107, 255, .22), transparent 70%);
    bottom: -200px;
    left: -140px;
    animation: orbFloat 10s ease-in-out infinite;
  }

  .reach-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 107, 255, .16), transparent 70%);
    top: -120px;
    right: 8%;
    animation: orbFloat 12s ease-in-out infinite reverse;
  }

  .reach-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .reach-text .eyebrow {
    color: #9db4ff;
  }

  .reach-text .eyebrow::before {
    background: #9db4ff;
  }

  .reach-text h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .reach-text p {
    color: #c6cbe6;
    font-size: 15px;
    margin-bottom: 26px;
    max-width: 460px;
  }

  .reach-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
  }

  .reach-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #dfe3f5;
  }

  .reach-points .r-ico {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
    color: #9db4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background .3s ease, color .3s ease;
  }

  .reach-points li:hover .r-ico {
    transform: translateY(-3px) rotate(-6deg);
    background: var(--blue);
    color: #fff;
  }

  .reach-points h5 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
  }

  .reach-points span {
    font-size: 12.5px;
    color: #9aa0c0;
  }

  .reach-form {
    background: #fff;
    border-radius: 16px;
    padding: 34px 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(4, 8, 30, .4);
  }

  .reach-form::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: conic-gradient(from 90deg, rgba(47, 107, 255, .7), rgba(47, 107, 255, 0) 30%, rgba(47, 107, 255, 0) 70%, rgba(47, 107, 255, .7));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderSpin 6s linear infinite;
  }

  .reach-form h3 {
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 4px;
  }

  .reach-form>p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 20px;
  }

  .reach-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .field {
    position: relative;
    margin-bottom: 18px;
  }

  .field input,
  .field textarea {
    width: 100%;
    border: 1.5px solid var(--card-border);
    border-radius: 8px;
    padding: 14px 14px 8px;
    font-size: 14px;
    color: var(--text-dark);
    background: transparent;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    font-family: inherit;
  }

  .field textarea {
    resize: none;
    height: 70px;
    padding-top: 16px;
  }

  .field label {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 14px;
    color: var(--text-gray);
    pointer-events: none;
    transition: all .18s ease;
    background: #fff;
    padding: 0 4px;
  }

  .field input:focus,
  .field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(47, 107, 255, .12);
  }

  .field input:focus+label,
  .field input:not(:placeholder-shown)+label,
  .field textarea:focus+label,
  .field textarea:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 11px;
    color: var(--blue);
    font-weight: 600;
  }

  .reach-form .btn {
    width: 100%;
    text-align: center;
    padding: 13px;
  }

  .form-note {
    font-size: 11.5px;
    color: #9aa0b4;
    margin-top: 12px;
    text-align: center;
  }

  @media (max-width:980px) {
    .reach-grid {
      grid-template-columns: 1fr;
    }

    .reach-form .field-row {
      grid-template-columns: 1fr;
    }
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy);
    color: #c6cbe6;
    padding: 60px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  footer h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 18px;
  }

  footer .logo {
    color: #fff;
  }

  footer p {
    font-size: 13.5px;
    color: #9aa0c0;
    margin: 14px 0 18px;
    max-width: 260px;
  }

  footer ul li {
    margin-bottom: 10px;
    font-size: 13.5px;
  }

  footer ul li a:hover {
    color: #fff;
  }

  .foot-contact li {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .foot-contact .ico {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .socials {
    display: flex;
    gap: 12px;
  }

  .socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .2s ease;
  }

  .socials a:hover {
    background: var(--blue);
    transform: translateY(-3px);
  }

  .copyright {
    text-align: center;
    font-size: 13px;
    color: #8890b0;
    padding: 22px 0;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width:980px) {
    .hero .container {
      padding-top: 130px;
    }

    .hero h1 {
      font-size: 32px;
    }

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

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .achv-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
      display: none;
    }

    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (max-width:560px) {
    .hero h1 {
      font-size: 26px;
    }

    .hero-mini-stats {
      flex-wrap: wrap;
      gap: 18px 26px;
    }

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

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

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

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

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

    .pricing-intro {
      grid-column: auto;
      text-align: center;
      align-items: center;
    }

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

    .hero-buttons,
    .mission-buttons,
    .cta-buttons {
      flex-direction: column;
    }

    .btn {
      width: 100%;
      text-align: center;
    }

    .testi-card {
      padding: 32px 22px;
    }

    .logo-chip {
      padding: 10px 16px;
      gap: 8px;
    }

    .logo-chip .lc-dot {
      width: 28px;
      height: 28px;
      min-width: 28px;
      font-size: 11px;
    }

    .logo-chip span:last-child {
      font-size: 12.5px;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-scale,
    .reveal-left,
    .reveal-right {
      opacity: 1;
      transform: none;
    }
  }



  /* ===================================================================
     TEAM
  =================================================================== */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .team-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform .4s cubic-bezier(.16, .8, .3, 1), box-shadow .35s ease, border-color .35s ease;
  }

  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 60, .12);
    border-color: transparent;
  }

  .team-photo {
    position: relative;
    height: 260px;
    overflow: hidden;
  }

  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, .8, .3, 1), filter .4s ease;
    filter: grayscale(15%);
  }

  .team-card:hover .team-photo img {
    transform: scale(1.08);
    filter: grayscale(0%);
  }

  .team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 48, .85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    opacity: 0;
    transition: opacity .35s ease;
  }

  .team-card:hover .team-overlay {
    opacity: 1;
  }

  .team-socials {
    display: flex;
    gap: 10px;
    transform: translateY(12px);
    transition: transform .35s ease;
  }

  .team-card:hover .team-socials {
    transform: translateY(0);
  }

  .team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background .2s ease, transform .2s ease;
  }

  .team-socials a:hover {
    background: var(--blue);
    transform: translateY(-3px);
  }

  .team-body {
    padding: 22px 20px 26px;
  }

  .team-body h4 {
    font-size: 16.5px;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .team-role {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
  }

  .team-body p {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.6;
  }

  @media (max-width:980px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width:560px) {
    .team-grid {
      grid-template-columns: 1fr;
    }
  }