:root {
  --v1: #6a0dad;
  --v2: #7b2ff7;
  --b1: #1a8fe3;
  --b2: #00c6fb;
  --d1: #06060f;
  --d2: #10103a;
  --glow-v: 0 0 50px rgba(123, 47, 247, 0.6);
  --glow-b: 0 0 50px rgba(0, 198, 251, 0.5);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============ HAMBURGER MENU ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #d0d8f0;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: rgba(6, 6, 20, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 90px 28px 40px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid rgba(123, 47, 247, 0.25);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-link {
  display: block;
  padding: 14px 4px;
  color: #d0d8f0;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-link:hover {
  color: #00c6fb;
  padding-left: 10px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-overlay.open {
  opacity: 1;
}

@media (max-width: 1249px) {
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-overlay {
    display: block;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  background: var(--d1);
  color: #d0d8f0;
  overflow-x: hidden;
}

/* BG MESH */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 15% 25%,
      rgba(106, 13, 173, 0.45) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 75%,
      rgba(0, 198, 251, 0.3) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(26, 143, 227, 0.2) 0%,
      transparent 65%
    ),
    linear-gradient(135deg, #04040e 0%, #0b0b28 50%, #04040e 100%);
  animation: meshPulse 14s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  0% {
    opacity: 1;
    filter: hue-rotate(0deg);
  }
  50% {
    opacity: 0.85;
    filter: hue-rotate(18deg);
  }
  100% {
    opacity: 1;
    filter: hue-rotate(0deg);
  }
}

/* ROAMING ORBS */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  animation: orbFloat linear infinite;
}
.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(106, 13, 173, 0.25);
  top: -100px;
  left: -150px;
  animation-duration: 22s;
}
.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 198, 251, 0.18);
  bottom: -80px;
  right: -100px;
  animation-duration: 18s;
  animation-direction: reverse;
}
.orb3 {
  width: 300px;
  height: 300px;
  background: rgba(26, 143, 227, 0.15);
  top: 40%;
  left: 60%;
  animation-duration: 26s;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(60px, -40px) scale(1.15);
  }
  50% {
    transform: translate(30px, 70px) scale(0.9);
  }
  75% {
    transform: translate(-50px, 20px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* PARTICLES */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.4);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) scale(1.4);
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(6, 6, 15, 0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(123, 47, 247, 0.25);
  transition:
    border-color 0.4s,
    box-shadow 0.4s;
}
.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  background: linear-gradient(90deg, var(--v2), var(--b2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  animation: logoShimmer 4s ease-in-out infinite;
}
@keyframes logoShimmer {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(123, 47, 247, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(0, 198, 251, 0.75));
  }
}

.logo img {
  width: 100px;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  transition:
    color 0.3s,
    text-shadow 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--v2), var(--b2));
  transition: width 0.35s;
}
.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 198, 251, 0.55);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 10px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--v2), var(--b1));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: navCtaPulse 3s ease-in-out infinite;
}
.nav-cta:hover {
  transform: scale(1.07);
  box-shadow: var(--glow-v);
}
@keyframes navCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(123, 47, 247, 0.25);
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 198, 251, 0.6);
  }
}

/* PAGE WRAPPER */
.page {
  position: relative;
  z-index: 1;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 50px;
  border: 1px solid rgba(0, 198, 251, 0.45);
  color: var(--b2);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation:
    badgePop 1s ease both,
    badgeGlow 3s 1s ease-in-out infinite;
}
@keyframes badgePop {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 198, 251, 0);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(0, 198, 251, 0.4);
  }
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.02;
  background: linear-gradient(135deg, #fff 0%, var(--b2) 40%, var(--v2) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  animation: slideUp 0.9s 0.1s ease both;
  text-align: center;
}
.hero h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: #8899cc;
  margin-bottom: 28px;
  animation: slideUp 0.9s 0.25s ease both;
  text-align: center;
}
.hero p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 44px auto;
  animation: slideUp 0.9s 0.4s ease both;
  text-align: center;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: slideUp 0.9s 0.55s ease both;
}

