:root {
  --bg: #040d14;
  --panel: #071825;
  --blue: #00b4d8;
  --blue2: #0077a8;
  --ice: #caf0f8;
  --frost: rgba(0, 180, 216, 0.12);
  --red: #ff4d2e;
  --white: #f0f8ff;
  --gray: #4a6070;
  --metal: #b8cdd8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}



/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 13, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

.logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(240, 248, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--blue);
  transition: left 0.3s, right 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 18px;
  right: 18px;
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  border-radius: 8px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #e03a1e !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 77, 46, 0.4);
}

/* PAGE WRAPPER */
.page-wrapper {
  min-height: 100vh;
  padding-top: 68px;
}

/* PAGE ENTER ANIMATION */
.page-enter {
  animation: pageEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===================== HERO ===================== */
.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(60px);
  }
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 70px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero h1 .line1 {
  color: var(--white);
  display: block;
}

.hero h1 .line2 {
  color: var(--blue);
  display: block;
}

.hero h1 .line3 {
  color: rgba(240, 248, 255, 0.3);
  display: block;
  font-size: 0.55em;
  letter-spacing: 8px;
  margin-top: 8px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(240, 248, 255, 0.55);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
}

.btn-glow {
  background: var(--blue);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.btn-glow:hover::before {
  transform: translateX(100%);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.5), 0 0 60px rgba(0, 180, 216, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(240, 248, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.stat-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(0, 180, 216, 0.15);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--blue);
  letter-spacing: 2px;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* ===================== FRIDGE 3D ===================== */
.hero-fridge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.fridge-scene {
  position: relative;
  width: 300px;
  height: 480px;
  transform-style: preserve-3d;
  animation: fridgeFloat 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes fridgeFloat {

  0%,
  100% {
    transform: rotateY(-8deg) rotateX(2deg) translateY(0);
  }

  50% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-12px);
  }
}

.fridge-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #c8dde8 0%, #8aaaba 40%, #6090a8 100%);
  border-radius: 22px 22px 18px 18px;
  box-shadow: inset -8px 0 20px rgba(0, 0, 0, 0.2), inset 4px 0 12px rgba(255, 255, 255, 0.3), 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

.fridge-side {
  position: absolute;
  top: 10px;
  right: -28px;
  width: 28px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, #5a7888, #3a5868);
  border-radius: 0 8px 8px 0;
  transform: rotateY(90deg);
  transform-origin: left center;
}

.door-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(160deg, #d8eaf4 0%, #9abaca 50%, #7aaabb 100%);
  border-radius: 22px 22px 4px 4px;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  box-shadow: inset -6px 0 16px rgba(0, 0, 0, 0.15), inset 3px 0 8px rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.door-top.open {
  transform: rotateY(-110deg);
}

.door-top .handle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 65px;
  background: linear-gradient(180deg, #e8f0f5, #a0b8c8);
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), -1px -1px 4px rgba(255, 255, 255, 0.5);
}

.door-main {
  position: absolute;
  top: 39%;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(160deg, #d0e5f0 0%, #92b8cc 50%, #72a0b8 100%);
  border-radius: 4px 4px 18px 18px;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  box-shadow: inset -6px 0 16px rgba(0, 0, 0, 0.15), inset 3px 0 8px rgba(255, 255, 255, 0.3);
}

.door-main.open {
  transform: rotateY(-115deg);
}

.door-main .handle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 90px;
  background: linear-gradient(180deg, #e8f0f5, #a0b8c8);
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), -1px -1px 4px rgba(255, 255, 255, 0.5);
}

.fridge-interior-top {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 37%;
  background: linear-gradient(180deg, #e8f8ff, #c0eaf8);
  border-radius: 20px 20px 2px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s 0.3s;
}

.fridge-interior-top.visible {
  opacity: 1;
}

.shelf {
  width: 90%;
  height: 2px;
  background: rgba(0, 100, 150, 0.2);
  border-radius: 2px;
}

.frost-items {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.frost-item {
  border-radius: 4px;
  animation: frostGlow 2s ease-in-out infinite;
}

@keyframes frostGlow {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.fridge-interior-main {
  position: absolute;
  top: 41%;
  left: 2px;
  right: 2px;
  height: 57%;
  background: linear-gradient(180deg, #e0f4fc, #b8e8f8);
  border-radius: 2px 2px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.4s 0.4s;
}

.fridge-interior-main.visible {
  opacity: 1;
}

.int-service {
  width: 100%;
  background: rgba(0, 120, 180, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.6rem;
  color: #0077a8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.3s;
}

.int-service.show {
  transform: translateX(0);
  opacity: 1;
}

.int-dot {
  width: 5px;
  height: 5px;
  background: var(--blue2);
  border-radius: 50%;
  flex-shrink: 0;
}

.int-light {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: rgba(200, 240, 255, 0.8);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 0 20px rgba(180, 230, 255, 0.8), 0 0 40px rgba(180, 230, 255, 0.4);
}

.click-hint {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 180, 216, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  animation: hintBounce 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes hintBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
    opacity: 1;
  }
}

.fridge-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 180, 216, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  will-change: transform, opacity;
}

/* SNOWFLAKES */
.snowflakes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sf {
  position: absolute;
  color: rgba(0, 180, 216, 0.15);
  font-size: 1.5rem;
  animation: sfFall linear infinite;
  will-change: transform, opacity;
}

@keyframes sfFall {
  from {
    transform: translateY(-50px) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  to {
    transform: translateY(calc(100vh + 50px)) rotate(360deg);
    opacity: 0;
  }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 90px 80px;
}

.s-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 12px;
}

.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 16px;
}

.s-sub {
  font-size: 0.95rem;
  color: rgba(240, 248, 255, 0.5);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 60px;
}

/* ===================== SERVICES ===================== */
.services-intro {
  padding: 80px 80px 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.1);
  margin: 0 80px 80px;
  border-radius: 20px;
  overflow: hidden;
}

.srv-card {
  background: var(--panel);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.35s, box-shadow 0.35s;
  cursor: pointer;
  contain: layout style;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s;
}

.srv-card:hover {
  background: #0a2030;
}

.srv-card:hover::before {
  transform: scaleY(1);
}

.srv-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(0, 180, 216, 0.12);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.srv-card:hover .srv-num {
  color: rgba(0, 180, 216, 0.25);
}

.srv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.srv-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.srv-price {
  display: inline-block;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--blue);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.srv-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  color: var(--blue);
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.3s;
}

.srv-card:hover .srv-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.free-banner {
  margin: 0 80px 80px;
  background: linear-gradient(135deg, #001824, #002a40);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 20px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.free-banner::before {
  content: 'FREE';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14rem;
  color: rgba(0, 180, 216, 0.03);
  right: -20px;
  top: -20px;
  letter-spacing: -5px;
  pointer-events: none;
}

.free-banner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.free-banner p {
  color: rgba(240, 248, 255, 0.5);
  max-width: 480px;
}


/* ===================== BRANDS CAROUSEL ===================== */
.brands-carousel-wrap {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 50%, var(--bg) 100%);
  overflow: hidden;
  position: relative;
}

.brands-carousel-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 20px;
}

