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

    body {
	  position: relative;
      font-family: 'Inter', sans-serif;
      color: white;
      overflow-x: hidden;
      min-height: 100vh;
      background: #050505;
    }

    .background {
      position: absolute;
      inset: 0;
	  height: 210vh;
      background:
        linear-gradient(
          to bottom,
          rgba(0,0,0,0.00) 0%,
          rgba(0,0,0,0.10) 20%,
          rgba(0,0,0,0.35) 45%,
          rgba(0,0,0,0.72) 70%,
          rgba(0,0,0,0.92) 85%,
          #050505 100%
        ),  
      url("../background.png") center top / 100% auto no-repeat;
      z-index: -3;
    }

	.background-atmosphere {
	  position: absolute;
      inset: 0;
      height: 220vh;
      background:
        radial-gradient(
          circle at 50% 0%,
          rgba(255,140,0,0.16) 0%,
          rgba(255,140,0,0.08) 18%,
          rgba(255,140,0,0.03) 38%,
          transparent 65%
        ),
        radial-gradient(
          circle at center,
          rgba(255,120,0,0.05),
          transparent 60%
        ),
        linear-gradient(
          to bottom,
          rgba(0,0,0,0.00) 0%,
          rgba(0,0,0,0.18) 30%,
          rgba(0,0,0,0.55) 55%,
          rgba(0,0,0,0.88) 78%,
          #050505 100%
        );
      z-index: -2;
      pointer-events: none;
    }

    .docs-linux .background {
      opacity: 1;
    }

    .docs-linux .overlay {
      background: rgba(0, 0, 0, 0.35);
    }

    .overlay {
      position: absolute;
      inset: 0;
	  height: 220vh;
      background:
        radial-gradient(
          circle at center,
          rgba(255,140,0,0.10),
          transparent 40%
        );
      z-index: -1;
	  pointer-events: none;
    }

    header {
      width: 100%;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 5;
    }

    .top-logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .white {
      color: white;
    }

    .orange {
      color: #ff8c00;
    }

    .top-logo img {
      width: 90px;
      height: 65px;
      object-fit: contain;
    }

    .top-logo span {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 1px;
    }

    nav {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    nav a {
      position: relative;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    nav a:hover {
      color: #ff9d2f;
      text-shadow: 0 0 10px rgba(255,157,47,0.4);
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: #ff9d2f;
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    .hero {
      min-height: 48vh;
      padding-top: 0px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      padding: 0px 80px 0px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hero-left {
      max-width: 560px;
    }
	
    .hero-right {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-logo {
      width: 700px;
      margin-bottom: -20px;
      filter: 
        drop-shadow(0 0 25px rgba(255,140,0,0.18))
        drop-shadow(0 0 80px rgba(255,140,0,0.08));
      animation:
        floatLogo 7s ease-in-out infinite;
        glowPulse 8s ease-in-out infinite;
    }

    .hero-buttons {
      display: flex;
      gap: 18px;
      margin-top: 35px;
    }
	
    .btn-primary,
    .btn-secondary {
      padding: 14px 26px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-primary {
      background: #ff8c00;
      color: white;
      box-shadow: 0 0 25px rgba(255,140,0,0.25);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      background: #ff9d2f;
    }
	
    .btn-secondary {
      border: 1px solid rgba(255,140,0,0.5);
      color: white;
      background: rgba(255,255,255,0.02);
    }
	
    .btn-secondary:hover {
      background: rgba(255,140,0,0.08);
      transform: translateY(-3px);
    }

    h1 {
      font-size: clamp(3rem, 4vw, 5.5rem);
      font-weight: 600;
      margin-bottom: 0px;
      letter-spacing: -2px;
    }

    h1 span {
      color: #ff9d2f;
    }

    .subtitle {
      font-size: 1.6rem;
      font-weight: 500;
      color: rgba(255,255,255,0.92);
      margin-bottom: 10px;
    }

    .description {
      max-width: 760px;
      line-height: 1.6;
      color: rgba(255,255,255,0.78);
      font-size: 1.05rem;
      margin-bottom: 18px;
    }

    .quick-access {
      position: relative;
      z-index: 2;
      max-width: 1450px;
      margin: 0px auto 80px;
      padding: 0 40px;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 30px;
      font-size: 1.4rem;
      font-weight: 600;
      color: white;
    }

    .section-title svg {
      width: 22px;
      height: 22px;
      color: #ff8c00;
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
    }

    .quick-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 20px;
      border-radius: 22px;
      background: 
      linear-gradient(
      to bottom,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
      );
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(10px);
      text-decoration: none;
      color: white;
      transition: 0.35s ease;
      overflow: hidden;
      min-height: 275px;
    }

    .quick-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,140,0,0.55);
      box-shadow: 
        0 0 30px rgba(255,140,0,0.08),
        0 15px 50px rgba(0,0,0,0.45);
    }

    .quick-card svg {
      width: 34px;
      height: 34px;
      color: #ff8c00;
      margin-bottom: 22px;
      align-self: center;
    }

    .quick-card h3 {
      text-align: center;
      font-size: 1.25rem;
      margin-bottom: 14px;
    }

    .quick-card p {
      text-align: center;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      font-size: 0.96rem;
      margin-bottom: 28px;
    }

    .quick-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 12px;
      border: 1px solid rgba(255,140,0,0.35);
      color: #ffb45e;
      font-size: 0.92rem;
      font-weight: 500;
      transition: 0.3s ease;
      margin-top: auto;    
    }

    .quick-card:hover .quick-button {
      background: rgba(255,140,0,0.08);
      border-color: rgba(255,140,0,0.65);
    }	
    
    .infrastructure {
      position: relative;
      max-width: 1700px;
      margin: 10px auto;
      padding: 0 40px;
      z-index: 2;
    }

    .infra-layout {
      display: grid;
      grid-template-columns: 420px auto;
      gap: 60px;
      align-items: start;
    }

    .infra-intro {
      max-width: 480px;
    }

    .infra-left {
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .infra-right {
      width: 100%;
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .infra-panel {
      position: relative;
      padding: 32px;
      border-radius: 28px;
      background: transparent;
      width: 100%;
    }

    .status-panel {
      position: relative;
	  height: 96%;
      padding: 28px;
	  background:
        radial-gradient(
          circle at top right,
          rgba(255,140,0,0.08),
          transparent 45%
        ),
      linear-gradient(
        to bottom,
        rgba(18,18,18,0.82),
        rgba(8,8,8,0.94)
      );
	  border: 1px solid rgba(255,140,0,0.10);
	  backdrop-filter: blur(12px);
	  overflow: hidden;
    }

    .status-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      font-weight: 600;
	  letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.88);
    }

    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ff8c28;
      box-shadow:
        0 0 10px rgba(255,140,40,0.8),
		0 0 20px rgba(255,140,40,0.4);
	  animation: pulseDot 2.8s infinite;
    }

    .status-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
	
	.status-meta {
      display: flex;
      align-items: center;
      gap: 14px;
    }
	
	.status-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }
	
	.status-service {
      color: rgba(255,255,255,0.88);
      font-size: 0.92rem;
      font-weight: 500;
    }
	
	.status-button {
      padding: 8px 14px;
      border-radius: 10px;
      border: 1px solid rgba(255,140,0,0.14);
      background: rgba(255,255,255,0.02);
      color: rgba(255,255,255,0.72);
      font-size: 0.72rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .status-button:hover {
      border-color: rgba(255,140,0,0.35);
      color: #ffb45e;
    }
	
	.status-group {
      margin-top: 26px;
    }

    .status-group:first-of-type {
      margin-top: 0;
    }

    .status-group-title {
      margin-bottom: 14px;
      color: rgba(255,180,80,0.82);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
	
	.status-table-head {
      display: grid;
      grid-template-columns: 1.6fr 1fr 0.8fr 0.7fr;
      padding-bottom: 12px;
      color: rgba(255,255,255,0.35);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
	
	.status-item:last-child {
	  border-bottom: none;
	}

    .online {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ffb45e;
      font-size: 0.82rem;
      font-weight: 600;
    }

    .offline {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ff4d4d;
      font-size: 0.82rem;
      font-weight: 600;
    }

	
    .online-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 8px;
    }

    .online .online-dot {
      background: #4dff88;
      color: #ffb347
      box-shadow: 0 0 10px #4dff88;
    }

    .offline .online-dot {
      background: #ff4d4d;
      color: #ff4d4d
      box-shadow: 0 0 10px #ff4d4d;
    }
	
	.latency {
      color: rgba(255,255,255,0.45);
      font-size: 0.78rem;
      font-family: monospace;
    }

    .infra-header {
      text-align: center;
      max-width: 850px;
      margin: 0 auto 80px;
    }

    .infra-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      color: #ff9d2f;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 0.9rem;
    }
 
    .infra-label svg {
      width: 18px;
      height: 18px;
    }

    .infrastructure h2 {
      font-size: clamp(2rem, 3vw, 3.4rem);
      max-width: 420px;
      line-height: 1.1;
      margin-bottom: 24px;
      font-weight: 700;
      letter-spacing: -2px;
    }

    .infrastructure h2 span {
      color: #ff9d2f;
    }

    .infrastructure p {
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      font-size: 1.05rem;
    }
	
	.brand-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ff9d2f;
      opacity: 0.98;
      transition:
        transform 0.35s ease;
	  overflow: visible;
	  z-index: 3;
	  position: relative;
    }
	
	.infra-node .brand-icon {
      width: 82px;
      height: 82px;
	  display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: -6px;
      position: relative;
      z-index: 3;
	  overflow: visible;
	}

	.infra-node:hover .infra-image {
      filter:
        brightness(1.08)
        drop-shadow(0 0 8px rgba(255,220,140,0.95))
        drop-shadow(0 0 22px rgba(255,140,0,0.68))
        drop-shadow(0 0 40px rgba(255,140,0,0.24));
	}
	
	.infra-image {
      width: 150%;
      height: 150%;
	  flex: none;
      object-fit: contain;
      pointer-events: none;
      opacity: 0.98;
      filter:
        brightness(1.08)
        drop-shadow(0 0 8px rgba(255,170,40,0.95));
      transition:
        transform 0.35s ease,
        filter 0.35s ease;
    }
	
	.service-node .infra-image {
      width: 135%;
      height: 135%;
      filter:
        brightness(1.02)
        drop-shadow(0 0 5px rgba(255,190,80,0.82))
        drop-shadow(0 0 14px rgba(255,140,0,0.38))
        drop-shadow(0 0 22px rgba(255,140,0,0.12));
	}
	
	.service-node:hover .infra-image {
      filter:
        brightness(1.05)
        drop-shadow(0 0 7px rgba(255,220,140,0.88))
        drop-shadow(0 0 16px rgba(255,140,0,0.42))
        drop-shadow(0 0 24px rgba(255,140,0,0.16));
	}
	
	.npm-node .infra-image {
      width: 190%;
      height: 190%;
    }

    .pfsense-node .infra-image {
      width: 130%;
      height: 130%;
	}

	.docker-node .infra-image {
      width: 175%;
      height: 175%;
	}

	.internet-node .infra-image {
      width: 150%;
      height: 150%;
	}
	
	.nextcloud-node .infra-image {
      width: 150%;
      height: 150%;
	}
	
	.office-node .infra-image {
      width: 140%;
      height: 140%;
	}
	
	.vault-node .infra-image {
      width: 130%;
      height: 130%;
	}
	
	.grafana-node .infra-image {
      width: 170%;
      height: 170%;
	}
	
	.forgejo-node .infra-image {
      width: 190%;
      height: 190%;
	}

    .infra-node {
	  position: relative;
	  overflow: visible;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      padding: 18px 10px;
      border-radius: 22px;
      background:
        linear-gradient(
        to bottom,
          rgba(22,22,22,0.72),
          rgba(12,12,12,0.58)
        );
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      transition: 0.35s ease;
    }

    .infra-node:hover {
      transform: translateY(-2px);
      border-color: rgba(255,170,60,0.18);
      box-shadow:
        0 0 10px rgba(255,140,0,0.04);
    }

    .infra-node > svg {
      width: 32px;
      height: 32px;
      color: #ff9d2f;
      margin-bottom: 14px;
    }

    .infra-node span {
      font-weight: 600;
    }

    .highlight {
      border-color: rgba(255,140,0,0.35);
      box-shadow:
        0 0 35px rgba(255,140,0,0.08);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      margin-bottom: 80px;
    }

    .infra-features {
      display: grid;
	  width: 100%;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: none;
      gap: 22px;
    }

    .feature-card {
      min-height: 185px;
      padding: 20px;
      border-radius: 24px;
	  position: relative;
      border: 1px solid rgba(255,140,40,0.15);
      backdrop-filter: blur(12px);
	  overflow: hidden;
      transition: 
	    transform 0.35s ease,
	    border-color 0.35s ease,
	    box-shadow 0.35s ease;
	  text-align: center;
	  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 0 30px rgba(255,140,0,0.03);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,140,0,0.28);
      box-shadow:
        0 0 20px rgba(255,140,0,0.08),
        0 10px 35px rgba(0,0,0,0.45);
    }
	
	.feature-tags {
	  margin-top: 22px;
	  color: #ff9d2f;
      font-size: 0.82rem;
      letter-spacing: 0.5px;
      opacity: 0.92;
    }

    .feature-card svg {
      width: 80px;
      height: 80px;
      color: #ff9d2f;
      margin-bottom: -10px;
    }

    .feature-card h3 {
      margin-bottom: 14px;
      font-size: 1.15rem;
    }

    .feature-card p {
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .network-topology {
      width: 100%;
      isolation: isolate;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 100px;
      padding: 10px 20px;
      margin-left: -20px;
    }

    .network-topology > *:not(svg) {
      position: relative;
      z-index: 2;
   }

    .topology-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .topology-line {
      fill: none;
      stroke: rgba(255,170,40,0.95);
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 1;
      filter:
        drop-shadow(0 0 2px rgba(255,140,0,0.95));
        drop-shadow(0 0 6px rgba(255,140,0,0.75));
        drop-shadow(0 0 14px rgba(255,140,0,0.45));
        drop-shadow(0 0 28px rgba(255,140,0,0.25));
    }

    .topology-line-soft {
      fill: none;
      stroke: rgba(255,140,0,0.22);
      stroke-width: 8;
      stroke-linecap: round;
      filter: blur(6px);
      opacity: 0.55;
    }

    .topology-dot {
      fill: #ffd27a;
      opacity: 1;
      filter:
        drop-shadow(0 0 2px rgba(255,255,220,0.95))
        drop-shadow(0 0 6px rgba(255,190,80,1))
        drop-shadow(0 0 14px rgba(255,140,0,0.95))
        drop-shadow(0 0 28px rgba(255,140,0,0.65))
        drop-shadow(0 0 54px rgba(255,140,0,0.28));
    }

    .core-dot {
      fill: #fff4d0;
      filter:
        drop-shadow(0 0 3px rgba(255,255,255,1))
        drop-shadow(0 0 8px rgba(255,220,140,1))
        drop-shadow(0 0 18px rgba(255,180,80,1))
        drop-shadow(0 0 36px rgba(255,140,0,0.85))
        drop-shadow(0 0 70px rgba(255,140,0,0.45))
        drop-shadow(0 0 120px rgba(255,140,0,0.22));
    }

    .topology-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 840px;
      gap: 90px;
      width: 100%;
      flex-wrap: nowrap;
    }

    .docker-node {
      min-width: 220px;
      margin-left: -20px;
      animation: none;
      position: relative;
      background:
        radial-gradient(
          circle at 50% 20%,
          rgba(255,170,40,0.22) 0%,
          rgba(255,140,0,0.10) 22%,
          rgba(255,140,0,0.04) 38%,
          transparent 62%
        ),
        linear-gradient(
          to bottom,
          rgba(28,28,28,0.92),
          rgba(8,8,8,0.88)
        );
      border: 1px solid rgba(255,170,40,0.18);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        inset 0 0 40px rgba(255,140,0,0.08),
        0 0 22px rgba(255,140,0,0.05);
    }    

    .docker-node::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 22px;
      pointer-events: none;
      border: 1px solid rgba(255,170,40,0.16);
      box-shadow:
        0 0 10px rgba(255,140,0,0.18),
        0 0 24px rgba(255,140,0,0.08);
    }

    .npm-node {
      position: relative;
      background:
        radial-gradient(
          circle at 50% 0%,
          rgba(255,140,0,0.28) 0%,
          rgba(255,140,0,0.14) 18%,
          rgba(255,140,0,0.06) 32%,
          rgba(0,0,0,0) 58%
        ),
        linear-gradient(
          to bottom,
          rgba(26,12,6,0.72),
          rgba(5,3,2,0.94)
        );
      border-radius: 28px;
      backdrop-filter: blur(12px);
      overflow: visible;
      z-index: 2;
      box-shadow:
        inset 0 0 18px rgba(255,140,0,0.10),
        inset 0 0 40px rgba(255,140,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .npm-node::before {
      content: "";
      position: absolute;
      inset: -3px;
      border-radius: 30px;
      border: 1px solid rgba(255,190,80,0.95);
      pointer-events: none;
      z-index: 5;
      box-shadow:
        0 0 4px rgba(255,140,0,0.95),
        0 0 12px rgba(255,140,0,0.85),
        0 0 28px rgba(255,140,0,0.55),
        0 0 64px rgba(255,140,0,0.28),
        0 0 120px rgba(255,140,0,0.14);
      animation: npmPulse 5s ease-in-out infinite;
    }

    .npm-node::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 28px;
      background:
        radial-gradient(
          circle at top,
          rgba(255,180,80,0.12),
          transparent 60%
        );
      pointer-events: none;
      z-index: 4;
      mix-blend-mode: screen;
    }
		
	.internet-node:hover {
      box-shadow: none;
      border-color: rgba(255,255,255,0.08);
    }	
		
   .infra-node.core {
      min-width: 200px;
      min-height: 140px;
      border-color: rgba(255,140,0,0.25);
      box-shadow:
        0 0 50px rgba(255,140,0,0.18),
        0 0 120px rgba(255,140,0,0.06);
    }

    .infra-node.small {
      min-width: 100px;
      padding: 10px;
    }

    .services-orbit {
      position: relative;
      display: flex;
      justify-content: flex-end;
      gap: 40px;
      width: 100%;
      margin-top: 0px;
      padding-right: 55px;
      padding-top: 10px;
    }

    .service-orbit-card {
      display: flex;
	  flex-direction: column;
      position: relative;
      z-index: 2;
      align-items: center;
      justify-content: center;
	  text-align: center;
      gap: 0px;
      padding: 10px 18px;
      border-radius: 18px;
      background:
        linear-gradient(
          to bottom,
          rgba(20,20,20,0.68),
          rgba(10,10,10,0.52)
        );
      border: 1px solid rgba(255,140,0,0.41);
      backdrop-filter: blur(8px);
      transition: 0.35s ease;
    }

    .service-orbit-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,140,0,0.3);
      box-shadow:
        0 0 25px rgba(255,140,0,0.08);
    }

    .service-orbit-card .brand-icon {
      margin-bottom: 0px;
	  width: 62px;
	  height: 62px;
    }
	
	.feature-icon {
      display: flex;
	  position: relative;
      justify-content: center;
      align-items: center;
      margin-bottom: 18px;
      color: #ff9d2f;
    }
	
	.feature-icon::before {
	  content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background:
        radial-gradient(
          circle,
          rgba(255,190,80,0.55) 0%,
          rgba(255,140,0,0.32) 18%,
          rgba(255,140,0,0.14) 38%,
		  rgba(255,140,0,0.06) 52%,
          transparent 72%
        ),
		radial-gradient(
          circle at top,
          rgba(255,220,120,0.05) 0%,
          rgba(255,160,40,0.02) 30%,
          transparent 65%
        );
      filter: blur(28px);
      opacity: 0.95;
      z-index: 0;
	  transform: translateY(-10px);
      transition:
        transform 0.45s ease,
        opacity 0.45s ease,
		filter 0.45s ease;
    }

    .feature-svg {
	  position: relative;
	  z-index: 1;
      width: 46px;
      height: 46px;
      filter:
        drop-shadow(0 0 6px rgba(255,140,0,0.35))
        drop-shadow(0 0 14px rgba(255,140,0,0.18));
      transition:
        transform 0.35s ease,
        filter 0.35s ease;
    }
	
	.feature-card:hover .feature-icon::before {
      transform: translateY(-14px) scale(1.05);
	  filter: blur(34px);
      opacity: 1;
    }

    .feature-card:hover .feature-svg {
      transform: scale(1.05);
      filter:
        drop-shadow(0 0 10px rgba(255,140,0,0.55))
        drop-shadow(0 0 20px rgba(255,140,0,0.24));
    }
	
	.infra-bottom-grid {
	  display: grid;
	  grid-template-columns: 4fr 1.8fr;
	  gap: 24px;
	  width: 100%;
	  margin-top: 15px;
	  align-items: stretch;
	}
	
	.infra-feature-stack {
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 95%;
    }
	
	.infra-metrics-strip {
	  display: grid;
	  grid-template-columns:
		1.5fr
		auto
		1fr
		auto
		1fr
		auto
		1fr;
	  align-items: center;
      gap: 24px;
      min-height: 120px;
	  padding: 24px 28px;
	  border-radius: 24px;
	  background:
      linear-gradient(
        to bottom,
        rgba(255,96,0,0.08),
        rgba(0,0,0,0.38)
      );
	  border: 1px solid rgba(255,140,0,0.07);
	  backdrop-filter: blur(10px);
    }
	
	.metric-block {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
	
	.metric-top {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.82);
      font-size: 0.9rem;
    }
	
	.metric-top svg,
	.metric-mini svg {
      width: 50px;
      height: 50px;
      color: #ff9d2f;
    }
	
	.metric-value {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
    }
	
	.metric-progress {
      height: 8px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,0.05);
    }
	
	.metric-progress-fill {
      width: 58%;
      height: 100%;
      border-radius: inherit;
      background:
        linear-gradient(
          90deg,
          #ff8c00,
          #ffb347
        );
      box-shadow:
        0 0 12px rgba(255,140,0,0.35);
    }
	
	.metric-sub {
      color: rgba(255,255,255,0.48);
      font-size: 0.92rem;
    }
	
	.metric-mini {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
	
	.metric-mini strong {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
    }
	
	.metric-mini span {
      color: rgba(255,255,255,0.52);
      font-size: 0.92rem;
    }
	
	.metric-divider {
      width: 1px;
      height: 80px;
      background:
        linear-gradient(
          to bottom,
          transparent,
          rgba(255,255,255,0.08),
          transparent
        );
    }
	
	.metric-icon {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      color: #ff9d2f;
    }
	
	.infra-metrics-strip:hover .metric-svg {
      filter:
        drop-shadow(0 0 6px rgba(255,140,0,0.4))
        drop-shadow(0 0 14px rgba(255,140,0,0.18));
    }
	
	.metric-svg {
      width: 18px;
      height: 18px;
      opacity: 0.95;
      filter:
        drop-shadow(0 0 4px rgba(255,140,0,0.28))
        drop-shadow(0 0 10px rgba(255,140,0,0.14));
      transition:
        transform 0.3s ease,
        filter 0.3s ease;
    }
	
	.vision-section {
      position: relative;
      margin: 20px auto;
      max-width: 1600px;
      padding: 20px 40px;
      display: flex;
      overflow: hidden;
      z-index: 2;
    }
	
	.vision-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
	    radial-gradient(
          ellipse at bottom,
          rgba(255,140,0,0.14) 0%,
          rgba(255,140,0,0.06) 22%,
          rgba(255,140,0,0.02) 42%,
          transparent 70%
        ),
        radial-gradient(
          circle at center,
          rgba(255,140,0,0.06) 0%,
          transparent 55%
        ),
        radial-gradient(
          circle at top,
          rgba(80,120,255,0.04),
          transparent 45%
        );
      pointer-events: none;
      z-index: 0;
    }
	
	.vision-section::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -80px;
      height: 260px;
      background:
        radial-gradient(
          ellipse at center,
          rgba(255,140,0,0.10) 0%,
          rgba(255,140,0,0.04) 35%,
          transparent 75%
        );
      filter: blur(50px);
      opacity: 0.9;
      pointer-events: none;
      z-index: 0;
    }

    .vision-line {
      width: 100%;
      max-width: 1100px;
      height: 1px;
      background:
        linear-gradient(
          90deg,
          transparent,
          rgba(255,140,0,0.16),
          rgba(255,180,80,0.32),
         rgba(255,140,0,0.16),
         transparent
        );
      box-shadow:
        0 0 12px rgba(255,140,0,0.08);
    }

    .vision-glow {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background:
        radial-gradient(
          circle,
          rgba(255,140,0,0.12) 0%,
          rgba(255,140,0,0.05) 35%,
          transparent 72%
        );
      filter: blur(50px);
      opacity: 0.7;
      z-index: 0;
      pointer-events: none;
    }
  
    .vision-mark {
	  display: flex;
	  justify-content: center;
	  align-items: center;
      margin-bottom: 0px;
	}  
	
	.vision-mark img {
	  width: 80px;
      height: auto;
      opacity: 0.92;
      filter:
        drop-shadow(0 0 6px rgba(255,140,0,0.16))
        drop-shadow(0 0 16px rgba(255,140,0,0.06));
      transition:
        transform 0.4s ease,
        filter 0.4s ease;
    }
	
	.vision-mark img:hover {
      transform: scale(1.03);
      filter:
        drop-shadow(0 0 18px rgba(255,140,0,0.28))
        drop-shadow(0 0 42px rgba(255,140,0,0.14));
    }

    .vision-particles {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(
          rgba(255,140,0,0.22) 1px,
          transparent 1px
        );
      background-size: 180px 180px;
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
    }

    .vision-quote span {
      color: #ff9d2f;
      text-shadow:
        0 0 10px rgba(255,140,0,0.18);
    }
	
	.vision-top-line,
    .vision-bottom-line {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background:
        linear-gradient(
          90deg,
          transparent 0%,
          rgba(255,140,0,0.10) 10%,
          rgba(255,170,80,0.45) 50%,
          rgba(255,140,0,0.10) 90%,
          transparent 100%
        );
      box-shadow:
        0 0 14px rgba(255,140,0,0.12);
    }

    .vision-top-line {
      top: 0;
    }

    .vision-bottom-line {
      bottom: 0;
    }
	
	.vision-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }
	
	.vision-ring {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 520px;
      height: 520px;
      border-radius: 50%;
      border: 1px solid rgba(255,140,0,0.06);
      opacity: 0.9;
      z-index: 0;
      pointer-events: none;
      box-shadow:
        0 0 40px rgba(255,140,0,0.04),
        inset 0 0 40px rgba(255,140,0,0.03);
    }

    .vision-ring::before {
      content: "";
      position: absolute;
      inset: 24px;
      border-radius: 50%;
      border: 1px dashed rgba(255,180,80,0.05);
    }

    .vision-ring::after {
      content: "";
      position: absolute;
      inset: -14px;
      border-radius: 50%;
      border-top: 1px solid rgba(255,180,80,0.08);
      border-bottom: 1px solid rgba(255,180,80,0.03);
      transform: rotate(-8deg);
    }
	
	.vision-text {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.2rem, 3vw, 3.8rem);
      line-height: 1.2;
      font-weight: 400;
      letter-spacing: 0.2px;
      color: rgba(255,255,255,0.92);
	  text-shadow: 0 0 18px rgba(255,255,255,0.04);
    }

    .vision-text span {
      color: #ff9d2f;
      text-shadow:
        0 0 10px rgba(255,140,0,0.16);
    }

    .vision-signature {
      margin-top: 20px;
      font-size: 0.78rem;
      letter-spacing: 6px;
      color: rgba(255,180,80,0.58);
      text-transform: uppercase;
    }
	
	/* =========================
		DOCUMENTATION SECTION
	========================= */

	.documentation-section {
      position: relative;
      max-width: 1700px;
      margin: -82px auto 0px;
      padding: 0 40px;
      z-index: 2;
    }
	
	.documentation-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(
          circle at top,
          rgba(255,140,0,0.08),
          transparent 60%
        );
      pointer-events: none;
    }
	
	.doc-divider-visual {
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 80px 0 0px;
      position: relative;
      z-index: 2;
	  overflow: visible;
	  -webkit-mask-image:
	    linear-gradient(
          to right,
          transparent,
          white 10%,
          white 90%,
          transparent
        );
	  mask-image:
        linear-gradient(
          to right,
          transparent,
          white 10%,
          white 90%,
          transparent
        );
    }

    .doc-divider-visual img {
      width: 100%;
	  transform: scale(0.4);
      max-width: 1600px;
      opacity: 0.95;
      object-fit: cover;
      pointer-events: none;
      user-select: none;
	  display: block;
	  filter:
        drop-shadow(0 0 35px rgba(255,140,0,0.18));
    }
	
	.doc-divider-titre {
      width: 1600px;
      height: 2px;
      margin-top: -159px;
	  margin-bottom: 109px;
      background:
        linear-gradient(
          to right,
          transparent,
          #ff9d2f,
          transparent
        );
      box-shadow:
        0 0 18px rgba(255,140,0,0.5);
    }
	
	.doc-header {
      text-align: center;
      max-width: 420px;
      margin: 0 auto 70px;
	  margin-bottom: 40px;
    }

    .doc-label {
      color: rgba(255,255,255,0.72);
      font-size: 0.78rem;
      letter-spacing: 2px;
	  line-height: 1;
	  margin-top: -10px;
	  margin-bottom: 20px;
    }
	
	.doc-label-span {
	  color: rgba(255,255,255,0.72);
      font-size: 0.78rem;
      letter-spacing: 2px;
	  line-height: 1;
	  margin-top: -10px;
	  margin-bottom: -20px;
    }
	
	.documentation-section h2 {
	  max-width: 1400px;
	  margin-left: auto;
	  margin-right: auto;
	  font-weight: 800;
      text-shadow:
        0 0 20px rgba(255,255,255,0.04);
      font-size: clamp(2.0rem, 4.0vw, 4rem);
      line-height: 1.05;
      margin-bottom: 40px;
      letter-spacing: -3px;
	  display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
      flex-wrap: nowrap;
      white-space: nowrap;
	  overflow-wrap: normal;
    }

    .documentation-section h2 span {
      color: #ff9d2f;
    }
  
    .doc-divider {
      width: 180px;
      height: 2px;
      margin: 28px auto;
      background:
        linear-gradient(
          to right,
          transparent,
          #ff9d2f,
          transparent
        );
      box-shadow:
        0 0 18px rgba(255,140,0,0.5);
    }
  
    .doc-header p {
      color: rgba(255,255,255,0.68);
      line-height: 1.8;
      font-size: 1.08rem;
	  margin-top: 40px;
    }

    .doc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .doc-card {
	  display: flex;
	  flex-direction: column;
      position: relative;
      overflow: hidden;
      min-height: 520px;
      padding: 34px;
	  padding-bottom: 0px;
	  border-radius: 32px;
      background:
        linear-gradient(
          to bottom,
          rgba(18,18,18,0.82),
          rgba(5,5,5,0.96)
        );
        linear-gradient(
          180deg,
          rgba(18,18,18,0.92) 0%,
          rgba(8,8,8,0.98) 100%
        );
	  border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
 	  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 20px 60px rgba(0,0,0,0.45);
	  transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    }

    .doc-card:hover {
      transform: translateY(-8px);
    }

    .doc-card:hover .doc-glow {
      opacity: 1;
    }

    .doc-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(
          circle at top,
          rgba(255,140,0,0.18),
          transparent 60%
        );
      opacity: 0.6;
      transition: 0.4s ease;
      pointer-events: none;
    }
	
	.doc-visual-lin {
      position: absolute;
	  top: 15px;
      right: -15px;
      width: 86%;
      pointer-events: none;
      z-index: 1;
	  display: flex;
      justify-content: flex-end;
	  align-items: flex-start;
	  overflow: hidden;
	  border-radius: 24px;
	}
	
	.doc-visual-res {
      position: absolute;
	  top: 6px;
      right: -35px;
      width: 100%;
      pointer-events: none;
      z-index: 1;
	  display: flex;
      justify-content: flex-end;
	  align-items: flex-start;
	  overflow: hidden;
	  border-radius: 24px;
	}
	
	.doc-visual-win {
      position: absolute;
	  top: 17px;
      right: -35px;
      width: 94%;
      pointer-events: none;
      z-index: 1;
	  display: flex;
      justify-content: flex-end;
	  align-items: flex-start;
	  overflow: hidden;
	  border-radius: 24px;
	}

    .doc-visual-lin img,
	.doc-visual-res img,
	.doc-visual-win img {
	  mix-blend-mode: screen;
	  image-rendering: auto;
	  backface-visibility: hidden;
	  transform: translateZ(0);
	  opacity: 0.72;
      width: 81%;
	  height: 100%;
      object-fit: contain;
	  user-select: none;
      filter:
	    brightness(1.02)
		contrast(1.02)
		saturate(0.55)
        drop-shadow(0 0 30px rgba(255,140,0,0.06));
    }

    .doc-top {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 30px;
      position: relative;
      z-index: 2;
	  max-width: 64%;
	  flex-direction: column;
	  margin-top: -20px;
    }
	
    .doc-icon {
	  position: relative;
      width: 78px;
      height: 78px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(
          circle at top,
          rgba(255,255,255,0.08),
          rgba(255,255,255,0.02)
        );
      border: 1px solid rgba(255,255,255,0.08);
	  backdrop-filter: blur(12px);
	  box-shadow:
	    inset 0 1px 0 rgba(255,255,255,0.05),
		0 0 20px rgba(255,140,0,0.08);
    }

    .doc-icon::before {
      content: "";
      position: absolute;
      border-radius: 50%;
      border:
        1px solid rgba(255,140,0,0.18);
      opacity: 0.8;
    }
    
	.doc-icon i {
      font-size: 2rem;
    }

    .doc-top h3 {
      font-size: 2rem;
      line-height: 0.95;
	  letter-spacing: -2px;
	  font-weight: 800;
      margin-bottom: 6px;
	  margin: 0;
	  max-width: 63%;
    }

    .linux-card .doc-top span {
      color: #ff9d2f;
      text-shadow: 0 0 12px rgba(255,140,0,0.35);
    }

    .network-card .doc-top span {
      color: #7db4c7;
      text-shadow: 0 0 12px rgba(125,180,199,0.18);
    }

    .windows-card .doc-top span {
      color: #a8c97f;
      text-shadow: 0 0 12px rgba(168,201,127,0.18);
    }
	
	.doc-divider-lin{
      width: 100px;
      height: 2px;
      margin: 28px 12px;
      background:
        linear-gradient(
          to right,
          transparent,
          #ff9d2f,
          transparent
        );
      box-shadow:
        0 0 18px rgba(255,140,0,0.5);
    }
	
	.doc-divider-res{
      width: 100px;
      height: 2px;
      margin: 28px 12px;
      background:
        linear-gradient(
          to right,
          transparent,
          #3c6aff,
          transparent
        );
      box-shadow:
        0 0 18px rgba(0,60,255,0.5);
    }
	
	.doc-divider-win{
      width: 100px;
      height: 2px;
      margin: 28px 12px;
      background:
        linear-gradient(
          to right,
          transparent,
          #b7c98d,
          transparent
        );
      box-shadow:
        0 0 18px rgba(0,255,42,0.5);
    }

    .doc-description {
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      margin-bottom: 32px;
      position: relative;
      z-index: 2;
	  max-width: 100%;
    }

    .doc-tags {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 50px;
	  margin-top: auto;
      position: relative;
      z-index: 2;
	  width: 100%;
    }
	
	.doc-tag {
      display: flex;
	  width: 100%;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 14px;
      border-radius: 12px;
      background:
        rgba(255,255,255,0.02);
      border:
        1px solid rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
      transition: 0.25s ease;
    }
	
	.doc-tag:hover {
      transform: translateY(-2px);
      border-color:
        rgba(255,255,255,0.12);
    }

    .doc-tag i,
    .doc-tag img {
      width: 16px;
      height: 16px;
      object-fit: contain;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .doc-tag span {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.82);
    }
	
	.doc-tag span {
      color: rgba(255,255,255,0.82);
      font-size: 0.92rem;
      line-height: 1;
    }
	
	.windows-card .doc-description {
      max-width: 100%;
    }
	
	.windows-card h3 {
	  max-width: 100%;
	}
	
	.doc-top,
    .doc-description,
    .doc-tags,
    .doc-footer {
      position: relative;
      z-index: 2;
    }

    .doc-footer {
	  width: calc(100% - 68px);
      position: relative;
      left: 34px;
      right: 34px;
      bottom: 34px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
	  margin-top: auto;
	  padding-top: 22px;
	  border-top:
	    1px solid rgba(255,255,255,0.05);
    }

	.doc-footer-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }
	
	.doc-footer i {
      font-size: 1.8rem;
      opacity: 0.95;
	  line-height: 1;
    }

    .doc-count {
      font-size: 2rem;
      letter-spacing: -1px;
      text-transform: uppercase;
	  font-weight: 800;
	  line-height: 1;
	}

    .doc-footer a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .doc-footer a:hover {
      transform: translateX(4px);
    }

    /* =========================
       COLORS
    ========================= */

    .linux-card {
      border-color: rgba(255,140,0,0.16);
    }
	
	.linux-card .doc-icon::before {
      border-color: rgba(255,140,0,0.22);
    }

    .linux-card .doc-icon i,
    .linux-card .doc-footer a {
      color: #ff9d2f;
    }

    .linux-card:hover {
      border-color: rgba(255,140,0,0.38);
      box-shadow:
        0 0 40px rgba(255,140,0,0.08);
    }
	
	.linux-card .doc-footer i,
    .linux-card .doc-count {
      color: #ff9d2f;
	  text-shadow:
        0 0 12px rgba(255,140,0,0.28);
    }
	
	.linux-card .doc-tag i,
    .linux-card .doc-tag img {
      color: #ff9d2f;
	}

    /* NETWORK */

    .network-card {
      border-color: rgba(125,180,199,0.14);
    }

    .network-card .doc-icon::before {
      border-color: rgba(60,160,255,0.22);
    }

    .network-card .doc-glow {
      background:
        radial-gradient(
          circle at top,
          rgba(125,180,199,0.10),
          transparent 60%
        );
    }

    .network-card .doc-icon i,
    .network-card .doc-footer a {
      color: #7db4c7;
    }

    .network-card:hover {
      border-color: rgba(80,170,255,0.38);
      box-shadow:
        0 0 40px rgba(0,140,255,0.08);
    }
	
	.network-card .doc-footer i,
	.network-card .doc-count {
	  color: #7d9aa8;
	  text-shadow:
        0 0 12px rgba(66,165,255,0.28);
    }
	
	.network-card .doc-tag i,
    .network-card .doc-tag img i:not(.promox-icon) {
      color: #7d9aa8;
    }
	
	.proxmox-icon {
      filter:
        brightness(0)
        saturate(100%)
        invert(73%)
        sepia(13%)
        saturate(463%)
        hue-rotate(154deg)
        brightness(90%)
        contrast(88%);
      opacity: 0.95;
    }

    /* WINDOWS */

    .windows-card {
      border-color: rgba(168,201,127,0.12);
    }
	
	.windows-card .doc-icon::before {
      border-color: rgba(120,255,140,0.22);
    }

    .windows-card .doc-glow {
      background:
        radial-gradient(
          circle at top,
          rgba(168,201,127,0.08),
          transparent 60%
        );
    }

    .windows-card .doc-icon i,
    .windows-card .doc-footer a {
      color: #a8c97f;
    }

    .windows-card:hover {
      border-color: rgba(120,255,140,0.30);
      box-shadow:
        0 0 40px rgba(120,255,140,0.06);
    }
	
	.windows-card .doc-footer i,
    .windows-card .doc-count {
      color: #b7c98d;
	  text-shadow:
        0 0 12px rgba(120,255,140,0.28);
    }
	
	.windows-card .doc-tag i,
    .windows-card .doc-tag img {
      color: #b7c98d;
    }
	
	.doc-features {
      width: 100%;
      max-width: 1450px;
      margin: 40px auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border:
        1px solid rgba(255,140,0,0.14);
      border-radius: 28px;
      overflow: hidden;
      background:
        linear-gradient(
          180deg,
          rgba(20,12,6,0.92),
          rgba(8,8,8,0.98)
        );
      backdrop-filter: blur(12px);
      position: relative;
    }

      /* glow */

    .doc-features::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(
          circle at center,
          rgba(255,140,0,0.08),
          transparent 70%
        );
      pointer-events: none;
    }

      /* bloc */

    .doc-feature {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 24px 28px;
      position: relative;
    }

      /* séparateurs */

    .doc-feature:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: 1px;
      height: 55%;
      transform: translateY(-50%);
      background:
        linear-gradient(
          to bottom,
          transparent,
          rgba(255,140,0,0.18),
          transparent
        );
    }

      /* icone */

    .feature-icon-desc {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon-desc svg {
      width: 50px;
      height: 50px;
      stroke-width: 1.2;
	  color: #ff9d2f;
	  filter:
        drop-shadow(0 0 8px rgba(255,140,0,0.35))
        drop-shadow(0 0 18px rgba(255,140,0,0.18));
    }

      /* texte */

    .feature-text h4 {
      font-size: 1rem;
      font-weight: 600;
      color: white;
      margin-bottom: 6px;
    }

    .feature-text p {
      font-size: 0.88rem;
      line-height: 1.55;
      color:
        rgba(255,255,255,0.62);
    }

    /* =========================
       FOOTER
    ========================= */

    .footer {
      position: relative;
      padding:
        60px 40px 0px;
      overflow: hidden;
      background:
        linear-gradient(
          to bottom,
          rgba(0,0,0,0),
          rgba(8,8,8,0.96)
        );
    }

      /* ligne glow */

    .footer-divider {
      width: 100%;
      height: 2px;
      margin-bottom: 70px;
      background:
        linear-gradient(
          to right,
          transparent,
          rgba(255,140,0,0.35) 20%,
          rgba(255,170,60,1) 50%,
          rgba(255,140,0,0.35) 80%,
          transparent
        );
      position: relative;
	  overflow: visible;
	  z-index: 1;
	  box-shadow:
        0 0 8px rgba(255,140,0,0.35),
        0 0 18px rgba(255,140,0,0.18);
    }
	
	.footer-divider::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform:
        translate(-50%, -50%);
      width: 500px;
      height: 80px;
      background:
        radial-gradient(
          ellipse at center,
          rgba(255,140,0,0.75) 0%,
          rgba(255,140,0,0.35) 20%,
          rgba(255,140,0,0.12) 45%,
		  transparent 75%
        );
      filter:
        blur(26px);
      pointer-events: none;
	  opacity: 1;
	  z-index: -1;
    }

    .footer-divider::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform:
        translate(-50%, -50%);
      width: 140px;
      height: 2px;
      background:
        rgba(255,220,160,1);
      box-shadow:
        0 0 12px rgba(255,180,80,1),
        0 0 24px rgba(255,140,0,0.95),
        0 0 50px rgba(255,140,0,0.75),
        0 0 90px rgba(255,140,0,0.45);
      border-radius: 999px;
    }

      /* contenu */

    .footer-content {
      max-width: 1400px;
      margin: -40px auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
	  position: relative;
	  z-index: 5;
    }

      /* logo */

    .footer-logo img {
      width: 350px;
      margin-bottom: -9px;
      filter:
        drop-shadow(
          0 0 14px rgba(255,140,0,0.25)
        );
    }

    .footer-logo h3 {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: white;
      margin-bottom: 14px;
    }

    .footer-logo h3 span {
      color: #ff9d2f;
    }

    .footer-logo p {
      color:
        rgba(255,140,0,0.85);
      font-size: 1rem;
      margin-bottom: 30px;
    }

    /* liens */

    .footer-links {
      display: flex;
      gap: 34px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 40px;
    }

    .footer-links a {
	  display: flex;
      align-items: center;
      gap: 10px;
      color: #f9dab0;
      text-decoration: none;
      font-size: 1rem;
	  font-weight: 500;
      transition: 0.25s ease;
    }
	
	.footer-links a i {
      font-size: 1rem;
      color: #f9dab0;
      transition: 0.25s ease;
      filter:
        drop-shadow(
          0 0 8px rgba(255,140,0,0.25)
        );
    }

    .footer-links a:hover {
      color: #ffd7a0;
	  transform: translateY(-1px);
      text-shadow:
        0 0 10px rgba(255,140,0,0.25);
    }
	
	.footer-links a:hover i {
      color: #ffb347;
      filter:
        drop-shadow(
          0 0 12px rgba(255,140,0,0.45)
        );
    }

      /* socials */

    .footer-social {
      display: flex;
      gap: 18px;
      margin-bottom: 45px;
    }

    .footer-social a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border:
        1px solid rgba(255,140,0,0.12);
      background:
        rgba(255,255,255,0.02);
      color:
        rgba(255,255,255,0.78);
      text-decoration: none;
      transition: 0.25s ease;
    }

    .footer-social a:hover {
      color: #ff9d2f;
      border-color:
        rgba(255,140,0,0.35);
      box-shadow:
        0 0 18px rgba(255,140,0,0.12);
    }

      /* copyright */

    .footer-bottom {
      color:
        rgba(255,255,255,0.35);
      font-size: 0.88rem;
      letter-spacing: 0.04em;
    }
	
	.footer-bottom-banner {
      width: 100vw;
      margin-top: -230px;
      overflow: hidden;
	  position: relative;
	  margin-left: calc(50% - 50vw);
	  z-index: 1;
    }

    .footer-bottom-banner img {
      width: 100%;
      display: block;
      opacity: 0.92;
      pointer-events: none;
      user-select: none;
    }
	
    @media (max-width: 1100px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .infra-layout {
        grid-template-columns: 1fr;
      }    
	
	  .doc-grid {
        grid-template-columns: 1fr;
      }

      .doc-card {
        min-height: auto;
        padding-bottom: 120px;
      }
    }

    @media (max-width: 768px) {
      header {
      padding: 20px;
      }

      nav {
        display: none;
      }

      .hero {
        flex-direction: column;
	text-align: center;
	padding: 20px;
	gap: 20px;
      }

      .hero-left {
         max-width: 100%;
      }
	  
      .hero-logo {
        width: 260px;
      }
	  
      .hero-buttons {
        justify-content: center;
      }

      .subtitle {
        font-size: 1.2rem;
      }

      .infrastructure {
        padding: 0 20px;
      }

      .infra-diagram {
        flex-direction: column;
      }

      .infra-line {
        width: 2px;
        height: 40px;
      }

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

      .footer {
        flex-direction: column;
        text-align: center;
      }
    }
    
    @keyframes floatLogo {
      0% {
        transform: translateY(0px);
      }

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

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

    @keyframes glowPulse {
      0% {
        filter:
          drop-shadow(0 0 20px rgba(255,140,0,0.12))
          drop-shadow(0 0 60px rgba(255,140,0,0.05));
      }

      50% {
        filter:
          drop-shadow(0 0 28px rgba(255,140,0,0.20))
          drop-shadow(0 0 90px rgba(255,140,0,0.10));
      }

      100% {
        filter:
          drop-shadow(0 0 20px rgba(255,140,0,0.12))
          drop-shadow(0 0 60px rgba(255,140,0,0.05));
      }
    }

    @keyframes nodePulse {
      0%, 100% {
        box-shadow:
          0 0 12px rgba(255,140,0,0.08);
      }
      50% {
        box-shadow:
          0 0 24px rgba(255,140,0,0.16);
      }
    }

    @keyframes npmPulse {
      0%, 100% {
        opacity: 0.92;
      }
      50% {
        opacity: 1;
      }
    }

 