.stat-strip {
  margin-top: 80px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding: 32px 44px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(123, 47, 247, 0.25);
  backdrop-filter: blur(12px);
  animation: slideUp 0.9s 0.7s ease both;
  max-width: 820px;
}
.stat {
  text-align: center;
}
.stat-val {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--b2), var(--v2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.72rem;
  color: #bbb;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* BUTTONS */
.btn-primary {
  padding: 16px 42px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--v2), var(--b1));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--b1), var(--v2));
  opacity: 0;
  transition: opacity 0.35s;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-v);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  padding: 16px 42px;
  border-radius: 50px;
  border: 2px solid rgba(123, 47, 247, 0.5);
  color: #a090ee;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.35s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--b2);
  color: #fff;
  background: rgba(0, 198, 251, 0.08);
  box-shadow: var(--glow-b);
}

/* SECTIONS */
section {
  position: relative;
  z-index: 1;
}
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 60px;
}
.section-wrap.full {
  max-width: none;
  padding: 110px 0;
}
.section-wrap.full .s-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--b2);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  background: linear-gradient(135deg, #fff, #8899cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.15;
  text-align: center;
}
.lead {
  font-size: 1rem;
  color: #ccc;
  /* max-width:880px;  */
  line-height: 1.75;
  margin-bottom: 36px;
  text-align: center;
}

.divider {
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 47, 247, 0.35),
    rgba(0, 198, 251, 0.35),
    transparent
  );
}

/* STRIPE CARDS */
.stripe-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.stripe-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(123, 47, 247, 0.2);
  display: flex;
  min-height: 190px;
  transition:
    transform 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
  position: relative;
}
.stripe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--v2), var(--b2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s;
}
.stripe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(123, 47, 247, 0.4);
  border-color: rgba(0, 198, 251, 0.35);
}
.stripe-card:hover::before {
  transform: scaleX(1);
}

.stripe-card .content {
  padding: 28px 26px 30px;
  flex: 1 1 auto;
  max-width: 62%;
}
.stripe-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #dde8ff;
  margin-bottom: 10px;
}
.stripe-card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.65;
}

.stripe-card .visual {
  width: 38%;
  min-width: 170px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
}
.stripe-card .visual::before {
  content: "";
  position: absolute;
  left: -32px;
  top: -20%;
  width: 70px;
  height: 140%;
  background: rgba(6, 6, 15, 0.7);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
.stripe-card .visual::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: inherit;
  transform: skewX(-18deg) translateX(34px);
  transform-origin: right center;
}
.visual.purple {
  background: linear-gradient(
    135deg,
    rgba(123, 47, 247, 0.15) 0%,
    rgba(106, 13, 173, 0.9) 60%,
    rgba(145, 65, 255, 0.98) 100%
  );
}
.visual.blue {
  background: linear-gradient(
    135deg,
    rgba(26, 143, 227, 0.15) 0%,
    rgba(0, 100, 210, 0.9) 65%,
    rgba(0, 198, 251, 0.98) 100%
  );
}
.visual.teal {
  background: linear-gradient(
    135deg,
    rgba(0, 198, 251, 0.15) 0%,
    rgba(0, 150, 200, 0.9) 60%,
    rgba(0, 220, 200, 0.98) 100%
  );
}
.stripe-card .shine {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  mix-blend-mode: screen;
}

.stripe-card .modifiers img {
  width: 350px;
}

.stripe-card .matrix img {
  width: 210px;
  height: 188px;
}

.stripe-card .fillers img {
  width: 350px;
}

.extrusion img {
  width: 198px;
  margin-top: 26px;
}

.fluid img {
  width: 350px;
}

.termofoam img {
  width: 243px;
  height: 187px;
}

.shoes img {
  width: 192px;
}

.suiz img {
  width: 198px;
  height: 185px;
}

.bags img {
  width: 230px;
  height: 185px;
}

.stripe-card.center {
  grid-column: 1/-1;
  max-width: 640px;
  margin: 0 auto;
}