.brands-carousel-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}

.brands-carousel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
}

.brands-carousel-title span {
  color: var(--blue);
  position: relative;
}

/* Track wrapper cu fade edges */
.carousel-track-wrap {
  position: relative;
  overflow: hidden;
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

/* Track cu cele 2 slide-uri duplicate */
.carousel-track {
  display: flex;
  width: max-content;
}

.track-left {
  animation: scrollLeft 32s linear infinite;
  will-change: transform;
}

.track-right {
  animation: scrollRight 38s linear infinite;
  will-change: transform;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-slide {
  display: flex;
  gap: 14px;
  padding: 8px 7px;
  flex-shrink: 0;
}

/* Card brand individual */
.cbrand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  cursor: default;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.3px;
}

.cbrand:hover {
  background: rgba(0, 180, 216, 0.18);
  border-color: rgba(0, 180, 216, 0.5);
  color: var(--ice);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.2);
}

.cbrand-alt {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.cbrand-alt:hover {
  background: rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.4);
}

.cbrand-icon {
  font-size: 1rem;
  line-height: 1;
  filter: saturate(0.7);
  transition: filter 0.3s;
}

.cbrand:hover .cbrand-icon {
  filter: saturate(1.3);
}

.cbrand img {
  height: 22px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.cbrand:hover img {
  opacity: 1;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ===================== REVEAL SCROLL ANIMATIONS ===================== */

/* Starea inițială — ascunsă, gata de animare */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left {
  transform: translateX(-48px) translateY(16px);
}

.reveal.reveal-right {
  transform: translateX(48px) translateY(16px);
}

/* Starea vizibilă — declanșată prin JS */
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Delay-uri progresive pentru carduri succesive */
.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.22s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.34s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.46s;
}

/* ===================== SERVICE AREA CARD (Lângă FAQ) ===================== */
.sa-card {
  background: rgba(4, 13, 20, 0.4);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s;
  align-self: center;
  margin: auto 0;
}

.sa-card:hover {
  border-color: rgba(0, 180, 216, 0.25);
}

.sa-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
}

