    :root {
      --blue: #0F70B7;
      --blue-d: #0A5A96;
      --blue-l: #3A8FD4;
      --orange: #E94D1A;
      --orange-l: #FF6535;
      --orange-glow: rgba(233, 77, 26, .35);
      --dark: #06101C;
      --dark2: #0A1628;
      --dark3: #0F1F35;
      --dark4: #162A48;
      --white: #FFFFFF;
      --off: #F5F7FA;
      --grey: #8A9BB0;
      --grey-l: #DEE5EF;
      --glass: rgba(255, 255, 255, .04);
      --glass-border: rgba(255, 255, 255, .08);
      --radius: 16px;
      --ease-out: cubic-bezier(.16, 1, .3, 1);
      --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── PRELOADER ── */
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity .6s ease, visibility .6s ease;
    }

    .preloader.done {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-logo {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 3px solid var(--orange);
      animation: preloaderPulse 1.2s ease infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .preloader-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .preloader-bar {
      width: 160px;
      height: 3px;
      background: rgba(255, 255, 255, .08);
      border-radius: 99px;
      margin-top: 1.5rem;
      overflow: hidden;
    }

    .preloader-fill {
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      border-radius: 99px;
      animation: preloaderBar 1.5s ease forwards;
    }

    @keyframes preloaderPulse {

      0%,
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--orange-glow);
      }

      50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(240, 101, 34, 0);
      }
    }

    @keyframes preloaderBar {
      0% {
        width: 0;
      }

      100% {
        width: 100%;
      }
    }

    /* ── CURSOR GLOW ── */
    .cursor-glow {
      position: fixed;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      background: radial-gradient(circle, rgba(26, 128, 196, .07) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      transition: left .15s ease-out, top .15s ease-out;
      display: none;
    }

    @media(hover:hover) {
      .cursor-glow {
        display: block;
      }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: 72px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5vw;
      background: rgba(6, 16, 28, .85);
      backdrop-filter: blur(20px) saturate(1.8);
      border-bottom: 1px solid rgba(26, 128, 196, .1);
      transition: transform .45s var(--ease-out), box-shadow .3s;
    }

    nav.scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .75rem;
      text-decoration: none;
    }

    .nav-logo img {
      height: 44px;
      width: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--orange);
      transition: transform .3s var(--ease-spring);
    }

    .nav-logo:hover img {
      transform: scale(1.1) rotate(-5deg);
    }

    .nav-brand {
      font-family: Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: .04em;
    }

    .nav-brand span {
      color: var(--orange);
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 255, 255, .55);
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: color .3s;
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), var(--orange-l));
      border-radius: 99px;
      transition: width .35s var(--ease-out);
    }

    .nav-links a:hover {
      color: #fff;
    }

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

    .nav-cta {
      display: flex;
      align-items: center;
      gap: .5rem;
      background: var(--orange);
      color: #fff;
      padding: .55rem 1.4rem;
      border-radius: 99px;
      font-weight: 700;
      font-size: .76rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      font-family: Arial, sans-serif;
      transition: all .3s var(--ease-out);
      box-shadow: 0 4px 15px rgba(240, 101, 34, .25);
    }

    .nav-cta:hover {
      background: var(--orange-l);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(240, 101, 34, .35);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 210;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 99px;
      transition: all .3s var(--ease-out);
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 199;
      background: rgba(6, 16, 28, .97);
      backdrop-filter: blur(30px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: all .4s var(--ease-out);
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu a {
      font-family: Arial, sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      opacity: 0;
      transform: translateY(20px);
      transition: all .4s var(--ease-out);
      letter-spacing: .02em;
    }

    .mobile-menu.open a {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu.open a:nth-child(1) {
      transition-delay: .1s;
    }

    .mobile-menu.open a:nth-child(2) {
      transition-delay: .15s;
    }

    .mobile-menu.open a:nth-child(3) {
      transition-delay: .2s;
    }

    .mobile-menu.open a:nth-child(4) {
      transition-delay: .25s;
    }

    .mobile-menu.open a:nth-child(5) {
      transition-delay: .3s;
    }

    .mobile-menu.open a:nth-child(6) {
      transition-delay: .35s;
    }

    .mobile-menu a .mm-tag {
      font-size: .6rem;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: .15em;
      display: block;
      margin-bottom: .2rem;
      font-weight: 600;
    }

    /* ── HERO (VERSION AMÉLIORÉE) ── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 5vw 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 70% 35%, rgba(26, 128, 196, .1), transparent 60%), radial-gradient(ellipse 50% 50% at 15% 75%, rgba(240, 101, 34, .06), transparent 50%), radial-gradient(ellipse 40% 40% at 50% 50%, rgba(26, 128, 196, .03), transparent);
      pointer-events: none;
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(26, 128, 196, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 128, 196, .025) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridMove 30s linear infinite;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    }

    @keyframes gridMove {
      from {
        background-position: 0 0;
      }

      to {
        background-position: 80px 80px;
      }
    }

    .hero-shapes {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hs1 {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      border: 55px solid var(--blue);
      opacity: .06;
      animation: float1 20s ease-in-out infinite;
    }

    .hs2 {
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      border: 40px solid var(--orange);
      opacity: .05;
      animation: float2 25s ease-in-out infinite;
    }

    .hs3 {
      position: absolute;
      top: 35%;
      right: 8%;
      width: 160px;
      height: 160px;
      border: 2px solid rgba(240, 101, 34, .1);
      transform: rotate(20deg);
      animation: float3 15s ease-in-out infinite;
    }

    .hs4 {
      position: absolute;
      top: 20%;
      left: 15%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      opacity: .3;
      animation: float4 10s ease-in-out infinite;
    }

    .hs5 {
      position: absolute;
      top: 60%;
      right: 20%;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue-l);
      opacity: .3;
      animation: float4 12s ease-in-out infinite reverse;
    }

    .hs6 {
      position: absolute;
      bottom: 25%;
      left: 8%;
      width: 100px;
      height: 100px;
      border: 1px solid rgba(26, 128, 196, .08);
      border-radius: 50%;
      animation: float2 18s ease-in-out infinite;
    }

    @keyframes float1 {

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

      50% {
        transform: translate(-20px, 25px) rotate(8deg);
      }
    }

    @keyframes float2 {

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

      50% {
        transform: translate(15px, -20px);
      }
    }

    @keyframes float3 {

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

      50% {
        transform: rotate(28deg) translate(-10px, 15px);
      }
    }

    @keyframes float4 {

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

      50% {
        transform: translate(10px, -15px);
        opacity: .6;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      background: rgba(240, 101, 34, .08);
      border: 1px solid rgba(240, 101, 34, .2);
      padding: .4rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.8rem;
      animation: fadeUp .7s ease both;
    }

    .pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      animation: blink 1.5s infinite;
      box-shadow: 0 0 8px var(--orange-glow);
    }

    .hero-pill span {
      color: var(--orange-l);
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      font-family: Arial, sans-serif;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .3;
      }
    }

    /* ✨ HERO TITLE AMÉLIORÉ */
    h1.hero-t {
      font-family: Arial, sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -.03em;
      animation: fadeUp .85s .1s ease both;
    }

    h1.hero-t .bl {
      background: linear-gradient(135deg, var(--blue-l), #7BC6FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h1.hero-t .or {
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h1.hero-t .wh {
      color: #fff;
    }

    .hero-sub {
      font-size: 1.05rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, .5);
      max-width: 560px;
      margin-top: 1.5rem;
      animation: fadeUp 1s .2s ease both;
    }

    /* ✨ HERO BADGES ROW */
    .hero-badges {
      display: flex;
      gap: .7rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
      animation: fadeUp 1s .3s ease both;
    }

    .hbadge {
      display: flex;
      align-items: center;
      gap: .4rem;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      padding: .35rem .85rem;
      border-radius: 100px;
      font-size: .72rem;
      color: rgba(255, 255, 255, .55);
      font-weight: 500;
    }

    .hbadge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
    }

    .hbadge-dot-b {
      background: var(--blue-l);
    }

    .hbadge-dot-o {
      background: var(--orange-l);
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
      animation: fadeUp 1s .4s ease both;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      color: #fff;
      padding: .95rem 2.2rem;
      font-weight: 700;
      border-radius: 99px;
      text-decoration: none;
      font-size: .86rem;
      font-family: Arial, sans-serif;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: all .35s var(--ease-out);
      box-shadow: 0 4px 20px rgba(240, 101, 34, .3);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--orange-l), var(--orange));
      opacity: 0;
      transition: opacity .3s;
      border-radius: 99px;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(240, 101, 34, .4);
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary span {
      position: relative;
      z-index: 1;
    }

    .btn-ghost {
      color: #fff;
      padding: .95rem 2.2rem;
      font-weight: 700;
      border-radius: 99px;
      text-decoration: none;
      font-size: .86rem;
      font-family: Arial, sans-serif;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: all .35s var(--ease-out);
      border: 1px solid rgba(255, 255, 255, .15);
      background: rgba(255, 255, 255, .03);
      backdrop-filter: blur(10px);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .25);
      transform: translateY(-3px);
    }

    .btn-wa {
      background: #25D366;
      color: #fff;
      padding: .95rem 2.2rem;
      font-weight: 700;
      border-radius: 99px;
      text-decoration: none;
      font-size: .86rem;
      font-family: Arial, sans-serif;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: all .35s var(--ease-out);
      box-shadow: 0 4px 20px rgba(37, 211, 102, .25);
    }

    .btn-wa:hover {
      background: #1da851;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(37, 211, 102, .3);
    }

    .hero-stats {
      display: flex;
      gap: 3.5rem;
      margin-top: 4rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, .06);
      flex-wrap: wrap;
      animation: fadeUp 1s .5s ease both;
    }

    .hstat {
      text-align: left;
    }

    .hstat-n {
      font-family: Arial, sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hstat-l {
      font-size: .72rem;
      color: rgba(255, 255, 255, .35);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-top: .3rem;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

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

    /* ── MARQUEE ── */
    .marquee {
      background: linear-gradient(135deg, var(--blue-d), var(--blue));
      padding: 1rem 0;
      overflow: hidden;
      position: relative;
    }

    .marquee::before,
    .marquee::after {
      content: '';
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      z-index: 2;
    }

    .marquee::before {
      left: 0;
      background: linear-gradient(to right, var(--blue-d), transparent);
    }

    .marquee::after {
      right: 0;
      background: linear-gradient(to left, var(--blue), transparent);
    }

    .marquee-track {
      display: flex;
      animation: marquee 25s linear infinite;
      width: max-content;
    }

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

    .marquee-item {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: 0 2.5rem;
      font-family: Arial, sans-serif;
      font-size: .82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255, 255, 255, .9);
      white-space: nowrap;
    }

    .marquee-item .sep {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .3);
      margin-left: 1rem;
    }

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

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

    /* ── SECTIONS COMMON ── */
    section {
      padding: 7rem 5vw;
    }

    .stag {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: 1rem;
    }

    .stag-line {
      width: 35px;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), var(--orange-l));
      border-radius: 99px;
    }

    .stag-txt {
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--orange-l);
      font-weight: 700;
      font-family: Arial, sans-serif;
    }

    h2.stitle {
      font-family: Arial, sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -.02em;
      margin-bottom: 1.2rem;
    }

    h2.stitle .bl {
      background: linear-gradient(135deg, var(--blue-l), #7BC6FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h2.stitle .or {
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sintro {
      color: rgba(255, 255, 255, .5);
      font-size: .95rem;
      line-height: 1.85;
      max-width: 560px;
    }

    /* ── SERVICES ── */
    #services {
      background: var(--dark2);
      position: relative;
    }

    #services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
    }

    .srv-head {
      text-align: center;
      margin-bottom: 4rem;
    }

    .srv-head .stag {
      justify-content: center;
    }

    .srv-head .sintro {
      margin: 0 auto;
    }

    .srv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .scard {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      padding: 2.5rem;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      transition: all .4s var(--ease-out);
      cursor: default;
    }

    .scard::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s var(--ease-out);
    }

    .scard::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(26, 128, 196, .06), transparent);
      opacity: 0;
      transition: opacity .4s;
    }

    .scard:hover {
      background: rgba(26, 128, 196, .05);
      border-color: rgba(26, 128, 196, .15);
      transform: translateY(-4px);
    }

    .scard:hover::before {
      transform: scaleX(1);
    }

    .scard:hover::after {
      opacity: 1;
    }

    .scard-ico {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.4rem;
      transition: transform .3s var(--ease-spring);
    }

    .scard:hover .scard-ico {
      transform: scale(1.1) rotate(-3deg);
    }

    .ico-b {
      background: rgba(26, 128, 196, .1);
      border: 1px solid rgba(26, 128, 196, .15);
    }

    .ico-o {
      background: rgba(240, 101, 34, .1);
      border: 1px solid rgba(240, 101, 34, .15);
    }

    .scard-name {
      font-family: Arial, sans-serif;
      font-size: 1.12rem;
      font-weight: 800;
      margin-bottom: .65rem;
    }

    .scard-desc {
      font-size: .86rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.75;
    }

    .scard-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      margin-top: 1.2rem;
    }

    .stg {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      padding: .28rem .7rem;
      border-radius: 100px;
      font-size: .67rem;
      color: rgba(255, 255, 255, .4);
      letter-spacing: .06em;
      transition: all .3s;
    }

    .stg-b {
      background: rgba(26, 128, 196, .08);
      border-color: rgba(26, 128, 196, .15);
      color: var(--blue-l);
    }

    .stg-o {
      background: rgba(240, 101, 34, .08);
      border-color: rgba(240, 101, 34, .15);
      color: var(--orange-l);
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      padding: 5rem 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
    }

    .cta-band::after {
      content: '';
      position: absolute;
      bottom: -40%;
      left: -5%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
    }

    .cta-band-inner {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-band h2 {
      font-family: Arial, sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: .8rem;
    }

    .cta-band p {
      color: rgba(255, 255, 255, .85);
      font-size: 1rem;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .cta-band-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: #fff;
      color: var(--orange);
      padding: .95rem 2.2rem;
      font-weight: 800;
      border-radius: 99px;
      text-decoration: none;
      font-size: .86rem;
      font-family: Arial, sans-serif;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: all .35s var(--ease-out);
      box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    }

    .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
    }

    .btn-white-ghost {
      background: transparent;
      color: #fff;
      padding: .95rem 2.2rem;
      font-weight: 700;
      border-radius: 99px;
      text-decoration: none;
      font-size: .86rem;
      font-family: Arial, sans-serif;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: all .35s var(--ease-out);
      border: 2px solid rgba(255, 255, 255, .5);
    }

    .btn-white-ghost:hover {
      background: rgba(255, 255, 255, .1);
      border-color: #fff;
      transform: translateY(-3px);
    }

    /* ── PORTFOLIO ── */
    #portfolio {
      background: var(--dark);
      position: relative;
    }

    #portfolio::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

    .port-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .port-filters {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .filt {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .45);
      padding: .45rem 1rem;
      border-radius: 100px;
      font-size: .73rem;
      font-weight: 700;
      font-family: Arial, sans-serif;
      cursor: pointer;
      transition: all .35s var(--ease-out);
      letter-spacing: .06em;
    }

    .filt.active,
    .filt:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      box-shadow: 0 4px 15px rgba(240, 101, 34, .25);
    }

    .port-grid {
      columns: 3;
      column-gap: 1rem;
    }

    .port-item {
      break-inside: avoid;
      margin-bottom: 1rem;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      display: block;
    }

    .port-item img {
      width: 100%;
      display: block;
      transition: transform .6s var(--ease-out);
    }

    .port-item:hover img {
      transform: scale(1.05);
    }

    .port-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(6, 16, 28, .92) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      align-items: flex-end;
      padding: 1.3rem;
    }

    .port-item:hover .port-overlay {
      opacity: 1;
    }

    .port-caption {
      font-family: Arial, sans-serif;
      font-size: .84rem;
      font-weight: 700;
      color: #fff;
    }

    .port-category {
      font-size: .63rem;
      color: var(--orange-l);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: .25rem;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--dark2);
      position: relative;
    }

    #about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

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

    .about-visual {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(26, 128, 196, .15);
      background: var(--dark3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-img-main::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(to right, var(--blue), var(--orange));
      z-index: 1;
    }

    .about-img-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 40%, rgba(26, 128, 196, .08), transparent 60%), radial-gradient(circle at 70% 70%, rgba(240, 101, 34, .06), transparent 50%);
      pointer-events: none;
    }

    .about-img-main img {
      width: 75%;
      height: auto;
      object-fit: contain;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 10px 40px rgba(0, 0, 0, .3));
      animation: floatLogo 6s ease-in-out infinite;
    }

    @keyframes floatLogo {

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

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

    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      color: #fff;
      padding: 1.6rem;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: 0 12px 35px rgba(240, 101, 34, .3);
    }

    .ab-num {
      font-family: Arial, sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      line-height: 1;
    }

    .ab-lbl {
      font-size: .63rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      opacity: .9;
      margin-top: .3rem;
    }

    .about-float {
      position: absolute;
      top: 1.5rem;
      left: -2rem;
      background: rgba(22, 42, 72, .9);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(26, 128, 196, .2);
      padding: 1rem 1.3rem;
      border-radius: 12px;
      min-width: 160px;
      z-index: 2;
    }

    .af-lbl {
      font-size: .63rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: .4rem;
    }

    .af-val {
      font-family: Arial, sans-serif;
      font-size: 1rem;
      font-weight: 700;
    }

    .af-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      margin-right: .4rem;
      animation: blink 1.5s infinite;
      box-shadow: 0 0 8px rgba(34, 197, 94, .4);
    }

    .about-vals {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }

    .aval {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.2rem;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      border-left: 3px solid var(--blue);
      transition: all .35s var(--ease-out);
    }

    .aval:hover {
      border-left-color: var(--orange);
      background: rgba(26, 128, 196, .04);
      transform: translateX(5px);
    }

    .aval-ico {
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .aval h4 {
      font-family: Arial, sans-serif;
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: .25rem;
    }

    .aval p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .45);
      line-height: 1.6;
    }

    /* ── ✨ TÉMOIGNAGES (NOUVELLE SECTION) ── */
    #testimonials {
      background: var(--dark3);
      position: relative;
      overflow: hidden;
      padding: 7rem 5vw;
    }

    #testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
    }

    #testimonials::after {
      content: '';
      position: absolute;
      top: 20%;
      right: -200px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26, 128, 196, .05), transparent 70%);
      pointer-events: none;
    }

    .testi-head {
      text-align: center;
      margin-bottom: 4rem;
    }

    .testi-head .stag {
      justify-content: center;
    }

    .testi-head .sintro {
      margin: 0 auto;
    }

    /* Carrousel horizontal */
    .testi-track-wrap {
      overflow: hidden;
      position: relative;
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .testi-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--dark3), transparent);
    }

    .testi-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--dark3), transparent);
    }

    .testi-track {
      display: flex;
      gap: 1.5rem;
      animation: tScroll 30s linear infinite;
    }

    .testi-track:hover {
      animation-play-state: paused;
    }

    .tcard {
      flex-shrink: 0;
      width: 360px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative;
      transition: all .4s var(--ease-out);
    }

    .tcard:hover {
      transform: translateY(-5px);
      border-color: rgba(240, 101, 34, .2);
      box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
    }

    .tcard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      border-radius: var(--radius) var(--radius) 0 0;
      opacity: 0;
      transition: opacity .3s;
    }

    .tcard:hover::before {
      opacity: 1;
    }

    .tcard-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 1rem;
      color: #FFB800;
      font-size: .85rem;
    }

    .tcard-quote-ico {
      font-size: 2.5rem;
      color: var(--orange);
      opacity: .25;
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: .3rem;
    }

    .tcard-text {
      font-size: .88rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.85;
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    .tcard-author {
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .tcard-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .9rem;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, .1);
    }

    .av-o {
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
    }

    .av-b {
      background: linear-gradient(135deg, var(--blue), var(--blue-l));
    }

    .av-g {
      background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    .av-p {
      background: linear-gradient(135deg, #a855f7, #7c3aed);
    }

    .av-r {
      background: linear-gradient(135deg, #ef4444, #dc2626);
    }

    .tcard-name {
      font-family: Arial, sans-serif;
      font-size: .85rem;
      font-weight: 700;
    }

    .tcard-role {
      font-size: .72rem;
      color: rgba(255, 255, 255, .35);
      margin-top: .15rem;
      letter-spacing: .03em;
    }

    .tcard-service {
      display: inline-block;
      margin-top: .5rem;
      font-size: .62rem;
      color: var(--orange-l);
      background: rgba(240, 101, 34, .08);
      border: 1px solid rgba(240, 101, 34, .15);
      padding: .2rem .6rem;
      border-radius: 100px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

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

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

    /* Boutons nav temoignages */
    .testi-nav {
      display: flex;
      justify-content: center;
      gap: .8rem;
      margin-top: 2rem;
    }

    .tnav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: rgba(255, 255, 255, .5);
      font-size: 1.1rem;
      cursor: pointer;
      transition: all .3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tnav-btn:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: scale(1.1);
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--dark2);
      position: relative;
    }

    #contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
    }

    .contact-top {
      text-align: center;
      margin-bottom: 4rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }

    .c-infos {
      display: flex;
      flex-direction: column;
      gap: 1.3rem;
      margin-top: 1.5rem;
    }

    .cinfo {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .cico {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: transform .3s var(--ease-spring);
    }

    .cinfo:hover .cico {
      transform: scale(1.1) rotate(-5deg);
    }

    .ci-b {
      background: rgba(26, 128, 196, .1);
      border: 1px solid rgba(26, 128, 196, .15);
    }

    .ci-o {
      background: rgba(240, 101, 34, .1);
      border: 1px solid rgba(240, 101, 34, .15);
    }

    .cdet strong {
      display: block;
      font-family: Arial, sans-serif;
      font-size: .85rem;
      font-weight: 700;
      margin-bottom: .25rem;
    }

    .cdet span {
      font-size: .85rem;
      color: rgba(255, 255, 255, .45);
    }

    .csocs {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .csoc {
      padding: .5rem 1rem;
      border-radius: 99px;
      font-size: .72rem;
      font-weight: 700;
      font-family: Arial, sans-serif;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .04em;
      transition: all .35s var(--ease-out);
    }

    .csoc:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    }

    .sfb {
      background: #1877F2;
      color: #fff;
    }

    .sig {
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      color: #fff;
    }

    .stt {
      background: #010101;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .15);
    }

    .syt {
      background: #FF0000;
      color: #fff;
    }

    .ssc {
      background: #FFFC00;
      color: #000;
    }

    .cform-box {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2.8rem;
      border: 1px solid var(--glass-border);
    }

    .cform-ttl {
      font-family: Arial, sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: .4rem;
    }

    .cform-sub {
      font-size: .82rem;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 2rem;
    }

    .cform {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: .35rem;
    }

    .fg label {
      font-size: .67rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      font-family: Arial, sans-serif;
      font-weight: 700;
    }

    .fg input,
    .fg textarea,
    .fg select {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 10px;
      padding: .8rem 1rem;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: .88rem;
      transition: all .3s;
      outline: none;
    }

    .fg input:focus,
    .fg textarea:focus,
    .fg select:focus {
      border-color: var(--blue);
      background: rgba(26, 128, 196, .05);
      box-shadow: 0 0 0 3px rgba(26, 128, 196, .1);
    }

    .fg textarea {
      min-height: 110px;
      resize: vertical;
    }

    .fg select option {
      background: var(--dark3);
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
      color: rgba(255, 255, 255, .18);
    }

    .btn-send {
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      color: #fff;
      border: none;
      padding: 1rem;
      font-weight: 800;
      font-family: Arial, sans-serif;
      font-size: .85rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 99px;
      transition: all .35s var(--ease-out);
      box-shadow: 0 4px 20px rgba(240, 101, 34, .25);
    }

    .btn-send:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(240, 101, 34, .35);
    }

    .or-sep {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: rgba(255, 255, 255, .18);
      font-size: .72rem;
    }

    .or-sep::before,
    .or-sep::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, .06);
    }

    .btn-wa-f {
      background: #25D366;
      color: #fff;
      border: none;
      padding: 1rem;
      font-weight: 800;
      font-family: Arial, sans-serif;
      font-size: .85rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 99px;
      transition: all .35s var(--ease-out);
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .2);
    }

    .btn-wa-f:hover {
      background: #1da851;
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255, 255, 255, .05);
      padding: 3rem 5vw;
    }

    .foot-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
      margin-bottom: 2rem;
    }

    .foot-logo {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: .5rem;
    }

    .foot-logo img {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .foot-brand {
      font-family: Arial, sans-serif;
      font-size: 1rem;
      font-weight: 800;
    }

    .foot-brand span {
      color: var(--orange);
    }

    .foot-tagline {
      font-size: .82rem;
      color: rgba(255, 255, 255, .35);
      max-width: 280px;
      line-height: 1.6;
    }

    .foot-col h4 {
      font-family: Arial, sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 1rem;
    }

    .foot-col a {
      display: block;
      font-size: .85rem;
      color: rgba(255, 255, 255, .4);
      text-decoration: none;
      transition: color .3s;
      margin-bottom: .5rem;
    }

    .foot-col a:hover {
      color: var(--orange);
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .foot-copy {
      font-size: .73rem;
      color: rgba(255, 255, 255, .25);
    }

    /* ── BACK TO TOP ── */
    .back-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--orange-l));
      color: #fff;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all .35s var(--ease-out);
      box-shadow: 0 4px 20px rgba(240, 101, 34, .3);
    }

    .back-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(240, 101, 34, .4);
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, .95);
      backdrop-filter: blur(20px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s;
    }

    .lightbox.open {
      opacity: 1;
      pointer-events: all;
    }

    .lb-img {
      max-width: 90vw;
      max-height: 88vh;
      border-radius: 10px;
      object-fit: contain;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    }

    .lb-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      color: #fff;
      font-size: 1.8rem;
      cursor: pointer;
      opacity: .6;
      transition: all .25s;
      background: rgba(255, 255, 255, .08);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-close:hover {
      opacity: 1;
      background: rgba(240, 101, 34, .3);
    }

    .lb-prev,
    .lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      color: #fff;
      font-size: 1.3rem;
      padding: .8rem 1rem;
      cursor: pointer;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .25s;
    }

    .lb-prev {
      left: 1.5rem;
    }

    .lb-next {
      right: 1.5rem;
    }

    .lb-prev:hover,
    .lb-next:hover {
      background: rgba(240, 101, 34, .3);
      border-color: var(--orange);
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .8s ease, transform .8s var(--ease-out);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .srv-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      }

      .contact-grid {
        gap: 3rem;
      }

      .about-grid {
        gap: 3rem;
      }
    }

    @media(max-width:900px) {
      .port-grid {
        columns: 2;
      }

      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .about-float {
        display: none;
      }

      .about-badge {
        right: 0;
        bottom: -1rem;
      }

      .about-visual {
        max-width: 500px;
        margin: 0 auto;
      }

      .hero-stats {
        gap: 2rem;
      }

      h1.hero-t {
        font-size: clamp(2.2rem, 6vw, 4rem);
      }

      .foot-top {
        gap: 2.5rem;
      }

      .tcard {
        width: 300px;
      }
    }

    @media(max-width:768px) {

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      section {
        padding: 4.5rem 5vw;
      }

      #hero {
        padding: 7rem 5vw 4rem;
        min-height: auto;
      }

      .hero-sub {
        font-size: .95rem;
      }

      .hero-btns {
        flex-direction: column;
        gap: .8rem;
      }

      .hero-btns a {
        text-align: center;
        justify-content: center;
      }

      .srv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .scard {
        padding: 1.8rem;
      }

      .port-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .contact-grid {
        gap: 2.5rem;
      }

      .cform-box {
        padding: 2rem;
      }

      .foot-top {
        flex-direction: column;
      }

      .foot-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media(max-width:480px) {
      section {
        padding: 3.5rem 4vw;
      }

      #hero {
        padding: 6rem 4vw 3rem;
      }

      h1.hero-t {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        letter-spacing: -.02em;
      }

      .hero-pill span {
        font-size: .6rem;
        letter-spacing: .1em;
      }

      .hero-sub {
        font-size: .9rem;
        line-height: 1.75;
      }

      .hero-badges {
        gap: .4rem;
      }

      .hbadge {
        font-size: .65rem;
        padding: .28rem .65rem;
      }

      .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
      }

      .hstat {
        display: flex;
        align-items: center;
        gap: .8rem;
      }

      .hstat-n {
        font-size: 2rem;
      }

      .hstat-l {
        margin-top: 0;
      }

      h2.stitle {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        letter-spacing: -.015em;
      }

      .srv-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .scard {
        padding: 1.5rem;
      }

      .port-grid {
        columns: 1;
      }

      .port-filters {
        gap: .4rem;
      }

      .filt {
        padding: .35rem .75rem;
        font-size: .68rem;
      }

      .about-badge {
        padding: 1.2rem;
        bottom: -1rem;
        right: -.5rem;
      }

      .ab-num {
        font-size: 2rem;
      }

      .aval {
        padding: 1rem;
        gap: .8rem;
      }

      .tcard {
        width: 280px;
      }

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

      .cform-box {
        padding: 1.5rem;
        border-radius: 14px;
      }

      .cform-ttl {
        font-size: 1.1rem;
      }

      .fg input,
      .fg textarea,
      .fg select {
        padding: .7rem .85rem;
        font-size: .85rem;
      }

      .csocs {
        gap: .45rem;
      }

      .csoc {
        padding: .4rem .75rem;
        font-size: .67rem;
      }

      .mobile-menu a {
        font-size: 1.4rem;
      }

      .back-top {
        width: 42px;
        height: 42px;
        bottom: 1.2rem;
        right: 1.2rem;
        font-size: 1rem;
      }

      .cta-band {
        padding: 3.5rem 5vw;
      }
    }

    @media(max-width:360px) {
      section {
        padding: 3rem 3.5vw;
      }

      #hero {
        padding: 5.5rem 3.5vw 2.5rem;
      }

      h1.hero-t {
        font-size: 1.7rem;
        letter-spacing: -.02em;
      }

      .hero-pill {
        padding: .3rem .7rem;
      }

      .hero-pill span {
        font-size: .55rem;
      }

      .hero-btns a {
        padding: .8rem 1.5rem;
        font-size: .78rem;
      }

      .btn-send,
      .btn-wa-f {
        padding: .85rem;
        font-size: .78rem;
      }

      nav {
        height: 60px;
        padding: 0 3.5vw;
      }

      .nav-logo img {
        height: 36px;
        width: 36px;
      }

      .nav-brand {
        font-size: .95rem;
      }

      .about-badge {
        padding: 1rem;
      }

      .ab-num {
        font-size: 1.7rem;
      }
    }

    @media(max-height:500px) and (orientation:landscape) {
      #hero {
        min-height: auto;
        padding: 5rem 5vw 2rem;
      }

      .hero-stats {
        margin-top: 2rem;
        padding-top: 1.5rem;
      }

      .mobile-menu a {
        font-size: 1.2rem;
      }

      .mobile-menu {
        gap: 1rem;
      }
    }
    .client-logo-card {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 14px;
      padding: 1.4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      aspect-ratio: 4/3;
      overflow: hidden;
      transition: all .4s var(--ease-out);
      cursor: pointer;
      position: relative;
    }

    .client-logo-card:hover {
      border-color: rgba(240, 101, 34, .3);
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    }

    .client-logo-card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .3));
      transition: transform .3s;
    }

    .client-logo-card:hover img {
      transform: scale(1.05);
    }

    .clc-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(6, 16, 28, .9), transparent);
      padding: .7rem;
      font-family: Arial, sans-serif;
      font-size: .65rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .7);
      text-align: center;
      opacity: 0;
      transition: opacity .3s;
    }

    .client-logo-card:hover .clc-overlay {
      opacity: 1;
    }