.card-icon-sm {
  position: relative;
  z-index: 3;
  font-size: 6.4rem;
  animation: iconFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.4));
}
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translateY(-12px) rotate(5deg) scale(1.15);
  }
}
.stripe-card:nth-child(2) .card-icon-sm {
  animation-delay: -1.7s;
}
.stripe-card:nth-child(3) .card-icon-sm {
  animation-delay: -3.4s;
}

/* COMPARE */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
.compare {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 34px;
  border: 1px solid rgba(123, 47, 247, 0.2);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.compare:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(123, 47, 247, 0.3);
}
.compare .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.tag.basic {
  background: rgba(255, 255, 255, 0.07);
  color: #aabbcc;
}
.tag.tech {
  background: linear-gradient(
    90deg,
    rgba(123, 47, 247, 0.25),
    rgba(0, 198, 251, 0.2)
  );
  color: var(--b2);
  border: 1px solid rgba(0, 198, 251, 0.3);
}
.compare h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #dde8ff;
  margin-bottom: 8px;
}
.compare p {
  font-size: 0.88rem;
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.6;
}
.note {
  font-size: 0.75rem;
  color: #445566;
  margin-top: 18px;
}
.metric {
  margin: 16px 0;
}
.metric-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #bbb;
  margin-bottom: 10px;
}
.track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.bar {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  animation: fill 1.6s 0.4s ease forwards;
}
.bar.basic {
  background: linear-gradient(
    90deg,
    rgba(160, 170, 200, 0.4),
    rgba(160, 170, 200, 0.85)
  );
}
.bar.tech {
  background: linear-gradient(90deg, var(--v2), var(--b2));
  box-shadow: 0 0 12px rgba(0, 198, 251, 0.5);
}
@keyframes fill {
  to {
    width: var(--w);
  }
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 28px;
}
.photo-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(123, 47, 247, 0.2);
  transition:
    transform 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
  position: relative;
}
.photo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--v2), var(--b2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s;
  z-index: 2;
}
.photo-card:hover {
  transform: translateY(-11px) scale(1.02);
  box-shadow: 0 34px 90px rgba(0, 198, 251, 0.35);
  border-color: rgba(0, 198, 251, 0.35);
}
.photo-card:hover::before {
  transform: scaleX(1);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: saturate(0.75) brightness(0.82);
  transition:
    filter 0.4s,
    transform 0.5s;
}
.photo-card:hover img {
  filter: saturate(1.2) brightness(1.05);
  transform: scale(1.07);
}

.photo-card:hover .photo-overlay {
  transform: translateY(0);
  opacity: 1;
}
.photo-meta {
  padding: 18px 20px 24px;
}
.photo-meta h3 {
  color: #dde8ff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.photo-meta p {
  color: #ccc;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* FAQ */
.faq {
  margin-top: 20px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(123, 47, 247, 0.2);
  border-radius: 18px;
  padding: 20px 22px;
  margin: 16px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
  align-items: center;
}
.faq-item:hover {
  border-color: rgba(0, 198, 251, 0.4);
  box-shadow: 0 14px 50px rgba(0, 198, 251, 0.15);
  transform: translateX(7px);
}
.faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--v2), var(--b1));
  flex: 0 0 auto;
  transition:
    transform 0.4s,
    box-shadow 0.35s;
  box-shadow: 0 4px 18px rgba(123, 47, 247, 0.45);
}
.faq-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.6s;
}
.faq-toggle:hover {
  box-shadow: 0 0 24px rgba(0, 198, 251, 0.65);
  transform: scale(1.14) rotate(5deg);
}
.faq-q {
  flex: 1;
}
.faq-q h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ccd8ff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 260px;
}
.faq-item.open .faq-toggle {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  box-shadow: 0 0 28px rgba(0, 198, 251, 0.8);
}
.faq-item.open .faq-toggle svg {
  transform: rotate(360deg);
}

