/* ═══════════════════════════════════════════════
   WARP.MD — styles.css (RESTRUCTURAT)
   Fiecare secțiune are CSS complet independent.
   Zero reutilizare între secțiuni.
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500&display=swap');

/* ═══ GLOBAL RESET (doar structura de bază) ═══ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #0a0a0f;
  color: #e8e4df;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font-family: 'Outfit', sans-serif;
}

select option {
  background: #0a0a0f;
  color: #e8e4df;
}

/* ═══ SCROLL LOCK (pentru mobile menu) ═══ */
body.scroll-lock {
  overflow: hidden;
}

::selection {
  background: #00f0ff;
  color: #0a0a0f;
}



/* ══════════════════════════════════════════════════════════════
   §  NAV  (prefix: nav-)
   ══════════════════════════════════════════════════════════════ */
/* ═══ NAV ═══ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background .4s, backdrop-filter .4s;
}

.nav-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.nav.scrolled {
  background: rgba(10, 10, 15, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 228, 223, .08);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .06em;
  color: #e8e4df;
  z-index: 101;
  position: relative;
}

.nav-logo span {
  color: #00f0ff;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .42);
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00f0ff;
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

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

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

.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 101;
  padding: 0;
}

.nav-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e8e4df;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  border-radius: 2px;
}

.nav-burger span:nth-child(1) {
  top: 0;
}

.nav-burger span:nth-child(2) {
  top: 9px;
}

.nav-burger span:nth-child(3) {
  top: 18px;
}

.nav-burger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background: rgba(10, 10, 15, .98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s, visibility .4s;
}

.nav-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.nav-mobile-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: .08em;
  color: #e8e4df;
  transition: color .3s;
}

.nav-mobile-links a:hover {
  color: #00f0ff;
}

/* SIMPLU - doar blochează overflow */
body.menu-open {
  overflow: hidden;
}

@media(max-width: 860px) {
  .nav {
    padding: 22px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: block;
  }
}


/* ══════════════════════════════════════════════════════════════
   §  HERO  (prefix: hero-)
   ══════════════════════════════════════════════════════════════ */
/* ═══ HERO ═══ */

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Annotations */
.hero-anno {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: baseline;
  margin-bottom: 32px;
  opacity: 0;
  animation: hero-fade-in .8s .6s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes hero-fade-in {
  to {
    opacity: 1;
  }
}

.hero-token {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .7rem;
  letter-spacing: .02em;
}

.hero-prop {
  color: rgba(0, 240, 255, .35);
}

.hero-val {
  color: rgba(232, 228, 223, .25);
}

/* Title WARP */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 22rem);
  line-height: .85;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  overflow: hidden;
}

.hero-row {
  display: flex;
  gap: 0.02em;
}

.hero-w {
  display: inline-block;
  color: #e8e4df;
  opacity: 0;
  transform: translateY(100%);
  animation: hero-letter-drop .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-w:nth-child(1) {
  animation-delay: .1s;
}

.hero-w:nth-child(2) {
  animation-delay: .2s;
}

.hero-w:nth-child(3) {
  animation-delay: .3s;
}

.hero-w:nth-child(4) {
  animation-delay: .4s;
}

@keyframes hero-letter-drop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated line */
.hero-rule {
  width: 100%;
  height: 1px;
  background: rgba(232, 228, 223, .08);
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.hero-rule-glow {
  position: absolute;
  top: -1px;
  left: -200px;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  filter: blur(1px);
  animation: hero-glow-slide 4s linear infinite;
}

@keyframes hero-glow-slide {
  to {
    left: calc(100% + 200px);
  }
}

/* Content grid */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

/* Left side */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Tags */
.hero-tags {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-in .8s .8s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #00f0ff;
  padding: 6px 18px;
  background: transparent;
  border: 1px solid rgba(0, 240, 255, .25);
  border-radius: 4px;
  transition: all .3s;
  white-space: nowrap;
}

.hero-tag:hover {
  background: rgba(0, 240, 255, .08);
  border-color: rgba(0, 240, 255, .4);
}

.hero-tag-sep {
  color: rgba(232, 228, 223, .15);
  font-size: 1rem;
}

/* Descriere */
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(232, 228, 223, .5);
  line-height: 1.7;
  opacity: 0;
  animation: hero-fade-in .8s 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-accent {
  color: #00f0ff;
  font-weight: 400;
}

/* Stack */
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: hero-fade-in .8s 1.2s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-stack-label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .35);
}