.sa-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sa-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 180, 216, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
}

.sa-header-text span {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.sa-header-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--white);
}

.sa-body p {
  font-size: 0.95rem;
  color: rgba(240, 248, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sa-body strong {
  color: var(--white);
}

.sa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 0;
}

.sa-tags span {
  font-size: 0.72rem;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  color: var(--gray);
  transition: color 0.3s, border-color 0.3s;
}

.sa-tags span:hover {
  color: var(--blue);
  border-color: rgba(0, 180, 216, 0.3);
}

.sa-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sa-f-text {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sa-phone {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 6px;
  transition: box-shadow 0.3s, background-color 0.3s;
  width: fit-content;
  border: 1.5px solid rgba(0, 180, 216, 0.4);
  border-radius: 10px;
  padding: 8px 22px;
  background: rgba(0, 180, 216, 0.06);
  text-align: center;
}

.sa-phone:hover {
  background: rgba(0, 180, 216, 0.12);
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.3);
}

.sa-sub {
  font-size: 0.82rem;
  color: rgba(240, 248, 255, 0.4);
}

@media (max-width: 768px) {
  .sa-card {
    padding: 28px 24px;
    margin-top: 24px;
  }
}

/* ===================== GALLERY ===================== */
.gallery-intro {
  padding: 80px 80px 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 80px 0;
}

.g-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.1);
  transition: border-color 0.4s, transform 0.4s;
  cursor: pointer;
  contain: layout style;
}

.g-item:hover {
  border-color: rgba(0, 180, 216, 0.4);
  transform: scale(1.02);
  z-index: 2;
}

.g-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.g-visual {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--panel), #0a2030);
  position: relative;
  overflow: hidden;
}

.g-item:nth-child(1) .g-visual {
  min-height: 380px;
}

.g-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 180, 216, 0.08), transparent 60%);
}

.g-icon-big {
  font-size: 4rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.g-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
}

.g-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 180, 216, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 24px;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-overlay-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--bg);
  text-align: center;
}

.g-overlay-sub {
  font-size: 0.82rem;
  color: rgba(4, 13, 20, 0.7);
  margin-top: 6px;
}

.testi-wrap {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-card {
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  contain: layout style;
}

.t-card:hover {
  border-color: rgba(0, 180, 216, 0.25);
  transform: translateY(-4px);
}

.t-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(0, 180, 216, 0.08);
  line-height: 1;
}

.t-stars {
  color: #ffd700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.t-text {
  font-size: 0.9rem;
  color: rgba(240, 248, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-av {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue2), #004060);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.t-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.t-loc {
  font-size: 0.76rem;
  color: var(--gray);
}

/* ===================== ABOUT ===================== */
.about-hero {
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 180, 216, 0.08);
}

.about-visual {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  overflow: hidden;
}

.about-visual::before {
  content: '12';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15rem;
  position: absolute;
  color: rgba(0, 180, 216, 0.04);
  bottom: -40px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
}

.av-stat {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.08);
}

.av-stat:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.av-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--blue);
  letter-spacing: 2px;
  line-height: 1;
}

.av-label {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 3px;
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 0.95rem;
  color: rgba(240, 248, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 18px;
}

.team-section {
  padding: 0 80px 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.team-card {
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 216, 0.25);
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-av {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue2), #002030);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  border: 2px solid rgba(0, 180, 216, 0.2);
}

.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gray);
}

