
    :root {
      --black: #FFFFFF;
      --white: #000000;
      --gray: #F8FAFC;
      --blue: #000000; /* Replaced blue with black */
      --blue-glow: rgba(0,0,0,0.05);
      --accent: #000000; 
      --glass: rgba(255, 255, 255, 0.7);
      --border: rgba(0, 0, 0, 0.08);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: #fff;
      color: #000;
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      cursor: default;
    }

    /* ─── CUSTOM CURSOR ─── */
    #cursor, #cursor-follower {
      display: none !important;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: #fff; }
    ::-webkit-scrollbar-thumb { background: #000; border-radius: 2px; }

    /* ─── FONTS ─── */
    .font-bebas { font-family: 'Bebas Neue', sans-serif; }
    .font-syne  { font-family: 'Syne', sans-serif; }
    .font-dm    { font-family: 'DM Sans', sans-serif; }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.3;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.5rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #000; /* Le header est noir dès le haut de la page */
      border-bottom: 2px solid rgba(255,255,255,0.05);
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(0,0,0,0.9);
      backdrop-filter: blur(20px);
      padding: 1rem 4rem;
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.1em;
      color: #fff;
      text-decoration: none;
    }
    .nav-logo-link { display: flex; align-items: center; }
    .nav-logo-img { height: 45px; width: auto; transition: transform 0.3s ease; }
    .nav-logo-link:hover .nav-logo-img { transform: scale(1.05); }
    .nav-links { display: flex; gap: 2.5rem; align-items: center; }
    .nav-links a {
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: #000;
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: #fff;
      color: #000 !important;
      padding: 0.6rem 1.4rem !important;
      border-radius: 2px;
      transition: all 0.3s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: rgba(255,255,255,0.8) !important; box-shadow: 0 0 20px rgba(255,255,255,0.2) !important; }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.1em;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
    }

    /* ─── HERO ─── */
    #hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 0 4rem;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, white 40%, transparent 100%);
    }

    .hero-glow {
      position: absolute;
      width: 1000px; height: 1000px;
      background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.02) 35%, transparent 75%);
      top: 40%; left: 60%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      filter: blur(80px);
      animation: pulseGlow 10s ease-in-out infinite alternate;
    }
    @keyframes pulseGlow {
      0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
      100% { opacity: 0.8; transform: translate(-45%, -55%) scale(1.1); }
    }

    .hero-line {
      position: absolute;
      top: 0; left: 6rem;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent, #000, transparent);
    }

    .hero-container {
      max-width: 1300px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 3rem;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      flex: 1.2;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease forwards 0.8s;
    }

    .hero-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 0.5rem;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5.5vw, 3.8rem); /* Reduced from 6rem */
      line-height: 1; /* More compact but breathable */
      letter-spacing: 0.02em;
      margin-bottom: 1.2rem;
      text-transform: uppercase;
    }
    .hero-title .blue { color: #000; }

    .hero-subtitle {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: rgba(0,0,0,0.9);
      margin-bottom: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-desc {
      max-width: 400px;
      font-size: 0.9rem;
      line-height: 1.6;
      color: rgba(0,0,0,0.7);
      margin-bottom: 2rem;
    }

    .hero-visual-right {
      flex: 1;
      display: flex;
      justify-content: center; /* Pushed toward left/center */
      align-items: center;
      opacity: 0;
      transform: translateX(40px);
      animation: fadeUp 1s ease forwards 1.2s;
    }

    .hero-icon-cluster {
      position: relative;
      width: 450px;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .floating-icon-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: 140px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      cursor: none;
      z-index: 5;
    }
    .floating-icon-card:hover {
      background: #fff;
      transform: scale(1.1) translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }
    .floating-icon-card svg {
      width: 32px;
      height: 32px;
      stroke: #000;
      fill: none;
      stroke-width: 1.5;
    }
    .floating-icon-card span {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #000;
    }

    /* Positions & Animations */
    .card-center {
      width: 160px; height: 160px; justify-content: center;
      animation: floatMedium 6s ease-in-out infinite;
    }
    .card-tl { top: 0; left: 0; animation: floatSlow 8s ease-in-out infinite; }
    .card-tr { top: 10%; right: 0; animation: floatFast 5s ease-in-out infinite; }
    .card-bl { bottom: 10%; left: 15%; animation: floatMedium 7s ease-in-out infinite; }
    .card-br { bottom: 0; right: 5%; animation: floatSlow 9s ease-in-out infinite; }
    .card-ml { top: 50%; left: -10%; transform: translateY(-50%); animation: floatFast 6s ease-in-out infinite; }

    @keyframes floatMedium {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    @keyframes floatSlow {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-15px, 15px); }
    }
    @keyframes floatFast {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(15px, -15px); }
    }

    @media (max-width: 1024px) {
      .hero-container { gap: 2rem; }
      .hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
      .hero-visual-right { flex: 0.8; }
    }
    @media (max-width: 768px) {
      #hero { padding: 0 1.5rem; text-align: center; }
      .hero-container { flex-direction: column; justify-content: center; }
      .hero-content { flex: none; width: 100%; margin: 0; }
      .hero-visual-right { display: none; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-line { left: 1.5rem; }
    }

    .btn-primary {
      background: #000;
      color: #fff;
      padding: 1.1rem 2.8rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: none;
      cursor: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover { 
      background: #111;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
      transform: translateY(-5px); 
    }

    .btn-outline {
      background: transparent;
      color: #000;
      padding: 1rem 2.2rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(0,0,0,0.2);
      cursor: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      transition: all 0.3s;
    }
    .btn-outline:hover { border-color: #000; background: rgba(0,0,0,0.05); transform: translateY(-2px); }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeIn 1s ease forwards 2.2s;
    }
    .hero-scroll span {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.35);
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.2); }
    }

    .hero-stats {
      position: absolute;
      right: 4rem;
      bottom: 4rem;
      display: flex;
      gap: 3rem;
      opacity: 0;
      animation: fadeUp 1s ease forwards 1.8s;
      padding: 2rem;
      background: rgba(255,255,255,0.02);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0,0,0,0.03);
      border-radius: 12px;
    }
    .stat-item { 
      text-align: center;
      position: relative;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -1.5rem; top: 10%; bottom: 10%;
      width: 1px; background: rgba(0,0,0,0.08);
    }
    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: #000;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.6);
      font-weight: 700;
    }

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

    /* ─── SECTION BASE ─── */
    section { position: relative; overflow: hidden; }

    .section-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 6rem);
      line-height: 0.95;
      letter-spacing: 0.02em;
    }

    /* ─── ABOUT ─── */
    #about {
      padding: 10rem 4rem;
      background: #fff;
      position: relative;
    }
    #about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 100%);
      pointer-events: none;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .blog-visual {
      position: relative;
      height: 240px;
      overflow: hidden;
      background: #fff;
    }
    .about-visual {
      position: relative;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-img-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }
    .about-img-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .about-img-wrapper:hover img {
      transform: scale(1.05);
    }
    .about-frame {
      position: absolute;
      top: -15px;
      left: -15px;
      right: 15px;
      bottom: 15px;
      border: 2px solid rgba(0,0,0,0.08);
      border-radius: 16px;
      z-index: 1;
      pointer-events: none;
    }
    .about-frame::before {
      content: '';
      position: absolute;
      bottom: -8px;
      right: -8px;
      width: 70px;
      height: 70px;
      background: #000;
      border-radius: 50%;
      z-index: 3;
    }
    .about-badge-float {
      position: absolute;
      bottom: 30px;
      right: -20px;
      background: #fff;
      padding: 1.2rem 1.6rem;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      z-index: 10;
      animation: floatBadge 6s ease-in-out infinite;
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .about-badge-float .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      line-height: 1;
      color: #000;
    }
    .about-badge-float .lbl {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.5);
    }
    .about-floating-card {
      position: absolute;
      top: 40px;
      left: -30px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      padding: 1rem 1.2rem;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 12px 35px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      z-index: 10;
      animation: floatCard 7s ease-in-out infinite;
    }
    @keyframes floatCard {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-6px) rotate(2deg); }
    }
    .about-floating-card .icon {
      width: 35px;
      height: 35px;
      background: #000;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-floating-card .icon svg {
      width: 18px;
      height: 18px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
    }
    .about-floating-card .text {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #000;
      line-height: 1.3;
    }
    .about-floating-card .text strong {
      display: block;
      font-size: 1rem;
      font-weight: 800;
    }
    .about-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding-top: 1.5rem;
    }
    .about-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #000;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .about-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: #000;
    }
    .about-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #000;
    }
    .about-title span {
      position: relative;
      display: inline-block;
    }
    .about-title span::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      width: 100%;
      height: 6px;
      background: rgba(0,0,0,0.1);
      z-index: -1;
    }
    .about-desc {
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(0,0,0,0.8);
    }
    .about-desc p {
      margin-bottom: 1rem;
    }
    .about-mission {
      padding: 1.5rem;
      background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.01) 100%);
      border-left: 3px solid #000;
      border-radius: 0 10px 10px 0;
    }
    .about-mission-header {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .about-mission-header::before {
      content: '';
      width: 20px;
      height: 1px;
      background: #000;
    }
    .about-mission p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(0,0,0,0.85);
    }
    .about-stats {
      display: flex;
      gap: 2.5rem;
      padding-top: 0.5rem;
    }
    .about-stats .stat-item {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .about-stats .stat-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      line-height: 1;
      color: #000;
    }
    .about-stats .stat-label-small {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.65);
    }
    .about-stats .stat-sep {
      width: 1px;
      background: rgba(0,0,0,0.1);
    }
    .about-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #000;
      text-decoration: none;
      padding: 0.9rem 1.6rem;
      border: 1px solid rgba(0,0,0,0.2);
      border-radius: 8px;
      transition: all 0.3s ease;
      width: fit-content;
      margin-top: 0.5rem;
    }
    .about-cta:hover {
      background: #000;
      color: #fff;
      border-color: #000;
    }
    .about-cta svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      transition: transform 0.3s ease;
    }
    .about-cta:hover svg {
      transform: translateX(4px);
    }

    /* ─── SERVICES ─── */
    #services {
      padding: 10rem 4rem;
      background: linear-gradient(180deg, #fbfbfb 0%, #fff 100%);
      position: relative;
    }
    #services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    }
    .services-header {
      max-width: 1300px;
      margin: 0 auto 6rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .services-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
    }
    .services-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: #000;
    }
    .services-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 5vw, 5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #000;
    }
    .services-desc {
      max-width: 340px;
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(0,0,0,0.75);
      text-align: right;
    }
    .services-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .service-card {
      background: #fff;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid rgba(0,0,0,0.06);
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.3) 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .service-card:hover::before {
      transform: scaleX(1);
    }
    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.08);
      border-color: rgba(0,0,0,0.15);
    }
    .service-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: rgba(0,0,0,0.05);
      position: absolute;
      top: 0.8rem;
      right: 1.2rem;
      line-height: 1;
      pointer-events: none;
      transition: color 0.4s ease;
    }
    .service-card:hover .service-num {
      color: rgba(0,0,0,0.15);
    }
    .service-icon-wrapper {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.01) 100%);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.8rem;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .service-card:hover .service-icon-wrapper {
      background: #000;
      border-color: #000;
      transform: scale(1.1) rotate(-5deg);
    }
    .service-icon-wrap {
      width: 28px;
      height: 28px;
      transition: all 0.4s ease;
    }
    .service-icon-wrap svg {
      width: 100%;
      height: 100%;
      stroke: #000;
      fill: none;
      stroke-width: 1.8;
    }
    .service-card:hover .service-icon-wrap svg {
      stroke: #fff;
    }
    .service-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
      color: #000;
      padding-right: 2rem;
    }
    .service-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(0,0,0,0.75);
      margin-bottom: 1.5rem;
    }
    .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .service-list li {
      font-size: 0.85rem;
      color: rgba(0,0,0,0.65);
      padding: 0.5rem 0;
      border-top: 1px solid rgba(0,0,0,0.08);
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      transition: color 0.3s ease;
    }
    .service-card:hover .service-list li {
      color: rgba(0,0,0,0.85);
    }
    .service-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: #000;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.35rem;
      transition: all 0.3s ease;
    }
    .service-card:hover .service-list li::before {
      background: #000;
      transform: scale(1.2);
    }
    .services-cta-wrap {
      max-width: 1300px;
      margin: 4rem auto 0;
      text-align: center;
    }

    /* ─── PACKS ─── */
    #packs {
      padding: 8rem 4rem;
      background: #fff;
      position: relative;
    }
    #packs::before {
      content: 'PACKS';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20vw;
      color: rgba(0,0,0,0.015);
      pointer-events: none;
      white-space: nowrap;
    }
    .packs-header {
      max-width: 1300px;
      margin: 0 auto 5rem;
      text-align: center;
    }
    .packs-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .pack-card {
      background: linear-gradient(145deg, #ffffff, #f8faff);
      padding: 3.5rem 2.2rem;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(0,0,0,0.05);
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      cursor: none;
      box-shadow: 0 15px 45px rgba(0,0,0,0.03);
    }
    .pack-card.featured {
      background: linear-gradient(145deg, #050505, #111111);
      color: #fff;
      border-color: #000;
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    }
    .pack-card:hover:not(.featured) {
      background: #fff;
      transform: translateY(-12px);
      border-color: #2563EB;
      box-shadow: 0 30px 60px rgba(37,99,235,0.1);
    }
    .pack-card.featured:hover {
      transform: scale(1.06) translateY(-12px);
      box-shadow: 0 45px 90px rgba(37,99,235,0.3);
    }
    .pack-badge {
      display: inline-block;
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      background: rgba(0,0,0,0.05);
      color: #000;
      margin-bottom: 2rem;
      border-radius: 4px;
    }
    .pack-card.featured .pack-badge { background: #fff; color: #000; }
    .pack-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.05em;
      margin-bottom: 0.3rem;
    }
    .pack-subtitle {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.6);
      margin-bottom: 2rem;
    }
    .pack-card.featured .pack-subtitle { color: rgba(255,255,255,0.75); }
    .pack-price-old {
      font-size: 1.8rem;
      text-decoration: line-through;
      color: rgba(220, 38, 38, 0.7);
      display: block;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .pack-card.featured .pack-price-old {
      color: rgba(255,255,255,0.6);
    }
    .promo-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: #DE2121;
      color: #fff;
      padding: 0.4rem 1rem;
      font-size: 0.65rem;
      font-weight: 800;
      border-radius: 99px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      box-shadow: 0 8px 15px rgba(222, 33, 33, 0.25);
    }
    .pack-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4.5rem;
      line-height: 0.9;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
      color: #000;
      display: flex;
      align-items: baseline;
      gap: 0.3rem;
    }
    .pack-price span {
      font-size: 1.2rem;
      opacity: 0.5;
    }
    .pack-card.featured .pack-price { color: #fff; }
    .pack-price-secondary {
      font-size: 0.95rem;
      font-weight: 700;
      color: rgba(0,0,0,0.8);
      margin-top: -0.5rem;
    }
    .pack-card.featured .pack-price-secondary { color: rgba(255,255,255,0.8); }
    .pack-networks {
      font-size: 0.85rem;
      color: rgba(0,0,0,0.8);
      margin-bottom: 1.5rem;
    }
    .pack-card.featured .pack-networks { color: rgba(255,255,255,0.8); }
    .pack-footer-notes {
      font-size: 0.75rem;
      color: rgba(0,0,0,0.55);
      margin-bottom: 2rem;
      line-height: 1.5;
    }
    .pack-footer-notes p { margin-bottom: 0.3rem; }
    .pack-card.featured .pack-footer-notes { color: rgba(255,255,255,0.7); }
    .pack-divider {
      width: 100%; height: 1px;
      background: rgba(0,0,0,0.08);
      margin: 2rem 0;
    }
    .pack-card.featured .pack-divider { background: rgba(255,255,255,0.15); }
    .pack-features {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .pack-feature {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.9rem;
      color: rgba(0,0,0,0.7);
      transition: transform 0.3s ease;
    }
    .pack-feature::before {
      content: "→";
      color: #2563EB;
      font-weight: 800;
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .pack-card.featured .pack-feature { color: rgba(255,255,255,0.8); }
    .pack-feature:hover { transform: translateX(5px); color: #000; }
    .pack-card.featured .pack-feature:hover { color: #fff; }
    .pack-note {
      font-size: 0.78rem;
      color: rgba(0,0,0,0.55);
      margin-bottom: 2rem;
      line-height: 1.5;
    }
    .pack-card.featured .pack-note { color: rgba(255,255,255,0.7); }
    .pack-cta {
      display: block;
      text-align: center;
      padding: 1.1rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid #000;
      color: #000;
      transition: all 0.3s;
      border-radius: 8px;
    }
    .pack-card.featured .pack-cta {
      background: #fff;
      color: #000;
      border-color: #fff;
    }
    .pack-cta:hover { background: #000; color: #fff; }
    .pack-card.featured .pack-cta:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); color: #000; }

    .pack-post-desc {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px dashed rgba(0,0,0,0.1);
      font-size: 0.85rem;
      line-height: 1.6;
      color: rgba(0,0,0,0.7);
    }
    .pack-card.featured .pack-post-desc {
      border-top-color: rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.8);
    }
    .pack-post-desc p {
      margin-bottom: 0.8rem;
    }
    .pack-post-desc ul {
      list-style-type: none;
      padding-left: 0.5rem;
      margin-bottom: 0.8rem;
    }
    .pack-post-desc ul li {
      position: relative;
      padding-left: 1rem;
      margin-bottom: 0.3rem;
    }
    .pack-post-desc ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #2563EB;
      font-weight: bold;
    }
    .pack-card.featured .pack-post-desc ul li::before {
      color: #fff;
    }

    /* ─── PORTFOLIO ─── */
    #portfolio {
      padding: 8rem 4rem;
      background: #fbfbfb;
    }
    .portfolio-header {
      max-width: 1300px;
      margin: 0 auto 4rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .portfolio-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(2, 320px);
      gap: 2rem;
    }
    .port-item {
      position: relative;
      overflow: hidden;
      cursor: none;
      background: #efefef;
      border-radius: 12px;
    }
    .port-item:nth-child(1) { grid-column: span 7; }
    .port-item:nth-child(2) { grid-column: span 5; }
    .port-item:nth-child(3) { grid-column: span 4; }
    .port-item:nth-child(4) { grid-column: span 4; }
    .port-item:nth-child(5) { grid-column: span 4; }
    .port-item:nth-child(6) { grid-column: span 4; }
    .port-item:nth-child(7) { grid-column: span 4; }
    .port-item:nth-child(8) { grid-column: span 4; }
    .port-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .port-item:hover .port-bg { transform: scale(1.06); }
    .port-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 80%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
    }
    .port-item:hover .port-overlay { opacity: 1; }
    .port-info .port-tag {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0.4rem;
    }
    .port-info .port-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
    }
    .port-pattern {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem;
      color: rgba(0,0,0,0.04);
      letter-spacing: 0.05em;
    }
    .port-item:nth-child(1) .port-bg { background: linear-gradient(135deg, #060810, #0d1529); }
    .port-item:nth-child(2) .port-bg { background: linear-gradient(135deg, #080808, #111); }
    .port-item:nth-child(3) .port-bg { background: linear-gradient(135deg, #06080d, #0a1020); }
    .port-item:nth-child(4) .port-bg { background: linear-gradient(135deg, #070707, #0f0f0f); }
    .port-item:nth-child(5) .port-bg { background: linear-gradient(135deg, #060a08, #0d1811); }
    .port-img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.6;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .port-item:hover .port-img { opacity: 1; transform: scale(1.05); }
    .port-item:hover .port-bg { transform: scale(1); }
    .port-item:hover .port-bg { background-size: 110%; }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
      padding: 8rem 4rem;
      background: #fff;
      overflow: hidden;
    }
    .testi-header {
      max-width: 1300px;
      margin: 0 auto 5rem;
      text-align: center;
    }
    .testi-track-wrapper {
      overflow: hidden;
      position: relative;
    }
    .testi-track-wrapper::before,
    .testi-track-wrapper::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 200px;
      z-index: 2;
    }
    .testi-track-wrapper::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
    .testi-track-wrapper::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
    .testi-track {
      display: flex;
      gap: 1.5rem;
      animation: scrollTrack 30s linear infinite;
      width: max-content;
    }
    .testi-track:hover { animation-play-state: paused; }
    @keyframes scrollTrack {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .testi-card {
      width: 380px;
      flex-shrink: 0;
      padding: 2rem;
      border: 1px solid rgba(0,0,0,0.07);
      background: rgba(0,0,0,0.02);
      position: relative;
    }
    .testi-quote-icon {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem;
      color: rgba(0,0,0,0.05);
      line-height: 1;
      margin-bottom: -1rem;
    }
    .testi-text {
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(0,0,0,0.75);
      margin-bottom: 1.5rem;
    }
    .testi-author { display: flex; align-items: center; gap: 1rem; }
    .testi-avatar {
      width: 40px; height: 40px;
      background: #000;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      border-radius: 2px;
    }
    .testi-name {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
    }
    .testi-role {
      font-size: 0.75rem;
      color: rgba(0,0,0,0.55);
      letter-spacing: 0.05em;
    }
    .testi-stars {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      color: #000;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
    }

    /* ─── BLOG ─── */
    #blog {
      padding: 8rem 4rem;
      background: #fbfbfb;
    }
    .blog-header {
      max-width: 1300px;
      margin: 0 auto 4rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .blog-grid {
      max-width: 1350px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .blog-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: none;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover { 
      background: #fdfdfd; 
      transform: translateY(-10px);
      border-color: rgba(0,0,0,0.15);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .blog-visual {
      height: 240px;
      position: relative;
      overflow: hidden;
      border-radius: 12px 12px 0 0;
      background: #fff;
    }
    .blog-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      opacity: 0.8;
    }
    .blog-card:hover .blog-img { transform: scale(1.1); opacity: 1; }
    .blog-visual-inner {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
      z-index: 1;
    }
    .blog-cat-line {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: #000;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .blog-card:hover .blog-cat-line { transform: scaleX(1); }
    .blog-body { 
      padding: 1.8rem; 
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(10px);
      flex: 1;
    }
    .blog-cat {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #2563EB;
      margin-bottom: 0.8rem;
    }
    .blog-title {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 0.8rem;
      color: #000;
    }
    .blog-card:first-child .blog-title { font-size: 1.25rem; }
    .blog-excerpt {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(0,0,0,0.7);
      margin-bottom: 1.2rem;
    }
    .blog-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: rgba(0,0,0,0.5);
      padding-top: 1rem;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .blog-card-mini {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .blog-card-mini img {
        transition: all 0.6s ease;
    }
    .blog-card-mini:hover {
      background: rgba(0,0,0,0.03) !important;
      border-color: rgba(0,0,0,0.1) !important;
      transform: translateY(-5px);
    }
    .blog-card-mini:hover img {
      opacity: 0.2 !important;
      transform: scale(1.1);
    }
    /* ─── BLOG MODAL ─── */
    #blogModal {
      position: fixed;
      inset: 0;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(15px);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .modal-content {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      max-width: 800px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      padding: 4rem;
    }
    .modal-close {
      position: absolute;
      top: 2rem; right: 2rem;
      background: none; border: none;
      color: #000; font-size: 2rem;
      cursor: none;
      transition: transform 0.3s;
    }
    .modal-close:hover { transform: rotate(90deg); color: #000; }
    .modal-img-placeholder {
      width: 100%; height: 300px;
      background: linear-gradient(135deg, rgba(0,0,0,0.05), #fff);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: rgba(0,0,0,0.1);
    }
    .modal-body-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(0,0,0,0.7);
    }
    .modal-body-text p { margin-bottom: 1.5rem; }

    /* ─── CONTACT ─── */
    #contact {
      padding: 8rem 4rem;
      background: #fff;
      position: relative;
    }
    #contact::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
    }
    .contact-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 8rem;
      align-items: start;
    }
    .contact-left .big-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 5vw, 5rem);
      line-height: 0.95;
      margin-bottom: 2rem;
    }
    .contact-left .desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(0,0,0,0.75);
      margin-bottom: 3rem;
      max-width: 380px;
    }
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }
    .contact-info-icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-info-icon svg { width: 18px; height: 18px; stroke: #000; fill: none; stroke-width: 1.5; }
    .contact-info-text {
      font-size: 0.95rem;
      color: rgba(0,0,0,0.8);
    }
    .contact-info-text a {
      color: rgba(0,0,0,0.8);
      text-decoration: none;
      transition: color 0.3s;
    }
    .contact-info-text a:hover { color: #000; }
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      margin-top: 2rem;
      padding: 0.9rem 2rem;
      background: #000;
      color: #fff;
      text-decoration: none;
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      transition: all 0.3s;
    }
    .whatsapp-btn:hover { background: #111; box-shadow: 0 0 25px rgba(0,0,0,0.1); transform: translateY(-2px); }
    .social-links {
      display: flex;
      gap: 0.8rem;
      margin-top: 2rem;
    }
    .social-link {
      width: 40px; height: 40px;
      background: #000;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s;
      border-radius: 2px;
    }
    .social-link:hover { border-color: #000; background: rgba(0,0,0,0.05); }
    .social-link svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; }
    .social-link:hover svg { stroke: #fff; }

    /* ─── FORM ─── */
    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-group { position: relative; }
    .form-label {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      margin-bottom: 0.6rem;
    }
    .form-input,
    .form-textarea {
      width: 100%;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 12px;
      color: #000;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      padding: 1.2rem 1.5rem;
      outline: none;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      appearance: none;
      -webkit-appearance: none;
    }
    .form-input:focus,
    .form-textarea:focus {
      border-color: #000;
      background: rgba(0,0,0,0.02);
      box-shadow: 0 0 0 3px rgba(0,0,0,0.03);
    }
    .form-textarea { resize: none; height: 140px; }
    .form-submit {
      background: #000;
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 1.2rem 3rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      align-self: flex-start;
      position: relative;
      overflow: hidden;
    }
    .form-submit:hover { 
        background: #111;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
        transform: translateY(-4px); 
    }

    /* ─── FOOTER ─── */
    /* ─── FOOTER ─── */
    footer {
      background: #000;
      padding: 8rem 4rem 4rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      position: relative;
      color: #fff;
    }
    /* ─── WHY CHOOSE US ─── */
    #why {
      padding: 10rem 4rem;
      background: linear-gradient(180deg, #fff 0%, rgba(0,0,0,0.02) 100%);
      position: relative;
    }
    #why::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    }
    .why-header {
      max-width: 800px;
      margin: 0 auto 6rem;
      text-align: center;
    }
    .why-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
    }
    .why-eyebrow::before,
    .why-eyebrow::after {
      content: '';
      width: 30px;
      height: 1px;
      background: #000;
    }
    .why-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 5vw, 5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #000;
    }
    .why-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .why-card {
      position: relative;
      padding: 2.5rem 2rem;
      border: 1px solid rgba(0,0,0,0.06);
      background: #fff;
      border-radius: 16px;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: #000;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .why-card:hover::before {
      transform: scaleX(1);
    }
    .why-card:hover {
      border-color: rgba(0,0,0,0.15);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      transform: translateY(-8px);
    }
    .why-icon-wrapper {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.02) 100%);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.8rem;
      transition: all 0.4s ease;
    }
    .why-card:hover .why-icon-wrapper {
      background: #000;
      border-color: #000;
      transform: scale(1.1) rotate(5deg);
    }
    .why-icon {
      width: 28px;
      height: 28px;
      color: #000;
      transition: color 0.4s ease;
    }
    .why-card:hover .why-icon {
      color: #fff;
    }
    .why-card-num {
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: rgba(0,0,0,0.04);
      line-height: 1;
      transition: all 0.4s ease;
    }
    .why-card:hover .why-card-num {
      color: rgba(0,0,0,0.1);
    }
    .why-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #000;
      padding-right: 2rem;
    }
    .why-desc {
      font-size: 0.9rem;
      line-height: 1.8;
      color: rgba(0,0,0,0.75);
    }

    /* ─── OUR METHOD ─── */
    #method {
      padding: 10rem 4rem;
      background: #fff;
      position: relative;
    }
    #method::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    }
    .method-header {
      max-width: 1300px;
      margin: 0 auto 5rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .method-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
    }
    .method-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: #000;
    }
    .method-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 5vw, 5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #000;
    }
    .method-desc-header {
      max-width: 340px;
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(0,0,0,0.75);
      text-align: right;
    }
    .method-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      position: relative;
    }
    .method-line {
      position: absolute;
      top: 2.5rem;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.02) 100%);
      z-index: 1;
    }
    .method-item {
      position: relative;
      z-index: 2;
      padding: 2rem;
      border-radius: 16px;
      transition: all 0.4s ease;
    }
    .method-item:hover {
      background: rgba(0,0,0,0.02);
    }
    .method-num-wrapper {
      width: 70px;
      height: 70px;
      background: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      position: relative;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .method-item:hover .method-num-wrapper {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }
    .method-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      color: #fff;
      line-height: 1;
      letter-spacing: 0.05em;
    }
    .method-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #000;
    }
    .method-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(0,0,0,0.75);
    }
    .method-arrow {
      position: absolute;
      top: 2.8rem;
      right: -1.5rem;
      width: 24px;
      height: 24px;
      color: rgba(0,0,0,0.2);
      z-index: 3;
    }
    @media (max-width: 1100px) {
      .method-arrow { display: none; }
    }

    /* ─── FOOTER SLOGAN ─── */
    .footer-slogan {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: -0.5rem;
      margin-bottom: 1.5rem;
    }

    .footer-top {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 4rem;
      margin-bottom: 6rem;
    }
    .footer-col h4 {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 1rem; }
    .footer-col ul li a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: #2563EB; }
    .footer-logo-footer {
      height: 50px;
      width: auto;
      margin-bottom: 1.5rem;
    }
    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.4);
      margin-bottom: 2rem;
      max-width: 300px;
    }
    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: #fff;
      letter-spacing: 0.05em;
      font-weight: 500;
      opacity: 1;
    }
    .back-to-top {
      width: 40px; height: 40px;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #fff;
      font-size: 1.2rem;
      transition: all 0.3s;
    }
    .back-to-top:hover { border-color: #000; background: #000; color: #fff; transform: translateY(-5px); }

    @media (max-width: 900px) {
      .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
    }
    @media (max-width: 600px) {
      footer { padding: 5rem 1.5rem 3rem; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── MOBILE NAV ─── */
    .nav-mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-mobile-toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: #fff;
      transition: all 0.3s;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .packs-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-grid { grid-template-columns: 1fr; }
      .blog-card:first-child { grid-column: span 1; }
      .about-inner { gap: 3rem; }
      .about-visual { height: 380px; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .services-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; text-align: left; }
      .services-desc { text-align: left; }
      .method-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; text-align: left; }
      .method-desc-header { text-align: left; }
      .method-grid { grid-template-columns: repeat(2, 1fr); }
      .method-arrow { display: none !important; }
    }
    @media (max-width: 768px) {
      nav { padding: 1.2rem 1.5rem; }
      nav.scrolled { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .nav-mobile-toggle { display: flex; }
      .nav-logo-img { height: 35px !important; }

      #cursor, #cursor-follower { display: none !important; }
      body { cursor: default !important; }

      #hero { height: auto; min-height: 100vh; padding: 7.5rem 1.5rem 4rem; display: flex; align-items: center; }
      .hero-scroll { display: none; }
      .hero-stats { display: none; }
      .hero-btns { flex-direction: column; width: 100%; gap: 1rem; }
      .btn-primary, .btn-outline { width: 100%; justify-content: center; }

      #about { padding: 5rem 1.5rem; }
      .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-visual { height: 320px; order: -1; }
      .about-frame { display: none; }
      .about-floating-card { display: none; }
      .about-badge-float { bottom: 15px; right: 15px; padding: 0.9rem 1.2rem; }
      .about-badge-float .num { font-size: 2.2rem; }
      .about-badge-float .lbl { font-size: 0.55rem; }
      .about-title { font-size: clamp(2.2rem, 8vw, 3rem); }
      .about-content { padding-top: 1rem; gap: 1.2rem; }
      .about-stats { gap: 1.5rem; flex-wrap: wrap; }
      .about-stats .stat-sep { display: none; }
      .about-stats .stat-val { font-size: 2.2rem; }
      .about-mission { padding: 1.2rem; }

      #why { padding: 6rem 1.5rem; }
      .why-header { margin-bottom: 3rem; }
      .why-eyebrow { font-size: 0.65rem; }
      .why-eyebrow::before, .why-eyebrow::after { width: 20px; }
      .why-title { font-size: clamp(2rem, 8vw, 2.8rem); }
      .why-card .why-title { font-size: clamp(1.6rem, 6vw, 1.8rem); hyphens: auto; word-break: break-word; }
      .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .why-card { padding: 2rem 1.5rem; grid-column: span 1 !important; }
      .why-card-num { font-size: 2.5rem; }
      .why-icon-wrapper { width: 50px; height: 50px; margin-bottom: 1.2rem; }
      .why-icon { width: 24px; height: 24px; }

      #services { padding: 6rem 1.5rem; }
      .services-header { margin-bottom: 3rem; }
      .services-eyebrow::before { width: 25px; }
      .services-title { font-size: clamp(2rem, 8vw, 2.8rem); }
      .services-grid { grid-template-columns: 1fr !important; }
      .service-card { padding: 2rem 1.5rem; grid-column: span 1 !important; }
      .service-icon-wrapper { width: 56px; height: 56px; }
      .service-num { font-size: 3rem; }

      #method { padding: 6rem 1.5rem; }
      .method-header { margin-bottom: 3rem; }
      .method-eyebrow::before { width: 25px; }
      .method-title { font-size: clamp(2rem, 8vw, 2.8rem); }
      .method-grid { grid-template-columns: 1fr !important; gap: 2rem; }
      .method-line { display: none; }
      .method-item { padding: 1.5rem; }
      .method-num-wrapper { width: 60px; height: 60px; margin-bottom: 1rem; }
      .method-num { font-size: 1.8rem; }

      #packs, #portfolio, #testimonials, #blog, #contact { padding: 6rem 1.5rem; }
      .services-header, .portfolio-header, .blog-header, .testi-header { flex-direction: column; align-items: flex-start; gap: 1rem; text-align: left; }

      .packs-grid, .portfolio-grid, .blog-grid { grid-template-columns: 1fr !important; }
      .section-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }

      .port-item { grid-column: span 1 !important; height: 250px; }
      .blog-card:first-child { grid-column: span 1; }
      .blog-card-mini h4 { font-size: 1rem !important; max-width: 100% !important; }

      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .contact-left .big-text { font-size: 2.5rem; }

      footer { padding: 4rem 1.5rem 2rem; }
      .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
      .packs-header p { font-size: 0.85rem; }
    }
    
    .about-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
    }
    .stat-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: #000;
      line-height: 1;
      direction: ltr !important;
      unicode-bidi: isolate;
    }
    .stat-label-small {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.35);
    }
    .stat-sep {
      width: 1px;
      background: rgba(0,0,0,0.08);
    }

    /* ─── TRANSLATION VISIBILITY ─── */
    body.lang-fr .lang-en { display: none !important; }
    body.lang-en .lang-fr { display: none !important; }

    /* ─── PAGE VIEWS FOR ROUTER ─── */
    .page-view {
      display: none;
      opacity: 0;
    }
    .page-view.active {
      display: block;
      animation: fadeInPage 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }
    @keyframes fadeInPage {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── SERVICES DROPDOWN ─── */
    .dropdown {
      position: relative;
    }
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: #000;
      border: 1px solid rgba(255,255,255,0.08);
      padding: 0.8rem 0;
      min-width: 280px;
      display: none;
      flex-direction: column;
      box-shadow: 0 15px 40px rgba(0,0,0,0.5);
      border-radius: 4px;
      z-index: 1001;
      opacity: 0;
      transition: all 0.3s ease;
      pointer-events: none;
    }
    .dropdown:hover .dropdown-menu {
      display: flex;
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .dropdown-menu a {
      padding: 0.7rem 1.5rem;
      width: 100%;
      color: rgba(255,255,255,0.6) !important;
      font-size: 0.72rem !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
      transition: all 0.3s;
      text-align: left;
    }
    .dropdown-menu a::after {
      display: none !important;
    }
    .dropdown-menu a:hover {
      color: #fff !important;
      background: rgba(255,255,255,0.05);
      padding-left: 1.8rem;
    }

    /* ─── LANGUAGE SELECTOR BUTTONS ─── */
    .lang-selector {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      margin-left: 1.5rem;
    }
    .lang-btn {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(255,255,255,0.4);
      background: none;
      border: none;
      transition: color 0.3s;
      padding: 2px 4px;
    }
    .lang-btn:hover, .lang-btn.active {
      color: #fff;
    }

    @media (max-width: 768px) {
      .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .dropdown > a {
        display: none !important;
      }
      .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        min-width: unset;
        transform: none;
        opacity: 1;
        pointer-events: auto;
      }
      .dropdown-menu a {
        font-family: 'Syne', sans-serif !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.12em !important;
        color: rgba(255,255,255,0.6) !important;
        text-align: center !important;
        padding: 0.75rem 0 !important;
      }
      .dropdown-menu a:hover {
        color: #fff !important;
        background: transparent !important;
        padding-left: 0 !important;
      }
      .lang-selector {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
      }
      .lang-btn {
        cursor: pointer;
      }
    }

    .standalone-section {
      padding: 10rem 4rem 6rem;
    }
    @media (max-width: 768px) {
      .standalone-section {
        padding: 6rem 1.5rem 4rem !important;
      }
    }