.hero-stack-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-tech {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .72rem;
  padding: 7px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 4px;
  color: rgba(232, 228, 223, .6);
  transition: all .3s;
}

.hero-tech:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(232, 228, 223, .9);
  transform: translateY(-2px);
}

/* Right side (desktop) */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 200px;
}

/* Quick nav */
.hero-quick-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50px;
  opacity: 0;
  animation: hero-fade-in .8s 1s cubic-bezier(.16, 1, .3, 1) forwards;
  transition: all .3s;
}

.hero-quick-nav:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}

.hero-quick-icon {
  font-size: .8rem;
  color: rgba(232, 228, 223, .4);
}

.hero-quick-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-quick-links a {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(232, 228, 223, .5);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all .25s;
}

.hero-quick-links a:hover {
  color: rgba(232, 228, 223, .9);
  background: rgba(255, 255, 255, .05);
}

.hero-quick-kbd {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .65rem;
  color: rgba(232, 228, 223, .4);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: .06em;
}

/* Meta */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .35);
  opacity: 0;
  animation: hero-fade-in .8s 1.2s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-meta-sep {
  color: rgba(232, 228, 223, .2);
}

/* Hide mobile elements on desktop */
.hero-quick-nav-mobile,
.hero-meta-mobile {
  display: none;
}

/* ═══ RESPONSIVE ═══ */

/* Tablet */
@media(max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 350px;
    gap: 60px;
  }

  .hero-tag {
    font-size: 1rem;
    padding: 5px 16px;
  }
}

/* Mobile landscape / Small tablet */
@media(max-width: 860px) {
  .hero {
    padding: 0 24px;
  }

  /* Single column layout */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Hide desktop nav/meta */
  .hero-right {
    display: none;
  }

  /* Show mobile nav/meta */
  .hero-quick-nav-mobile,
  .hero-meta-mobile {
    display: flex;
  }

  .hero-quick-nav-mobile {
    align-self: flex-start;
  }

  .hero-meta-mobile {
    align-self: flex-start;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tag {
    font-size: .95rem;
    padding: 5px 14px;
  }

  .hero-title {
    font-size: clamp(5rem, 16vw, 10rem);
    margin-bottom: 28px;
  }

  .hero-rule {
    margin-bottom: 40px;
  }
}

/* Mobile portrait */
@media(max-width: 480px) {
  .hero {
    padding: 0 20px;
  }

  .hero-anno {
    gap: 4px 12px;
    margin-bottom: 24px;
  }

  .hero-token {
    font-size: .65rem;
  }

  .hero-title {
    font-size: clamp(4rem, 18vw, 6rem);
    margin-bottom: 24px;
  }

  .hero-rule {
    margin-bottom: 32px;
  }

  .hero-left {
    gap: 24px;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tag {
    font-size: .85rem;
    padding: 4px 12px;
  }

  .hero-tag-sep {
    font-size: .9rem;
  }

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

  .hero-stack-items {
    gap: 6px;
  }

  .hero-tech {
    font-size: .68rem;
    padding: 6px 12px;
  }

  .hero-quick-nav {
    padding: 8px 12px;
    gap: 10px;
  }

  .hero-quick-links a {
    font-size: .7rem;
    padding: 3px 6px;
  }

  .hero-quick-kbd {
    font-size: .6rem;
    padding: 2px 6px;
  }

  .hero-meta {
    font-size: .65rem;
    gap: 10px;
  }
}

/* ══════════════════════════════════════════════════════════════
   §  SERVICES  (prefix: svc-)
   ══════════════════════════════════════════════════════════════ */

.svc-section {
  position: relative;
  z-index: 2;
  padding: 140px 48px 120px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.svc-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.svc-label.svc-vis {
  opacity: 1;
  transform: translateY(0);
}

.svc-label-line {
  width: 32px;
  height: 1px;
  background: #00f0ff;
}

.svc-label span:last-child {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #00f0ff;
  font-weight: 500;
}

.svc-anno {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .68rem;
  letter-spacing: .02em;
  color: transparent;
  margin-bottom: 56px;
  margin-top: -48px;
}

.svc-anno-prop {
  color: rgba(0, 240, 255, .3);
}

.svc-anno-val {
  color: rgba(232, 228, 223, .22);
}

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-node {
  border-bottom: 1px solid rgba(232, 228, 223, .08);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.svc-node.svc-vis {
  opacity: 1;
  transform: translateY(0);
}

.svc-node:first-child {
  border-top: 1px solid rgba(232, 228, 223, .08);
}

.svc-node-head {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: center;
  padding: 28px 0;
  user-select: none;
}

.svc-idx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .08em;
  color: rgba(232, 228, 223, .42);
  transition: color .3s;
}

.svc-node:hover .svc-idx {
  color: #00f0ff;
}

.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: .04em;
  color: #e8e4df;
  transition: color .3s, transform .3s;
}

.svc-node:hover .svc-name {
  color: #fff;
}

.svc-arrow {
  font-size: 1.3rem;
  color: rgba(232, 228, 223, .42);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), color .3s;
  line-height: 1;
}

.svc-node.open .svc-arrow {
  transform: rotate(45deg);
  color: #00f0ff;
}

.svc-node-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1), padding .4s cubic-bezier(.16, 1, .3, 1);
  padding: 0;
}