.team-exp {
  font-size: 0.75rem;
  color: var(--blue);
  margin-top: 8px;
  font-weight: 600;
}

/* ===================== CONTACT ===================== */
.contact-wrap {
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.c-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 20px;
}

.c-info>p {
  font-size: 0.92rem;
  color: rgba(240, 248, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 40px;
}

.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.08);
  border-radius: 12px;
  transition: all 0.3s;
}

.c-item:hover {
  border-color: rgba(0, 180, 216, 0.25);
}

.c-ico {
  width: 44px;
  height: 44px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-item h4 {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.c-item p {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.c-form {
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.c-form::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08), transparent 70%);
  border-radius: 50%;
}

.c-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 28px;
  position: relative;
}

.f-group {
  margin-bottom: 18px;
}

.f-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240, 248, 255, 0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.f-group input,
.f-group textarea,
.f-group select {
  width: 100%;
  padding: 13px 18px;
  background: #060f18;
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s;
  appearance: none;
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.f-group textarea {
  resize: vertical;
  min-height: 90px;
}

.f-group select option {
  background: #060f18;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--bg);
  padding: 15px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.f-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.f-submit:hover::before {
  transform: translateX(100%);
}

.f-submit:hover {
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}

.f-success {
  display: none;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--blue);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-top: 14px;
  font-size: 0.9rem;
}

/* ===================== FOOTER ===================== */
footer {
  background: #020a10;
  border-top: 1px solid rgba(0, 180, 216, 0.08);
  padding: 50px 80px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.f-brand .logo {
  display: block;
  margin-bottom: 18px;
}

.f-brand p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 350px;
}

.f-col h5 {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
  position: relative;
  display: inline-block;
}

.f-col h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.f-col:hover h5::after {
  width: 40px;
}

.f-col ul {
  list-style: none;
}

.f-col ul li {
  margin-bottom: 14px;
}

.f-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.f-col ul li a::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.f-col ul li a:hover {
  color: var(--white);
  transform: translateX(14px);
}

.f-col ul li a:hover::before {
  background: var(--white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.f-col-contact-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(0, 180, 216, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  text-decoration: none !important;
  color: var(--white) !important;
  font-size: 0.9rem !important;
}

.f-col-contact-item:hover {
  background: rgba(0, 180, 216, 0.1);
  transform: translateY(-2px);
  border-color: rgba(0, 180, 216, 0.3);
}

.f-col-contact-item span {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 180, 216, 0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(240, 248, 255, 0.2);
}

/* FLOAT BUTTON */
.float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--red);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.4);
  animation: ripple 2s infinite;
  z-index: 990;
  text-decoration: none;
  transition: transform 0.3s;
  will-change: transform, box-shadow;
}

.float-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  margin-top: -2px;
  margin-left: -2px;
}

.float-btn:hover {
  transform: scale(1.1);
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.4);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 77, 46, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 46, 0);
  }
}

/* ===================== BRANDS STRIP ===================== */
.brands-strip {
  background: rgba(7, 24, 37, 0.8);
  border-top: 1px solid rgba(0, 180, 216, 0.08);
  border-bottom: 1px solid rgba(0, 180, 216, 0.08);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.brands-label {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.brands-scroll {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-pill {
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.12);
  color: rgba(240, 248, 255, 0.6);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  white-space: nowrap;
}

.brand-pill:hover {
  background: rgba(0, 180, 216, 0.15);
  color: var(--blue);
  border-color: rgba(0, 180, 216, 0.3);
}

/* ===================== HOW IT WORKS ===================== */
.how-section {
  padding: 90px 80px;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), rgba(0, 180, 216, 0.3), transparent);
}