/* OFFER */
.brand-bg {
  border-radius: 28px;
  padding: 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #10103a 0%, #2a0a6a 50%, #0a2060 100%);
  border: 1px solid rgba(123, 47, 247, 0.4);
}
.brand-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(123, 47, 247, 0.4),
      transparent 55%
    ),
    radial-gradient(circle at 70% 60%, rgba(0, 198, 251, 0.3), transparent 55%);
  animation: brandGlow 5s ease-in-out infinite alternate;
}
@keyframes brandGlow {
  0% {
    opacity: 0.55;
  }
  100% {
    opacity: 1;
  }
}
.brand-content {
  position: relative;
  z-index: 1;
}
.brand-bg h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(135deg, #fff 0%, var(--b2) 50%, var(--v2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1.15;
}
.brand-bg p {
  color: rgba(200, 210, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--b2);
  margin-bottom: 14px;
}

/* ============ CONTACT FORM ============ */
.form-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(123, 47, 247, 0.28);
  border-radius: 28px;
  padding: 56px 56px 52px;
  backdrop-filter: blur(14px);
  transition:
    border-color 0.4s,
    box-shadow 0.4s;
}
.form-card:hover {
  border-color: rgba(0, 198, 251, 0.35);
  box-shadow: 0 30px 90px rgba(123, 47, 247, 0.2);
}
.form-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  animation: orbFloat linear infinite;
}
.form-glow-tl {
  background: rgba(123, 47, 247, 0.22);
  top: -80px;
  left: -80px;
  animation-duration: 14s;
}
.form-glow-br {
  background: rgba(0, 198, 251, 0.15);
  bottom: -80px;
  right: -80px;
  animation-duration: 18s;
  animation-direction: reverse;
}
.form-inner {
  position: relative;
  z-index: 1;
}
.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.textarea-wrap {
  align-items: flex-start;
}
.field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: #556677;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
  pointer-events: none;
  z-index: 2;
  fill: currentColor;
  color: white;
}
.field-icon-ta {
  top: 16px;
  transform: none;
}
.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 15px 16px 15px 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(123, 47, 247, 0.25);
  border-radius: 14px;
  color: #d0d8f0;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  resize: none;
  outline: none;
}
.input-wrap textarea {
  padding-top: 14px;
  line-height: 1.6;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #334455;
}
.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--b2);
  background: rgba(0, 198, 251, 0.06);
  box-shadow:
    0 0 0 3px rgba(0, 198, 251, 0.15),
    0 0 20px rgba(0, 198, 251, 0.1);
}
.input-wrap:focus-within .field-icon {
  stroke: var(--b2);
}
.input-wrap input.error,
.input-wrap textarea.error {
  border-color: #ff4d6d !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.18) !important;
}
.field-err {
  font-size: 0.78rem;
  color: #ff6b87;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.field-err.show {
  opacity: 1;
  transform: translateY(0);
}
.form-footer-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.8rem;
  color: #445566;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--v2), var(--b1));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  animation: navCtaPulse 3s ease-in-out infinite;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--b1), var(--v2));
  opacity: 0;
  transition: opacity 0.35s;
}
.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-v);
}
.btn-submit:hover::before {
  opacity: 1;
}
.btn-submit-text,
.btn-submit-arrow,
.btn-submit-spinner {
  position: relative;
  z-index: 1;
}
.btn-submit-arrow {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}
.btn-submit:hover .btn-submit-arrow {
  transform: translateX(5px);
}
.btn-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-submit-spinner {
  display: block;
}
.btn-submit.loading .btn-submit-arrow {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.input-wrap input::placeholder {
  color: #bbb;
}

.input-wrap textarea::placeholder {
  color: #bbb;
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 14, 0.88);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: linear-gradient(145deg, #12123a, #1a0a3a);
  border: 1px solid rgba(0, 198, 251, 0.35);
  border-radius: 28px;
  padding: 56px 52px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  position: relative;
  overflow: hidden;
  transform: scale(0.82) translateY(24px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 40px 100px rgba(0, 198, 251, 0.2),
    0 0 0 1px rgba(123, 47, 247, 0.2);
}
.modal-overlay.show .modal-box {
  transform: scale(1) translateY(0);
}
.modal-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(0, 198, 251, 0.15),
    transparent 65%
  );
  animation: brandGlow 4s ease-in-out infinite alternate;
}
.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--v2), var(--b2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 44px rgba(0, 198, 251, 0.55);
  animation: modalIconPop 0.5s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.modal-icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: drawCheck 0.5s 0.4s ease forwards;
}
@keyframes modalIconPop {
  from {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}
.modal-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--b2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.modal-text {
  color: #7788aa;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.modal-close {
  padding: 13px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--v2), var(--b1));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  z-index: 1;
}
.modal-close:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-b);
}
@media (max-width: 768px) {
  .field-group {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 36px 24px;
  }
  .form-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* FOOTER */
footer {
  padding: 52px 60px;
  text-align: center;
  color: #556688;
  font-size: 0.88rem;
  border-top: 1px solid rgba(123, 47, 247, 0.2);
  background: rgba(6, 6, 15, 0.85);
}
footer span {
  background: linear-gradient(90deg, var(--v2), var(--b2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(44px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1250px) {
  .nav-links {
    display: none;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  nav {
    padding: 16px 24px;
  }
 
  .hero {
    padding: 100px 24px 60px;
  }
  .section-wrap {
    padding: 80px 24px;
  }
  .section-wrap.full .s-inner {
    padding: 0 24px;
  }
  .stripe-cards {
    grid-template-columns: 1fr;
  }
  .stripe-card .content {
    max-width: none;
  }
  .stripe-card {
    max-width: 700px;
    margin: 0 auto;
  }
  .stripe-card .visual {
    width: 36%;
    min-width: 130px;
  }
  .stripe-card.center {
    max-width: 700px;
  }
  .compare-wrap {
    grid-template-columns: 1fr;
  }
  .brand-bg {
    padding: 52px 28px;
  }
  .stat-strip {
    gap: 28px;
    padding: 24px;
  }
  footer {
    padding: 40px 24px;
  }

  .stripe-card .matrix img {
    width: 279px;
    height: 188px;
  }

  .stripe-card .modifiers img {
    width: 350px;
  }

  .stripe-card .fillers img {
    width: 350px;
  }
}
:focus {
  outline: none;
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 1500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--v2), var(--b1));
  box-shadow: 0 4px 24px rgba(123, 47, 247, 0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition:
    opacity 0.4s,
    transform 0.4s,
    box-shadow 0.3s;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.scroll-top:hover {
  box-shadow: var(--glow-v);
  transform: translateY(-4px) scale(1.1);
}
.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 580px) {
.mobile-overlay {
  position: static;
}

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 120px 24px 24px 24px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .hero h2 {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 22px;
  }

  .hero-badge {
    font-size: 0.42rem;
    margin-bottom: 10px;
  }

  .stat-strip {
    margin-top: 40px;
    display: grid;
    grid-template-columns: auto auto;
  }

  .hero-actions {
    width: 275px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
  .stripe-card {
    display: flex;
    flex-direction: column-reverse;
    max-width: 280px;
    margin: 0 auto;
  }

  .stripe-card .visual {
    width: 100%;
  }

  .stripe-cards {
    grid-template-columns: 300px;
    justify-content: center;
  }

  .stripe-card .modifiers img {
    width: 100%;
    height: 185px;
  }

  .section-wrap.full {
    padding: 30px 0;
  }

  .eyebrow {
    font-size: 0.62rem;
  }

  .lead.reveal {
    font-size: 17px;
    line-height: 1.3;
  }

  .section-wrap {
    padding: 30px 24px;
  }

  .extrusion img {
    width: 278px;
    margin-top: 84px;
  }

  .termofoam img {
    width: 300px;
  }

  .suiz img {
    width: 278px;
    height: 187px;
  }

  .bags img {
    width: 298px;
    height: 187px;
  }

  .form-card {
    padding: 20px 12px;
  }

  .field {
    gap: 3px;
  }
}