.svc-node.open .svc-node-body {
  max-height: 200px;
  padding-bottom: 28px;
}

.svc-node-body p {
  font-size: .92rem;
  font-weight: 300;
  color: rgba(232, 228, 223, .42);
  line-height: 1.7;
  margin-bottom: 18px;
  padding-left: 56px;
}

.svc-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: 56px;
}

.svc-tags span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #00f0ff;
  padding: 5px 14px;
  border: 1px solid rgba(0, 240, 255, .15);
  border-radius: 50px;
  transition: background .3s, border-color .3s;
}

.svc-tags span:hover {
  background: rgba(0, 240, 255, .15);
  border-color: #00f0ff;
}

@media(max-width:860px) {
  .svc-section {
    padding: 90px 24px 80px;
  }

  .svc-anno {
    display: none;
  }
}


/* ══════════════════════════════════════════════════════════════
   §  CODE PREVIEW  (prefix: cpx-)
   ══════════════════════════════════════════════════════════════ */

.cpx-section {
  position: relative;
  z-index: 2;
  padding: 0 48px 120px;
}

.cpx-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(10, 10, 18, .7);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.cpx-wrap.cpx-vis {
  opacity: 1;
  transform: translateY(0);
}

.cpx-editor {
  background: #111118;
  padding: 0;
}

.cpx-dots {
  display: flex;
  gap: 7px;
  padding: 16px 20px 14px;
  align-items: center;
}

.cpx-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.cpx-d-red {
  background: #ff5f57;
}

.cpx-d-yel {
  background: #febc2e;
}

.cpx-d-grn {
  background: #28c840;
}

.cpx-code {
  padding: 0 24px 22px;
}

.cpx-ln {
  display: flex;
  align-items: baseline;
  gap: 18px;
  line-height: 1.75;
}

.cpx-ln-n {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .7rem;
  color: rgba(232, 228, 223, .18);
  min-width: 18px;
  text-align: right;
  user-select: none;
}

.cpx-ln-code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .72rem;
  line-height: 1.75;
  color: rgba(232, 228, 223, .42);
  white-space: pre;
}

.cpx-c-tag {
  color: #7dd3fc;
}

.cpx-c-attr {
  color: #a5f3fc;
}

.cpx-c-str {
  color: #86efac;
}

.cpx-c-cmt {
  color: rgba(232, 228, 223, .25);
  font-style: italic;
}

.cpx-c-txt {
  color: #e8e4df;
}

.cpx-preview {
  background: #0e0e14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

.cpx-card {
  width: 100%;
  max-width: 240px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.cpx-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 240, 255, .08);
  border: 1px solid rgba(0, 240, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f0ff;
  margin-bottom: 18px;
}

.cpx-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .03em;
  color: #e8e4df;
  margin-bottom: 8px;
}