.step-card {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num-wrap {
  width: 72px;
  height: 72px;
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step-card:hover .step-num-wrap {
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
  background: #0a2030;
}

.step-icon {
  font-size: 1.5rem;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===================== WHY US ===================== */
.why-section {
  padding: 90px 80px;
  background: var(--panel);
  border-top: 1px solid rgba(0, 180, 216, 0.06);
  border-bottom: 1px solid rgba(0, 180, 216, 0.06);
}

.why-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card-home {
  background: var(--bg);
  border: 1px solid rgba(0, 180, 216, 0.08);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}

.why-card-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.why-card-home:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 216, 0.2);
}

.why-card-home:hover::before {
  transform: scaleX(1);
}

.why-ico {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===================== PROBLEMS ===================== */
.problems-section {
  padding: 90px 80px;
  background: var(--bg);
  text-align: center;
}

.problems-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.problems-text {
  max-width: 900px;
  margin: 0 auto;
}

.problems-text p {
  margin: 0 auto 30px;
}

.problems-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.prob-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
  contain: layout style;
}

.prob-item:hover {
  border-color: rgba(0, 180, 216, 0.25);
  transform: translateY(-4px);
}

.prob-check {
  color: var(--blue);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.prob-item h4,
.prob-item-h {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.prob-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.problems-visual {
  width: 100%;
  background: linear-gradient(135deg, #001824 0%, #002a40 50%, #001824 100%);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 24px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.problems-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.pv-content-left,
.pv-content-right {
  position: relative;
  z-index: 1;
}

.pv-content-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pv-icon {
  font-size: 3.5rem;
}

.pv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.pv-desc {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 450px;
}

.pv-content-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pv-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 2px;
  color: var(--blue);
  line-height: 1;
  text-decoration: none;
  transition: box-shadow 0.3s, background-color 0.3s;
  border: 1.5px solid rgba(0, 180, 216, 0.4);
  border-radius: 10px;
  padding: 8px 22px;
  background: rgba(0, 180, 216, 0.06);
  display: inline-block;
  text-align: center;
}

.pv-phone:hover {
  background: rgba(0, 180, 216, 0.14);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

/* ===================== HOME TESTI ===================== */
.home-testi {
  padding: 90px 80px;
  background: var(--panel);
  border-top: 1px solid rgba(0, 180, 216, 0.06);
  text-align: center;
}

.home-testi .s-sub {
  margin-left: auto;
  margin-right: auto;
}

.home-testi-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  margin-top: 50px;
  padding-bottom: 20px;
}

/* Stilizare scrollbar pentru o vizibilitate mai bună pe PC */
.home-testi-grid::-webkit-scrollbar {
  height: 8px;
}

.home-testi-grid::-webkit-scrollbar-track {
  background: rgba(0, 180, 216, 0.05);
  border-radius: 4px;
}

.home-testi-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 180, 216, 0.4);
  border-radius: 4px;
}

.home-testi-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 180, 216, 0.6);
}

.ht-card {
  flex: 0 0 calc(33.333% - 13.33px);
  scroll-snap-align: start;
  text-align: left;
  background: var(--bg);
  border: 1px solid rgba(0, 180, 216, 0.07);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  contain: layout style;
}

.ht-card:hover {
  border-color: rgba(0, 180, 216, 0.2);
  transform: translateY(-4px);
}

.ht-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(0, 180, 216, 0.06);
  line-height: 1;
}

.ht-stars {
  color: #ffd700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.ht-text {
  font-size: 0.88rem;
  color: rgba(240, 248, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 18px;
}

.ht-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ht-av {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue2), #002030);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.ht-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
}

.ht-loc {
  font-size: 0.74rem;
  color: var(--gray);
}

/* ===================== FAQ ===================== */
.faq-section {
  padding: 90px 80px;
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 70px;
  align-items: center;
}