.cpx-card-desc {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(232, 228, 223, .42);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cpx-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cpx-card-tags span {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #00f0ff;
  padding: 3px 10px;
  border: 1px solid rgba(0, 240, 255, .18);
  border-radius: 50px;
}

@media(max-width:860px) {
  .cpx-section {
    padding: 0 24px 80px;
  }

  .cpx-wrap {
    grid-template-columns: 1fr;
  }

  .cpx-preview {
    padding: 28px 24px;
    justify-content: flex-start;
  }

  .cpx-card {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════════════════════
   §  CLIENTI  (prefix: cli-)
   ══════════════════════════════════════════════════════════════ */
/* ═══ CLIENTI ═══ */

.cli-section {
  position: relative;
  z-index: 2;
  padding: 120px 48px 140px;
}

.cli-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
    transform .8s cubic-bezier(.16, 1, .3, 1);
}

.cli-label.cli-vis {
  opacity: 1;
  transform: translateY(0);
}

.cli-label-line {
  width: 32px;
  height: 1px;
  background: #00f0ff;
}

.cli-label span:last-child {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #00f0ff;
  font-weight: 500;
}

.cli-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cli-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 80px) / 5);
  min-width: 160px;
  max-width: 200px;
  background: #0f0f15;
  border: 1px solid rgba(232, 228, 223, .08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .35s, transform .3s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s;
  opacity: 0;
  transform: translateY(30px);
}

.cli-card.cli-vis {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
    transform .8s cubic-bezier(.16, 1, .3, 1),
    border-color .35s, box-shadow .35s;
}

.cli-card:hover {
  border-color: rgba(0, 240, 255, .15);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 240, 255, .08);
}

/* Logo container - înălțime fixă */
.cli-logo {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(232, 228, 223, .08);
  padding: 16px;
  overflow: hidden;
}

/* Logo imagine - înălțime fixă, lățime auto */
.cli-logo-img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%) brightness(1.2) opacity(0.8);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Hover effect pe logo */
.cli-card:hover .cli-logo-img {
  filter: grayscale(0%) brightness(1) opacity(1);
  transform: scale(1.05);
}

/* Fallback pentru imagini care nu se încarcă */
.cli-logo-img[alt]::before {
  content: attr(alt);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .08em;
  color: rgba(232, 228, 223, .42);
}

.cli-type {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #00f0ff;
  font-weight: 500;
  padding: 10px 12px 2px;
  text-align: center;
}

.cli-url {
  display: block;
  font-size: .68rem;
  color: rgba(232, 228, 223, .42);
  padding: 0 12px 10px;
  text-align: center;
  letter-spacing: .02em;
  transition: color .25s;
}

.cli-card:hover .cli-url {
  color: rgba(0, 240, 255, .4);
}

/* Responsive */
@media(max-width: 860px) {
  .cli-section {
    padding: 80px 24px;
  }
  
  .cli-card {
    width: calc((100% - 40px) / 3);
    min-width: 0;
  }
  
  .cli-logo {
    height: 90px;
    padding: 14px;
  }
  
  .cli-logo-img {
    height: 55px;
  }
}

/* Mobile - 2 carduri */
@media(max-width: 520px) {
  .cli-card {
    width: calc(50% - 10px); /* Mai simplu: 50% minus jumătate din gap */
    min-width: 0;
  }
  
  .cli-logo {
    height: 80px;
    padding: 12px;
  }
  
  .cli-logo-img {
    height: 50px;
  }
  
  .cli-type {
    font-size: .68rem;
    padding: 8px 10px 2px;
  }
  
  .cli-url {
    font-size: .65rem;
    padding: 0 10px 8px;
  }
}

/* Extra Small - 1 card */
@media(max-width: 350px) {
  .cli-section {
    padding: 60px 16px;
  }
  
  .cli-grid {
    gap: 16px;
  }
  
  .cli-card {
    width: 100%;
    min-width: 0;
  }
  
  .cli-logo {
    height: 100px;
    padding: 16px;
  }
  
  .cli-logo-img {
    height: 60px;
  }
}




/* ══════════════════════════════════════════════════════════════
   §  PROCESS  (prefix: proc-)
   ══════════════════════════════════════════════════════════════ */

.proc-section {
  position: relative;
  z-index: 2;
  padding: 100px 48px 120px;
}

.proc-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
}

.proc-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.proc-label-line {
  width: 32px;
  height: 1px;
  background: #00f0ff;
}

.proc-label span:last-child {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #00f0ff;
  font-weight: 500;
}

.proc-cards {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proc-card {
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 32px 28px 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .4s, box-shadow .4s;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.proc-card.proc-vis {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1), border-color .4s, box-shadow .4s;
}

.proc-card:hover {
  border-color: rgba(0, 240, 255, .22);
  box-shadow: 0 0 40px rgba(0, 240, 255, .06), inset 0 1px 0 rgba(0, 240, 255, .08);
}

.proc-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}

.proc-idx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .85rem;
  color: rgba(232, 228, 223, .42);
  letter-spacing: .08em;
}

.proc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: #e8e4df;
}

.proc-anno {
  margin-bottom: 24px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: .68rem;
  letter-spacing: .02em;
}

.proc-anno-prop {
  color: rgba(0, 240, 255, .3);
}

.proc-anno-val {
  color: rgba(232, 228, 223, .22);
}

.proc-demo {
  border-radius: 12px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .04);
  overflow: hidden;
}

/* Demo 1: Responsive */
.proc-demo-responsive {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding: 28px 20px 24px;
}

.proc-dev {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.proc-dev-screen {
  background: #1a1a22;
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  gap: 6px;
}

.proc-dev-label {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .42);
}

.proc-dev-mobile .proc-dev-screen {
  width: 52px;
  height: 88px;
  border-radius: 10px;
}

.proc-dev-mobile .proc-dev-line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
}

.proc-dev-mobile .proc-dev-block {
  width: 100%;
  height: 28px;
  background: rgba(0, 240, 255, .1);
  border-radius: 4px;
  margin-top: 4px;
}

.proc-dev-tablet .proc-dev-screen {
  width: 90px;
  height: 70px;
  border-radius: 8px;
}

.proc-dev-tablet .proc-dev-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.proc-dev-tablet .proc-dev-block {
  width: 30px;
  min-height: 40px;
  background: rgba(0, 240, 255, .1);
  border-radius: 4px;
  flex-shrink: 0;
}

.proc-dev-tablet .proc-dev-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.proc-dev-tablet .proc-dev-line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
}

.proc-dev-desktop .proc-dev-screen {
  width: 130px;
  height: 72px;
  border-radius: 7px;
}

.proc-dev-desktop .proc-dev-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.proc-dev-desktop .proc-dev-block {
  width: 36px;
  min-height: 42px;
  background: rgba(0, 240, 255, .1);
  border-radius: 4px;
  flex-shrink: 0;
}

.proc-dev-desktop .proc-dev-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.proc-dev-desktop .proc-dev-line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
}

.proc-dev-desktop .proc-dev-line:last-child {
  width: 65%;
}

.proc-demo-responsive:hover .proc-dev-desktop {
  transform: scale(1.08);
}

.proc-demo-responsive:hover .proc-dev-mobile {
  transform: scale(.92);
}

.proc-demo-responsive:hover .proc-dev-tablet {
  transform: scale(.96);
}