.faq-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(0, 180, 216, 0.25);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  transition: color 0.25s;
  user-select: none;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-arrow {
  font-size: 1.1rem;
  color: var(--blue);
  transition: transform 0.35s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-aside {
  background: linear-gradient(135deg, var(--panel), #0a2030);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: 22px;
  padding: 44px 38px;
  position: sticky;
  top: 90px;
}

.faq-aside h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.faq-aside p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.faq-aside-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}

.faq-aside-sub {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 28px;
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  padding: 90px 80px;
  background: linear-gradient(135deg, #001824 0%, #002a40 50%, #001824 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 180, 216, 0.1);
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 20px;
}

.cta-final h2 span {
  color: var(--blue);
}

.cta-final p {
  font-size: 1rem;
  color: rgba(240, 248, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}

.cta-phone-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 32px;
}

/* ===================== ZONE PILLS ===================== */
.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.zone-pill {
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  color: rgba(240, 248, 255, 0.5);
}

/* ===================== HAMBURGER MENU ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  z-index: 1100;
}

.hamburger:hover {
  background: rgba(0, 180, 216, 0.08);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(4, 13, 20, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 320px;
}

.nav-overlay .nav-links a {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 16px 32px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 216, 0.1);
  display: block;
}

.nav-overlay .nav-links a.active,
.nav-overlay .nav-links a:hover {
  background: rgba(0, 180, 216, 0.1);
  color: var(--white);
}

.nav-overlay .nav-links a.nav-cta {
  background: var(--red) !important;
  border-color: var(--red) !important;
  margin-top: 8px;
  font-size: 1.1rem;
}

.nav-overlay-phones {
  margin-top: 32px;
  text-align: center;
}

.nav-overlay-phones a {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  border: 1.5px solid rgba(0, 180, 216, 0.35);
  border-radius: 10px;
  padding: 6px 24px;
  background: rgba(0, 180, 216, 0.06);
  transition: background-color 0.25s, box-shadow 0.25s;
  text-align: center;
  min-width: 200px;
}

.nav-overlay-phones a:hover {
  background: rgba(0, 180, 216, 0.14);
  box-shadow: 0 0 16px rgba(0, 180, 216, 0.25);
}

.nav-overlay-phones small {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===================== RESPONSIVE ===================== */

/* ---- TABLET (≤900px) ---- */
@media (max-width: 900px) {

  /* cursor dezactivat pe touch */
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  /* nav */
  nav {
    padding: 0 16px;
    height: 60px;
  }

  .page-wrapper {
    padding-top: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 1.6rem;
  }

  /* hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 20px 60px;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-fridge {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5.5rem);
  }

  .hero-desc {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 36px;
  }

  .btn-glow,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* sections */
  .how-section,
  .why-section,
  .problems-section,
  .home-testi,
  .faq-section,
  .cta-final {
    padding: 50px 20px;
  }

  .brands-strip {
    padding: 16px 16px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .brands-scroll {
    flex-wrap: wrap;
  }

  .s-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .s-sub {
    margin-bottom: 36px;
  }

  /* steps */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 36px;
  }

  .steps-grid::before {
    display: none;
  }

  /* why */
  .why-grid-home {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .why-card-home {
    padding: 24px 18px;
  }

  /* problems */
  .problems-list {
    grid-template-columns: 1fr;
  }

  .problems-visual {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .pv-content-left {
    flex-direction: column;
    gap: 12px;
  }

  .pv-content-right {
    align-items: center;
  }

  /* testi */
  .home-testi-grid {
    gap: 14px;
  }

  .ht-card {
    flex: 0 0 calc(50% - 7px);
  }

  /* faq */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-aside {
    position: static;
  }

  /* services */
  .services-intro {
    padding: 50px 20px 0;
  }

  .services-list {
    grid-template-columns: 1fr;
    margin: 0 20px 40px;
    gap: 2px;
  }

  .free-banner {
    margin: 0 20px 40px;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .free-banner h3 {
    font-size: 1.8rem;
  }

  /* gallery */
  .gallery-intro {
    padding: 50px 20px 0;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 24px 20px 0;
  }

  .g-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .testi-wrap {
    padding: 40px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* about */
  .about-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 20px;
  }

  .about-text h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .team-section {
    padding: 0 20px 50px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* contact */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 20px;
  }

  .c-form {
    padding: 32px 24px;
  }

  /* footer */
  footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* float btn */
  .float-btn {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 16px;
  }
}

/* ---- MOBILE (≤600px) ---- */
@media (max-width: 600px) {

  /* hero */
  .hero {
    padding: 32px 16px 48px;
  }

  .hero-tag {
    font-size: 0.68rem;
    letter-spacing: 1px;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    margin-bottom: 18px;
  }

  .hero h1 .line3 {
    letter-spacing: 4px;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item {
    padding: 14px 10px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.62rem;
  }

  /* sections */
  .how-section,
  .why-section,
  .problems-section,
  .home-testi,
  .faq-section,
  .cta-final {
    padding: 40px 16px;
  }

  .brands-strip {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* steps */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* why */
  .why-grid-home {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card-home {
    padding: 22px 16px;
  }

  /* problems */
  .problems-list {
    gap: 10px;
  }

  .prob-item {
    padding: 14px 16px;
  }

  /* testi */
  .home-testi-grid {
    scroll-padding: 0;
  }

  .ht-card {
    flex: 0 0 85%;
    padding: 22px 18px;
    scroll-snap-align: center;
  }

  /* faq */
  .faq-q {
    padding: 16px 16px;
    font-size: 0.88rem;
  }

  .faq-a {
    padding: 0 16px;
  }

  .faq-item.open .faq-a {
    padding: 0 16px 16px;
  }

  .faq-aside {
    padding: 28px 20px;
  }

  /* cta final */
  .cta-phone-big {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-btns .btn-glow,
  .cta-btns .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* services */
  .services-intro {
    padding: 40px 16px 0;
  }

  .services-list {
    margin: 16px 16px 32px;
  }

  .srv-card {
    padding: 28px 20px;
  }

  .srv-num {
    font-size: 2.5rem;
  }

  .free-banner {
    margin: 0 16px 32px;
    padding: 28px 20px;
  }

  .free-banner h3 {
    font-size: 1.5rem;
  }

  .free-banner .btn-glow {
    width: 100%;
    text-align: center;
  }

  /* gallery */
  .gallery-intro {
    padding: 40px 16px 0;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    padding: 20px 16px 0;
    gap: 10px;
  }

  .g-item:nth-child(1) {
    grid-column: span 1;
  }

  .testi-wrap {
    padding: 32px 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .t-card {
    padding: 24px 18px;
  }

  /* about */
  .about-hero {
    padding: 40px 16px;
    gap: 24px;
  }

  .about-visual {
    padding: 32px 24px;
  }

  .av-num {
    font-size: 2.2rem;
  }

  .team-section {
    padding: 0 16px 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-card {
    padding: 24px 16px;
  }

  /* contact */
  .contact-wrap {
    padding: 40px 16px;
  }

  .c-form {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .c-form h3 {
    font-size: 1.4rem;
  }

  .f-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .c-info h2 {
    font-size: 2.2rem;
  }

  .c-item {
    padding: 14px;
    gap: 12px;
  }

  /* footer */
  footer {
    padding: 32px 16px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .f-brand {
    margin-bottom: 0;
  }

  /* forms – font size 16px minim pe iOS (previne zoom) */
  .f-group input,
  .f-group textarea,
  .f-group select {
    font-size: 16px;
  }
}

/* ---- VERY SMALL (≤380px) ---- */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:last-child {
    grid-column: span 2;
    border-right: none;
    border-top: 1px solid rgba(0, 180, 216, 0.15);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
}

/* ---- TOUCH DEVICE optimizations ---- */
@media (hover: none) {

  /* remove hover-only effects that don't work on touch */
  .srv-card:hover {
    background: var(--panel);
  }

  .g-item:hover {
    transform: none;
  }

  .why-card-home:hover {
    transform: none;
  }

  .prob-item:hover {
    transform: none;
  }

  .ht-card:hover {
    transform: none;
  }

  .t-card:hover {
    transform: none;
  }

  /* always show overlay on touch */
  .g-overlay {
    opacity: 0.92;
  }

  /* tap highlight */
  a,
  button,
  .srv-card,
  .faq-q {
    -webkit-tap-highlight-color: rgba(0, 180, 216, 0.15);
  }

  /* min touch target 48px */
  .btn-glow,
  .btn-outline,
  .f-submit,
  .float-btn,
  .faq-q,
  nav a,
  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .float-btn {
    min-height: auto;
    min-width: auto;
  }
}


/* ===================== HOW IT WORKS – REDESENARE ===================== */
.how-section {
  padding: 100px 80px;
  position: relative;
}

.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.steps-new {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Linie verticală centrală */
.steps-new::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--blue) 15%, var(--blue) 85%, transparent 100%);
  opacity: 0.25;
}

/* Bloc pas */
.step-new {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.step-new.step-new-alt {
  flex-direction: row-reverse;
}

/* Număr ornamental */
.step-new-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 180, 216, 0.18);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -2px;
  width: 100px;
  text-align: center;
}

/* Card principal */
.step-new-card {
  width: calc(50% - 60px);
  background: var(--panel);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  margin: 20px 0;
}

.step-new-card:hover {
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 180, 216, 0.1);
}

.step-new-card-final {
  border-color: rgba(0, 180, 216, 0.3);
  background: linear-gradient(135deg, var(--panel) 0%, rgba(0, 180, 216, 0.06) 100%);
}

/* Punct de conectare pe linie */
.step-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  z-index: 3;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.2), 0 0 12px rgba(0, 180, 216, 0.4);
}

/* Icon wrap */
.step-new-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-new-icon {
  font-size: 1.8rem;
  line-height: 1;
}

/* Label mic deasupra titlului */
.step-new-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
}

/* Titlu pas */
.step-new-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 0;
}

/* Descriere pas */
.step-new-desc {
  color: rgba(240, 248, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.step-new-desc strong {
  color: var(--white);
  font-weight: 600;
}

/* Link telefon în pasul 1 */
.step-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 180, 216, 0.4);
  transition: border-color 0.2s;
}

.step-link:hover {
  border-color: var(--blue);
}

/* Badge tag */
.step-new-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.25);
  color: var(--blue);
  width: fit-content;
  margin-top: 10px;
}

/* ---- RESPONSIVE HOW SECTION (mobil) ---- */
@media (max-width: 768px) {

  .how-section {
    padding: 50px 16px 60px;
  }

  .how-header {
    margin-bottom: 40px;
    text-align: left;
  }

  /* Linia verticală — mutată pe stânga */
  .steps-new::before {
    left: 22px;
    top: 0;
    bottom: 0;
    transform: none;
  }

  /* Toate stepurile — stack vertical cu spațiu stânga pentru linie */
  .step-new,
  .step-new.step-new-alt {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 54px;
    position: relative;
  }

  /* Numărul ornamental — mai mic, aliniat pe linie */
  .step-new-num {
    position: absolute;
    left: -4px;
    top: 16px;
    transform: none;
    font-size: 2.6rem;
    -webkit-text-stroke: 1px rgba(0, 180, 216, 0.35);
    width: 44px;
    text-align: center;
    line-height: 1;
  }

  /* Punctul albastru — aliniat pe linie stânga */
  .step-connector {
    position: absolute;
    left: 22px;
    top: 28px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
  }

  /* Card — full width, padding redus */
  .step-new-card {
    width: 100%;
    padding: 22px 18px;
    border-radius: 16px;
    margin: 8px 0 24px;
    gap: 10px;
  }

  /* Icon mai mic pe mobil */
  .step-new-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .step-new-icon {
    font-size: 1.4rem;
  }

  /* Titlu pas */
  .step-new-title {
    font-size: 1.25rem;
  }

  /* Descriere — font mai mic */
  .step-new-desc {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  /* Badge tag */
  .step-new-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
    margin-top: 6px;
  }

}


/* ---- LANDSCAPE MOBILE ---- */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 36px 30px;
  }

  .nav-overlay {
    padding-top: 60px;
    overflow-y: auto;
  }
}

/* ===================== PERFORMANCE: backdrop-filter off on mobile ===================== */
@media (max-width: 900px) {
  nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(4, 13, 20, 0.97);
  }

  .nav-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .sa-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ===================== PERFORMANCE: prefers-reduced-motion ===================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fridge-scene {
    animation: none;
    transform: rotateY(-8deg) rotateX(2deg);
  }

  .hero-glow,
  .fridge-glow {
    animation: none;
    opacity: 0.7;
  }

  .float-btn {
    animation: none;
  }

  .track-left,
  .track-right {
    animation: none;
  }

  .snowflakes {
    display: none;
  }

  .hero::before {
    animation: none;
  }

  .tag-dot {
    animation: none;
    opacity: 1;
  }

  .frost-item {
    animation: none;
    opacity: 0.9;
  }

  .click-hint {
    animation: none;
    opacity: 0.6;
  }
}