/* Demo 2: SSL */
.proc-demo-ssl {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proc-ssl-bar {
  background: #111118;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.proc-ssl-dots {
  display: flex;
  gap: 5px;
}

.proc-ssl-d {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.proc-dot-r {
  background: #ff5f57;
}

.proc-dot-y {
  background: #febc2e;
}

.proc-dot-g {
  background: #28c840;
}

.proc-ssl-url {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: .68rem;
}

.proc-ssl-lock {
  color: #00f0ff;
  display: flex;
  align-items: center;
}

.proc-ssl-lock svg .lock-shackle {
  animation: proc-lock-close .8s 1.2s cubic-bezier(.34, 1.56, .64, 1) forwards;
  transform-origin: bottom center;
}

@keyframes proc-lock-close {
  0% {
    transform: translateY(0);
  }

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

.proc-ssl-proto {
  color: #00f0ff;
  opacity: .7;
}

.proc-ssl-domain {
  color: #e8e4df;
  font-weight: 500;
}

.proc-ssl-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proc-ssl-check {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(40, 200, 100, .1);
  border: 1px solid rgba(40, 200, 100, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5eead4;
}

.proc-ssl-check svg .check-path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: proc-draw-check .6s 1.6s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes proc-draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

.proc-ssl-txt {
  font-size: .78rem;
  color: rgba(232, 228, 223, .7);
  font-weight: 400;
}

.proc-ssl-cert {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proc-ssl-cert-row {
  display: flex;
  justify-content: space-between;
}

.proc-ssl-cert-k {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .42);
}

.proc-ssl-cert-v {
  font-size: .68rem;
  color: rgba(232, 228, 223, .7);
  font-family: 'SF Mono', 'Consolas', monospace;
}

/* Demo 3: Server */
.proc-demo-server {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proc-srv-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proc-srv-node {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .03);
}

.proc-srv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: proc-srv-pulse 2s infinite ease-in-out;
}

.proc-srv-ok .proc-srv-dot {
  background: #28c840;
  box-shadow: 0 0 6px rgba(40, 200, 64, .4);
}

.proc-srv-warn .proc-srv-dot {
  background: #febc2e;
  box-shadow: 0 0 6px rgba(254, 188, 46, .4);
  animation-delay: .5s;
}

@keyframes proc-srv-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.proc-srv-name {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: .7rem;
  color: #e8e4df;
  min-width: 46px;
}

.proc-srv-stat {
  font-size: .62rem;
  letter-spacing: .06em;
  color: rgba(232, 228, 223, .42);
  margin-left: auto;
}

.proc-srv-warn .proc-srv-stat {
  color: #febc2e;
}

.proc-srv-graph {
  width: 100%;
  height: 44px;
}

.proc-srv-graph svg {
  width: 100%;
  height: 100%;
}

.proc-srv-labels {
  display: flex;
  justify-content: space-between;
}

.proc-srv-labels span {
  font-size: .6rem;
  letter-spacing: .06em;
  color: rgba(232, 228, 223, .42);
}

/* Demo 4: Pipeline */
.proc-demo-pipeline {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proc-pipe-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proc-pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.proc-pipe-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
}

.proc-step-done .proc-pipe-dot {
  border-color: #5eead4;
  color: #5eead4;
  background: rgba(94, 234, 212, .08);
}

.proc-step-active .proc-pipe-dot {
  border-color: #00f0ff;
  background: rgba(0, 240, 255, .08);
}

.proc-pipe-name {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .42);
}

.proc-step-active .proc-pipe-name {
  color: #00f0ff;
}

.proc-pipe-line {
  width: 32px;
  height: 1.5px;
  margin-bottom: 24px;
}

.proc-line-done {
  background: linear-gradient(90deg, #5eead4, #5eead4);
}

.proc-line-active {
  background: linear-gradient(90deg, #5eead4, #00f0ff);
  position: relative;
  overflow: hidden;
}

.proc-line-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
  animation: proc-pipe-shine 1.8s infinite linear;
}

@keyframes proc-pipe-shine {
  to {
    left: 200%;
  }
}

.proc-pipe-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 240, 255, .2);
  border-top-color: #00f0ff;
  border-radius: 50%;
  animation: proc-spin .7s linear infinite;
}

@keyframes proc-spin {
  to {
    transform: rotate(360deg);
  }
}

.proc-pipe-terminal {
  background: #0d0d12;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.proc-pt-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: .66rem;
}

.proc-pt-t {
  color: rgba(232, 228, 223, .42);
  min-width: 56px;
}

.proc-pt-ok {
  color: #5eead4;
}

.proc-pt-run {
  color: rgba(232, 228, 223, .7);
}

.proc-pt-c {
  flex: 1;
}

.proc-pt-dur {
  color: rgba(232, 228, 223, .42);
  margin-left: auto;
}

.proc-pt-cursor {
  display: inline-block;
  width: 6px;
  height: 11px;
  background: #00f0ff;
  border-radius: 1px;
  margin-left: 3px;
  animation: proc-blink 1.1s step-end infinite;
}

@keyframes proc-blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

@media(max-width:860px) {
  .proc-section {
    padding: 80px 24px 90px;
  }

  .proc-cards {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   §  CONTACT  (prefix: con-)
   ══════════════════════════════════════════════════════════════ */

.con {
  position: relative;
  z-index: 2;
  padding: 140px 48px 100px;
}

.con-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.con-left {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.con-left.con-vis {
  opacity: 1;
  transform: translateY(0);
}

.con-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.con-label-line {
  width: 32px;
  height: 1px;
  background: #00f0ff;
}

.con-label span:last-child {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #00f0ff;
  font-weight: 500;
}

.con-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .92;
  letter-spacing: .02em;
  margin-bottom: 48px;
  color: #e8e4df;
}

.con-title span {
  color: #00f0ff;
}

.con-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.con-info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.con-info-label {
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .42);
}

.con-info-value {
  font-size: .95rem;
  font-weight: 400;
  color: #e8e4df;
  transition: color .3s;
}

a.con-info-value:hover {
  color: #00f0ff;
}

.con-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
    transform .8s cubic-bezier(.16, 1, .3, 1);
}

.con-form.con-vis {
  opacity: 1;
  transform: translateY(0);
}

.con-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.con-form-field {
  position: relative;
}

.con-form-field label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, .42);
  margin-bottom: 12px;
  transition: color .3s;
}

.con-form-field:focus-within label {
  color: #00f0ff;
}

/* Input & Textarea - minimalist cu border-bottom */
.con-form-field input,
.con-form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: #e8e4df;
  font-size: .95rem;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  resize: none;
  border-bottom: 1px solid rgba(232, 228, 223, .08);
  transition: border-color .35s;
  font-family: 'Outfit', sans-serif;
}

.con-form-field input:focus,
.con-form-field textarea:focus {
  /* border-color: #00f0ff; */
}

.con-form-field input::placeholder,
.con-form-field textarea::placeholder {
  color: rgba(232, 228, 223, .3);
  opacity: 1;
}

/* Select - stil modern cu background închis */
.con-form-field select {
  width: 100%;
  background: rgba(10, 10, 15, .6);
  border: 1px solid rgba(232, 228, 223, .08);
  border-radius: 8px;
  color: #e8e4df;
  font-size: .95rem;
  font-weight: 300;
  padding: 12px 16px;
  padding-right: 40px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  /* transition: all .3s; */
  font-family: 'Outfit', sans-serif;

  /* Custom arrow SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2300f0ff' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
}

.con-form-field select:hover {
  background: rgba(10, 10, 15, .8);
  border-color: rgba(232, 228, 223, .12);
}

.con-form-field select:focus {
  background: rgba(10, 10, 15, .9);
  border-color: #00f0ff;
}

/* Placeholder option styling */
.con-form-field select option {
  background: #0f0f15;
  color: #e8e4df;
  padding: 12px;
}

.con-form-field select option:first-child {
  color: rgba(232, 228, 223, .4);
}

.con-form-field select option:checked {
  background: rgba(0, 240, 255, .1);
}

/* Remove .con-form-line pentru select (nu se folosește) */
.con-form-field:has(select) .con-form-line {
  display: none;
}

/* Animated underline pentru input/textarea */
.con-form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00f0ff;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.con-form-field:focus-within .con-form-line {
  width: 100%;
}

/* Button */
.con-form-btn {
  align-self: flex-start;
  background: #00f0ff;
  border: none;
  color: #0a0a0f;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  margin-top: 8px;
}

.con-form-btn:hover {
  background: #33f3ff;
  box-shadow: 0 0 24px rgba(0, 240, 255, .35);
  transform: translateY(-2px);
}

.con-form-btn:active {
  transform: translateY(0);
}


.con-form-btn:active {
  transform: scale(.96);
}

@media(max-width:860px) {
  .con {
    padding: 90px 24px;
  }

  .con-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .con-form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ══════════════════════════════════════════════════════════════
   §  FOOTER  (prefix: foot-)
   ══════════════════════════════════════════════════════════════ */

.foot {
  position: relative;
  z-index: 2;
  padding: 36px 48px;
  border-top: 1px solid rgba(232, 228, 223, .08);
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: #e8e4df;
}

.foot-logo span {
  color: #00f0ff;
}

.foot-copy {
  font-size: .74rem;
  color: rgba(232, 228, 223, .42);
}

.foot-links {
  display: flex;
  gap: 28px;
}

.foot-links a {
  font-size: .75rem;
  color: rgba(232, 228, 223, .42);
  letter-spacing: .06em;
  transition: color .3s;
}

.foot-links a:hover {
  color: #e8e4df;
}

@media(max-width:860px) {
  .foot {
    padding: 28px 24px;
  }

  .foot-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}