/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --color-bg-dark: #03060f;
  --color-bg-navy: #080d1e;
  --color-teal: #00c8b4;
  --color-teal-rgb: 0, 200, 180;
  --color-gold: #c9a84c;
  --color-gold-rgb: 201, 168, 76;
  --color-white: #ffffff;
  --color-silver: #a0a8b8;
  --color-muted: #6b7280;
  --color-glass: rgba(255, 255, 255, 0.04);
  --color-glass-border: rgba(255, 255, 255, 0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --mouse-x: 50%;
  --mouse-y: 50%;

  /* Product showcase dynamic colors */
  --showcase-from: #1a3a5c;
  --showcase-to: #87ceeb;
  --showcase-accent: #3498db;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  /*color: var(--color-white);
  background: var(--color-bg-dark);*/
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a, button, input, textarea, select { cursor: none; }

@media (max-width: 768px) {
  body, a, button, input, textarea, select { cursor: auto; }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Lock body scroll and pause all page animations while loading */
body.loading {
  overflow: hidden;
}

body.loading .navbar,
body.loading .hero,
body.loading .hero-text,
body.loading .hero-products,
body.loading .hero-badge,
body.loading .hero-headline,
body.loading .hero-subheadline,
body.loading .hero-ctas,
body.loading .hero-products-img,
body.loading .navbar-top-bar,
body.loading .light-rays {
  animation: none !important;
  opacity: 0 !important;
}

/* Once preloader is done, replay all hero entrance animations */
body:not(.loading) .navbar-top-bar {
  animation: fadeInDown 0.6s 0.1s ease both;
}

body:not(.loading) .navbar {
  animation: fadeInDown 0.8s 0.2s ease both;
}

body:not(.loading) .hero-products-img {
  animation: heroProductsIn 1.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

body:not(.loading) .hero-badge {
  animation: badgeSlideIn 0.8s 0.8s ease both;
}

body:not(.loading) .hero-headline {
  animation: shimmerText 5s linear infinite, heroHeadlineIn 1s 1s ease both;
}

body:not(.loading) .hero-subheadline {
  animation: fadeInUp 0.8s 1.2s ease both;
}

body:not(.loading) .hero-ctas {
  animation: fadeInUp 0.8s 1.4s ease both;
}

body:not(.loading) .light-rays {
  animation: fadeInUp 1s 0.5s ease both;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Logo + rings wrapper — keeps them stacked on top of each other */
.preloader-logo-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

/* Animated rings — all centered in the wrapper */
.preloader-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader-ring-1 {
  width: 120px;
  height: 120px;
  border-color: rgba(var(--color-teal-rgb), 0.12);
  animation: preloaderSpin 4s linear infinite;
  border-top-color: var(--color-teal);
}

.preloader-ring-2 {
  width: 150px;
  height: 150px;
  border-color: rgba(var(--color-gold-rgb), 0.08);
  animation: preloaderSpin 6s linear infinite reverse;
  border-bottom-color: var(--color-gold);
}

.preloader-ring-3 {
  width: 180px;
  height: 180px;
  border-color: rgba(var(--color-teal-rgb), 0.05);
  animation: preloaderSpin 8s linear infinite;
  border-left-color: rgba(var(--color-teal-rgb), 0.3);
}

@keyframes preloaderSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Logo — sits in the center of the rings */
.preloader-logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  animation: preloaderLogoIn 0.8s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.preloader-logo-img {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(var(--color-teal-rgb), 0.3));
}

@keyframes preloaderLogoIn {
  to { opacity: 1; transform: scale(1); }
}

/* Tagline — below the ring area */
.preloader-text {
  margin-bottom: 30px;
}

.preloader-tagline {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-silver);
  opacity: 0;
  animation: preloaderFadeIn 0.6s 0.8s ease forwards;
  display: block;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

/* Progress bar — below tagline */
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold));
  border-radius: 2px;
  transition: width 0.15s ease;
}

/* Percentage — below progress bar */
.preloader-percent {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  opacity: 0;
  animation: preloaderFadeIn 0.5s 1s ease forwards;
}

/* Floating particles in preloader */
.preloader-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.preloader-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(var(--color-teal-rgb), 0.4);
  border-radius: 50%;
  animation: preloaderParticleFloat linear infinite;
}

@keyframes preloaderParticleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}

/* Hidden SVG filters */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ========================================
   SHARED / UTILITY
   ======================================== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--color-white);
  text-align: left;
}

.title-accent {
  width: 60px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.title-accent.center {
  margin-left: auto;
  margin-right: auto;
}

.section-title + .title-accent.center {
  text-align: center;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-bg-dark);
  border-color: var(--color-teal);
}

.btn-primary:hover {
  transform: scale(1.05);
  border-color: var(--color-gold);
  box-shadow: 0 0 25px rgba(var(--color-gold-rgb), 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-bg-dark);
}

.btn-teal {
  background: var(--color-teal);
  color: var(--color-bg-dark);
  border-color: var(--color-teal);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 12px 28px;
  border-radius: 4px;
}

.btn-teal:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(var(--color-teal-rgb), 0.4);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  border-color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 12px 28px;
  border-radius: 4px;
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.5);
}

/* ========================================
   1. NAVBAR
   ======================================== */

/* --- Top bar --- */
.top-bar {
  background: linear-gradient(90deg, rgba(0, 200, 180, 0.06) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.4) 70%, rgba(201, 168, 76, 0.06) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--color-silver);
  animation: fadeInDown 0.6s ease;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-welcome {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-teal);
  font-size: 0.7rem;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-links a {
  color: var(--color-silver);
  font-size: 0.72rem;
  transition: color 0.3s ease;
}

.top-bar-links a:hover {
  color: var(--color-teal);
}

.top-bar-sep {
  opacity: 0.3;
}

.top-bar-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  cursor: pointer;
}

.top-bar-social {
  display: flex;
  gap: 10px;
}

.top-bar-social a {
  color: var(--color-silver);
  display: flex;
  align-items: center;
}

.top-bar-social a:hover {
  color: var(--color-teal);
}

/* --- Main navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  animation: fadeInDown 0.8s ease;
  background-color: #000;
}

.navbar.scrolled .navbar-main {
  background: rgba(3, 6, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled .navbar-nav {
  background: rgba(3, 6, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--color-teal-rgb), 0.3);
  box-shadow: 0 1px 15px rgba(var(--color-teal-rgb), 0.1);
}

.navbar.scrolled .top-bar {
  display: none;
}

.navbar-main {
  background: linear-gradient(180deg, rgba(8, 13, 30, 0.97) 0%, rgba(3, 6, 15, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.navbar-main-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo — keep left, push everything else right */
.navbar-logo {
  margin-right: auto;
}

.navbar-logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 3px;
  color: var(--color-white);
  line-height: 1;
  background: linear-gradient(135deg, var(--color-white) 60%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text-dark {
  background: linear-gradient(135deg, var(--color-bg-dark) 60%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-silver);
  letter-spacing: 0.5px;
  font-weight: 300;
  margin-top: 2px;
}

.logo-tagline-dark {
  color: #575757 !important;
}

/* Search */
.navbar-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
  transition: all 0.3s ease;
}

.navbar-search:focus-within {
  border-color: rgba(var(--color-teal-rgb), 0.5);
  box-shadow: 0 0 15px rgba(var(--color-teal-rgb), 0.08);
  background: rgba(255, 255, 255, 0.07);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 14px;
  color: var(--color-white);
  font-size: 0.85rem;
}

.search-input::placeholder {
  color: var(--color-muted);
}

.search-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.search-category-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-category {
  background: transparent;
  border: none;
  color: var(--color-silver);
  font-size: 0.8rem;
  padding: 0 28px 0 12px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  min-width: 130px;
}

.search-category-wrap::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-silver);
  pointer-events: none;
}

.search-category option {
  background: var(--color-bg-navy);
  color: var(--color-white);
}

.search-btn {
  background: var(--color-teal);
  color: var(--color-bg-dark);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.search-btn:hover {
  background: var(--color-gold);
}

.search-btn:hover::before {
  left: 100%;
}

/* Phone */
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(var(--color-teal-rgb), 0.1);
  background: rgba(var(--color-teal-rgb), 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

.navbar-phone:hover {
  border-color: rgba(var(--color-teal-rgb), 0.25);
  background: rgba(var(--color-teal-rgb), 0.06);
}

.phone-icon-wrap {
  color: var(--color-teal);
  display: flex;
  align-items: center;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--color-silver);
  letter-spacing: 1px;
  font-weight: 600;
}

.phone-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

/* Navbar icons */
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icon {
  color: var(--color-silver);
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 6px;
  border-radius: 50%;
}

.nav-icon:not(.disabled):hover {
  color: var(--color-teal);
  background: rgba(var(--color-teal-rgb), 0.08);
  transform: translateY(-1px);
}

.cart-icon-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--color-teal);
  color: var(--color-bg-dark);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(var(--color-teal-rgb), 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 6px rgba(var(--color-teal-rgb), 0.3); }
  50% { box-shadow: 0 0 12px rgba(var(--color-teal-rgb), 0.6); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav links bar */
.navbar-nav {
  background: linear-gradient(180deg, rgba(8, 13, 30, 0.95) 0%, rgba(3, 6, 15, 0.9) 100%);
  border-bottom: 1px solid rgba(var(--color-teal-rgb), 0.08);
  transition: all 0.4s ease;
}

.navbar-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Base nav link styling */
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--color-silver);
  padding: 14px 20px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.nav-link:hover {
  color: var(--color-teal);
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown chevron */
.dropdown-chevron {
  transition: transform 0.3s ease;
  opacity: 0.5;
  flex-shrink: 0;
}

/* Dropdown container */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--color-teal);
}

.nav-dropdown:hover > .nav-link {
  color: var(--color-teal);
}

.nav-dropdown:hover > .nav-link::before {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  padding-top: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu-inner {
  background: linear-gradient(135deg, rgba(8, 13, 30, 0.98) 0%, rgba(3, 6, 15, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--color-teal-rgb), 0.12);
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--color-teal-rgb), 0.05);
  overflow: hidden;
}

.dropdown-menu-inner::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 30px;
  width: 10px;
  height: 10px;
  background: rgba(8, 13, 30, 0.98);
  border-left: 1px solid rgba(var(--color-teal-rgb), 0.12);
  border-top: 1px solid rgba(var(--color-teal-rgb), 0.12);
  transform: rotate(45deg);
  z-index: 1;
}

.dropdown-menu-inner a {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-silver);
  transition: all 0.25s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.dropdown-menu-inner a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--color-teal);
  transform: scaleY(0);
  transition: transform 0.25s ease;
  border-radius: 0 2px 2px 0;
}

.dropdown-menu-inner a:hover {
  color: var(--color-white);
  background: rgba(var(--color-teal-rgb), 0.06);
  padding-left: 30px;
}

.dropdown-menu-inner a:hover::before {
  transform: scaleY(1);
}

/* ========================================
   2. HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #050a18 40%, var(--color-bg-navy) 100%);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 30px;
}

/* Radial teal glow at top */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 200, 180, 0.15) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

/* Secondary bottom glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40%;
  background: radial-gradient(ellipse at 50% 100%, rgba(var(--color-gold-rgb), 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

/* Hero particles canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: orbFloat 8s ease-in-out infinite, orbFadeIn 2s 0.5s ease forwards;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--color-teal-rgb), 0.12) 0%, transparent 70%);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.08) 0%, transparent 70%);
  top: 20%;
  right: -5%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100, 130, 255, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-delay: 4s;
  animation-duration: 12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.1); }
  50% { transform: translate(-20px, 15px) scale(0.95); }
  75% { transform: translate(15px, 25px) scale(1.05); }
}

@keyframes orbFadeIn {
  to { opacity: 1; }
}

/* Horizontal glow line behind products */
.hero-glow-line {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-teal-rgb), 0.5), rgba(var(--color-gold-rgb), 0.3), rgba(var(--color-teal-rgb), 0.5), transparent);
  z-index: 4;
  opacity: 0;
  animation: glowLineIn 1.5s 1.2s ease forwards;
  box-shadow: 0 0 20px rgba(var(--color-teal-rgb), 0.3), 0 0 60px rgba(var(--color-teal-rgb), 0.1);
}

.hero-glow-line::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-teal-rgb), 0.08), rgba(var(--color-gold-rgb), 0.05), rgba(var(--color-teal-rgb), 0.08), transparent);
  filter: blur(10px);
}

@keyframes glowLineIn {
  from { opacity: 0; width: 0; }
  to { opacity: 1; width: 80%; }
}

/* Noise overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  filter: url(#noiseFilter);
  pointer-events: none;
  z-index: 1;
}

/* ---- Light Rays ---- */
.light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  /* JS will update --ray-x for cursor tracking */
  --ray-x: 0;
}

/* Ambient glow behind the rays */
.rays-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 55%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(200, 210, 220, 0.04) 30%,
    transparent 70%
  );
  opacity: 0;
  animation: raysGlowIn 1.5s 0.5s ease forwards;
}

/* Individual ray beam */
.ray {
  position: absolute;
  top: -5%;
  left: 50%;
  height: 110%;
  transform-origin: 50% 0%;
  opacity: 0;
  animation: rayFadeIn 1.8s ease forwards;
  /* Each ray gets its own width, angle, opacity via individual rules below */
}

/* Ray inner gradient — bright at top, fading down */
.ray::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(220, 230, 240, 0.06) 15%,
    rgba(200, 220, 235, 0.03) 35%,
    rgba(180, 200, 220, 0.01) 55%,
    transparent 80%
  );
}

/* Soft edge blur on each ray */
.ray::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 50%
  );
  filter: blur(8px);
}

/* ---- Individual ray positions & angles ---- */
/* Center-left cluster */
.ray-1 {
  width: 45px;
  margin-left: -120px;
  transform: rotate(-18deg) translateX(calc(var(--ray-x) * 12px));
  animation-delay: 0.2s;
  opacity: 0;
}

.ray-2 {
  width: 65px;
  margin-left: -70px;
  transform: rotate(-10deg) translateX(calc(var(--ray-x) * 10px));
  animation-delay: 0.35s;
}
.ray-2::before {
  opacity: 0.8;
}

.ray-3 {
  width: 40px;
  margin-left: -25px;
  transform: rotate(-4deg) translateX(calc(var(--ray-x) * 8px));
  animation-delay: 0.5s;
}

/* Center rays — brightest */
.ray-4 {
  width: 80px;
  margin-left: -40px;
  transform: rotate(0deg) translateX(calc(var(--ray-x) * 6px));
  animation-delay: 0.1s;
}
.ray-4::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(230, 240, 250, 0.08) 15%,
    rgba(200, 220, 240, 0.04) 35%,
    transparent 65%
  );
}

.ray-5 {
  width: 55px;
  margin-left: 10px;
  transform: rotate(5deg) translateX(calc(var(--ray-x) * 7px));
  animation-delay: 0.45s;
}

/* Right cluster */
.ray-6 {
  width: 70px;
  margin-left: 55px;
  transform: rotate(11deg) translateX(calc(var(--ray-x) * 9px));
  animation-delay: 0.3s;
}
.ray-6::before {
  opacity: 0.7;
}

.ray-7 {
  width: 35px;
  margin-left: 115px;
  transform: rotate(17deg) translateX(calc(var(--ray-x) * 11px));
  animation-delay: 0.55s;
}

/* Outer faint rays */
.ray-8 {
  width: 30px;
  margin-left: -180px;
  transform: rotate(-25deg) translateX(calc(var(--ray-x) * 14px));
  animation-delay: 0.6s;
}
.ray-8::before {
  opacity: 0.4;
}

.ray-9 {
  width: 30px;
  margin-left: 170px;
  transform: rotate(24deg) translateX(calc(var(--ray-x) * 14px));
  animation-delay: 0.65s;
}
.ray-9::before {
  opacity: 0.4;
}

/* ---- Ray pulsing / breathing per-ray ---- */
.ray-1 { animation: rayFadeIn 1.8s 0.2s ease forwards, rayPulse1 6s 2s ease-in-out infinite; }
.ray-2 { animation: rayFadeIn 1.8s 0.35s ease forwards, rayPulse2 7s 2.2s ease-in-out infinite; }
.ray-3 { animation: rayFadeIn 1.8s 0.5s ease forwards, rayPulse1 5.5s 2.4s ease-in-out infinite; }
.ray-4 { animation: rayFadeIn 1.8s 0.1s ease forwards, rayPulse3 8s 2s ease-in-out infinite; }
.ray-5 { animation: rayFadeIn 1.8s 0.45s ease forwards, rayPulse2 6.5s 2.3s ease-in-out infinite; }
.ray-6 { animation: rayFadeIn 1.8s 0.3s ease forwards, rayPulse1 7.5s 2.1s ease-in-out infinite; }
.ray-7 { animation: rayFadeIn 1.8s 0.55s ease forwards, rayPulse3 5s 2.5s ease-in-out infinite; }
.ray-8 { animation: rayFadeIn 1.8s 0.6s ease forwards, rayPulse2 8s 2.6s ease-in-out infinite; }
.ray-9 { animation: rayFadeIn 1.8s 0.65s ease forwards, rayPulse1 7s 2.7s ease-in-out infinite; }

/* Hero product display */
.hero-products {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 10px;
  max-width: 950px;
  width: 100%;
  opacity: 0;
  animation: heroProductsIn 1.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-products-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6)) drop-shadow(0 5px 15px rgba(var(--color-teal-rgb), 0.1));
  transition: transform 0.15s ease-out, filter 0.6s ease;
  will-change: transform;
}

/* Product reflection */
.hero-products-reflection {
  position: relative;
  margin-top: -10px;
  transform: scaleY(-1);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
  height: 40px;
  overflow: hidden;
  opacity: 0.4;
}

.reflection-img {
  filter: blur(2px) drop-shadow(0 0 0 transparent) !important;
}

@keyframes heroProductsIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-product-box {
  width: clamp(80px, 12vw, 150px);
  perspective: 800px;
  opacity: 0;
  animation: floatBoxIn 0.8s ease forwards;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-product-box img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.hero-product-box .product-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.hero-product-box:hover img,
.hero-product-box:hover .product-placeholder {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

/* Arc positioning (handled inline by JS, these are visual fallbacks) */
.hero-product-box:nth-child(1) { transform: translateY(20px) rotate(-5deg); animation-delay: 0.1s; }
.hero-product-box:nth-child(2) { transform: translateY(10px) rotate(-3deg); animation-delay: 0.2s; }
.hero-product-box:nth-child(3) { transform: translateY(3px) rotate(-1deg); animation-delay: 0.3s; }
.hero-product-box:nth-child(4) { transform: translateY(0px) rotate(0deg); animation-delay: 0.4s; }
.hero-product-box:nth-child(5) { transform: translateY(3px) rotate(1deg); animation-delay: 0.5s; }
.hero-product-box:nth-child(6) { transform: translateY(10px) rotate(3deg); animation-delay: 0.6s; }
.hero-product-box:nth-child(7) { transform: translateY(20px) rotate(5deg); animation-delay: 0.7s; }

/* Floating bob animation (applied via JS after entrance) */
.hero-product-box.floating {
  animation: floatBox 3s ease-in-out infinite;
}

.hero-product-box:nth-child(1).floating { animation-delay: 0s; }
.hero-product-box:nth-child(2).floating { animation-delay: 0.4s; }
.hero-product-box:nth-child(3).floating { animation-delay: 0.8s; }
.hero-product-box:nth-child(4).floating { animation-delay: 1.2s; }
.hero-product-box:nth-child(5).floating { animation-delay: 0.6s; }
.hero-product-box:nth-child(6).floating { animation-delay: 1.0s; }
.hero-product-box:nth-child(7).floating { animation-delay: 0.2s; }

/* Hero text */
.hero-text {
  text-align: center;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: fadeInUp 1s 1s ease forwards;
  max-width: 900px;
  padding: 0 20px;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--color-teal);
  padding: 8px 20px;
  border: 1px solid rgba(var(--color-teal-rgb), 0.25);
  border-radius: 50px;
  background: rgba(var(--color-teal-rgb), 0.05);
  margin-bottom: 6px;
  opacity: 0;
  animation: badgeSlideIn 0.8s 1.2s ease forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: dotBlink 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(var(--color-teal-rgb), 0.6);
}

@keyframes badgeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(var(--color-teal-rgb), 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 4px rgba(var(--color-teal-rgb), 0.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 5.5rem);
  letter-spacing: 6px;
  margin-top: 10px;
  line-height: 1.08;
  margin-bottom: 14px;
  background: linear-gradient(
    90deg,
    var(--color-white) 0%,
    var(--color-gold) 20%,
    var(--color-white) 40%,
    var(--color-gold) 60%,
    var(--color-white) 80%,
    var(--color-gold) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 5s linear infinite;
  opacity: 0;
  animation: shimmerText 5s linear infinite, heroHeadlineIn 1s 1.4s ease forwards;
}

@keyframes heroHeadlineIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 15px;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 6px;
  }
}

.hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--color-silver);
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s 1.7s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 1.9s ease forwards;
}

/* Hero button shine effect */
.hero-btn {
  position: relative;
  overflow: hidden;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btnShineLoop 3s 2.5s ease-in-out infinite;
}

@keyframes btnShineLoop {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Scroll indicator */
.hero-scroll-indicator {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s 2.2s ease forwards;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(var(--color-teal-rgb), 0.3);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 3px;
  margin-top: 6px;
  animation: scrollWheelAnim 2s ease-in-out infinite;
}

@keyframes scrollWheelAnim {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0; }
  51% { transform: translateY(-5px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.scroll-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: rgba(var(--color-teal-rgb), 0.4);
  font-weight: 500;
}

/* ========================================
   3. PRODUCT SHOWCASE SLIDER
   ======================================== */
/* ---- Custom Cursor ---- */
.cursor-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-outer.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--color-teal);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cursor-outer, .cursor-dot { display: none; }
}

/* ========================================
   3. PRODUCT SHOWCASE SECTION — Redesigned
   ======================================== */
.product-showcase {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Full-section background — changes color per product */
.showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: background 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(0,0,0,0.4) 100%);
}

/* Floating particles */
.showcase-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.showcase-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: showcaseFloat linear infinite;
}

@keyframes showcaseFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* Section header */
.showcase-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--color-teal);
  padding: 8px 20px;
  border: 1px solid rgba(var(--color-teal-rgb), 0.25);
  border-radius: 50px;
  background: rgba(var(--color-teal-rgb), 0.05);
  margin-bottom: 16px;
}

.showcase-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: dotBlink 2s ease-in-out infinite;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 6px;
  color: var(--color-white);
}

/* Main container */
.showcase-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 735px;
}

/* ---- Left info panel ---- */
.showcase-info {
  position: relative;
  max-width: 750px;
  width: 100%;
}

.showcase-product-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 8rem);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -10px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.showcase-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 8px;
  font-weight: 600;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.showcase-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 16px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.showcase-divider {
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.showcase-divider span {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold));
  border-radius: 2px;
}

.showcase-description {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 750px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Feature list */
.showcase-features > ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.showcase-features > ul > li {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  padding-left: 32px;
}


.showcase-features > ul > li::before {
  content: '✓';
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.12);
}

.showcase-features > ul > li strong {
  color: var(--color-white);
  font-weight: 700;
  margin-right: 6px;
}

.showcase-price {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.price-current {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--color-white);
  letter-spacing: 1px;
}

.price-original {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.price-save {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #03060f;
  background: var(--color-teal);
  padding: 4px 12px;
  border-radius: 50px;
}

.showcase-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.showcase-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-cart-btn svg {
  flex-shrink: 0;
}

/* Fade transition on product switch */
.showcase-info.transitioning .showcase-subtitle,
.showcase-info.transitioning .showcase-name,
.showcase-info.transitioning .showcase-description,
.showcase-info.transitioning .showcase-features,
.showcase-info.transitioning .showcase-price,
.showcase-info.transitioning .showcase-divider {
  opacity: 0;
  transform: translateY(15px);
}

/* ---- Right side: image with glow ring ---- */
.showcase-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.showcase-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  min-height: 420px;
}

/* Animated glow ring */
.showcase-glow-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 60px rgba(var(--color-teal-rgb), 0.15),
    0 0 120px rgba(var(--color-teal-rgb), 0.08),
    inset 0 0 60px rgba(var(--color-teal-rgb), 0.05);
  transition: box-shadow 1s ease, border-color 1s ease;
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

/* Main product image */
.showcase-main-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.showcase-main-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-main-image img.entering {
  opacity: 0;
  transform: scale(0.85) translateY(25px) rotate(-2deg);
}

.showcase-main-image img.visible {
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0deg);
}

/* Product image reflection */
.showcase-reflection {
  position: absolute;
  bottom: -60px;
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(var(--color-teal-rgb), 0.15), transparent 70%);
  filter: blur(15px);
  transition: background 1s ease;
}

/* Thumbnail navigation row */
.showcase-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  z-index: 2;
}

.showcase-nav-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.showcase-nav-arrow:hover {
  border-color: var(--color-teal);
  background: rgba(var(--color-teal-rgb), 0.1);
  transform: scale(1.1);
}

/* Thumbnail sliding container — shows 3 at a time */
.showcase-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  /* 3 thumbs (65px) + 2 gaps (14px) + breathing room */
  width: 250px;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.showcase-thumbs-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.showcase-thumb {
  width: 65px;
  height: 82px;
  min-width: 65px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
}

.showcase-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.5s ease;
}

.showcase-thumb:hover {
  opacity: 0.7;
  transform: scale(0.92);
  border-color: rgba(255, 255, 255, 0.3);
}

.showcase-thumb:hover::after {
  background: transparent;
}

.showcase-thumb.active {
  opacity: 1;
  transform: scale(1.05);
  border-color: var(--color-teal);
  border-width: 3px;
  box-shadow: 0 0 15px rgba(var(--color-teal-rgb), 0.5), 0 0 30px rgba(var(--color-teal-rgb), 0.2);
}

.showcase-thumb.active::after {
  background: transparent;
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Progress bar */
.showcase-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 3;
}

.showcase-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold));
  border-radius: 0 2px 2px 0;
  transition: width 0.5s ease;
}

/* ========================================
   4. ABOUT US SECTION — Cinematic Redesign
   ======================================== */
.about-section {
  background: var(--color-bg-navy);
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Subtle grid pattern overlay */
.about-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--color-teal-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--color-teal-rgb), 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Floating ambient glows */
.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.about-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(var(--color-teal-rgb), 0.06);
  top: -10%;
  right: -5%;
}

.about-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(var(--color-gold-rgb), 0.04);
  bottom: 5%;
  left: -8%;
}

/* Section header */
.about-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--color-teal);
  padding: 8px 20px;
  border: 1px solid rgba(var(--color-teal-rgb), 0.25);
  border-radius: 50px;
  background: rgba(var(--color-teal-rgb), 0.05);
  margin-bottom: 16px;
}

.about-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: dotBlink 2s ease-in-out infinite;
}

.about-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 6px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.about-main-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-silver);
  font-weight: 400;
  letter-spacing: 2px;
}

/* Hero banner image */
.about-hero-banner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.about-hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 6, 15, 0.85) 0%, rgba(0, 200, 180, 0.15) 50%, rgba(3, 6, 15, 0.7) 100%);
}

.about-hero-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.about-founded {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-teal);
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(var(--color-teal-rgb), 0.3);
  border-radius: 4px;
  margin-bottom: 12px;
}

.about-hero-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--color-white);
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.about-hero-content p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-silver);
  letter-spacing: 2px;
  font-weight: 400;
}

/* Content grid — story + stats */
.about-content-grid {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Story cards */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-story-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-teal), var(--color-gold));
  border-radius: 3px 0 0 3px;
}

.about-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-teal-rgb), 0.15);
}

.about-story-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--color-teal-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-story-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.about-story-card p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* Stats grid */
.about-stats-container {
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(var(--color-teal-rgb), 0.2);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-teal-rgb), 0.2);
  background: rgba(var(--color-teal-rgb), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-silver);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.stat-detail {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

/* Values row */
.about-values {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.about-value-item {
  text-align: center;
  padding: 28px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.about-value-item:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--color-teal-rgb), 0.2);
  background: rgba(var(--color-teal-rgb), 0.04);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.3s ease;
}

.about-value-item:hover .value-icon {
  background: rgba(var(--color-teal-rgb), 0.15);
}

.about-value-item h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.about-value-item p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ========================================
   5. WHY CHOOSE US
   ======================================== */
.why-section {
  background: var(--color-bg-dark);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Faint teal grid overlay */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(var(--color-teal-rgb), 0.03) 60px,
      rgba(var(--color-teal-rgb), 0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(var(--color-teal-rgb), 0.03) 60px,
      rgba(var(--color-teal-rgb), 0.03) 61px
    );
  pointer-events: none;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.why-section .section-title {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(var(--color-teal-rgb), 0.1);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-teal-rgb), 0.4);
  box-shadow: 0 10px 40px rgba(var(--color-teal-rgb), 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-silver);
  line-height: 1.7;
}

/* ========================================
   6. HOW IT WORKS
   ======================================== */
.how-section {
  background: var(--color-bg-navy);
  padding: 100px 0;
}

.how-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.how-section .section-title {
  text-align: center;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 30px;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-silver);
  line-height: 1.7;
}

/* Step connector */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  margin-top: 30px;
  position: relative;
}

.connector-line {
  width: 100%;
  height: 2px;
  border-top: 2px dashed rgba(var(--color-teal-rgb), 0.4);
}

.connector-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: travelDot 2s linear infinite;
}

/* ========================================
   7. TESTIMONIALS
   ======================================== */
.testimonials-section {
  background: var(--color-bg-dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(var(--color-teal-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-section .section-title {
  text-align: center;
}

.testimonials-viewport {
  overflow: hidden;
  margin-top: 30px;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scrollCarousel 40s linear infinite;
  width: max-content;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-left: 3px solid var(--color-teal);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-silver);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
}

.author-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ========================================
   8. CONTACT US
   ======================================== */
.contact-section {
  background: var(--color-bg-navy);
  padding: 100px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
}

.contact-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-silver);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item div strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  display: block;
  margin-bottom: 3px;
}

.contact-item div span {
  font-size: 0.88rem;
  color: var(--color-silver);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-silver);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-bg-dark);
}

/* Contact form */
.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 2px;
  margin-bottom: 28px;
  color: var(--color-white);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px 6px 0 0;
  color: var(--color-white);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-teal);
  box-shadow: 0 2px 8px rgba(var(--color-teal-rgb), 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 6px;
  font-weight: 500;
}

.form-group.error input,
.form-group.error textarea {
  border-bottom-color: #e74c3c;
  animation: shake 0.4s ease;
}

.form-group.error .form-error {
  display: block;
}

.btn-submit {
  width: 100%;
  background: var(--color-teal);
  color: var(--color-bg-dark);
  border: 2px solid var(--color-teal);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  padding: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(var(--color-teal-rgb), 0.1);
  border: 1px solid rgba(var(--color-teal-rgb), 0.3);
  border-radius: 8px;
  color: var(--color-teal);
  font-family: var(--font-body);
  font-size: 0.92rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========================================
   9. NEWSLETTER BANNER
   ======================================== */
.newsletter-section {
  background: var(--color-bg-dark);
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
  border-top: 1px solid rgba(var(--color-teal-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--color-teal-rgb), 0.1);
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--color-teal-rgb), 0.4);
  animation: floatParticle var(--dur) var(--delay) ease-in-out infinite;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 3px;
  margin-bottom: 14px;
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-white) 30%,
    var(--color-gold) 60%,
    var(--color-white) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
}

.newsletter-subtext {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-silver);
  margin-bottom: 30px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--color-white);
  font-size: 0.92rem;
}

.newsletter-input::placeholder {
  color: var(--color-muted);
}

.btn-subscribe {
  background: var(--color-teal);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 16px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: var(--color-gold);
}

.btn-subscribe.subscribed {
  background: var(--color-teal);
  pointer-events: none;
}

/* ========================================
   10. FOOTER
   ======================================== */
.footer {
  background: var(--color-bg-navy);
  border-top: 1px solid rgba(var(--color-teal-rgb), 0.15);
  box-shadow: 0 -1px 0 rgba(var(--color-teal-rgb), 0.3);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col .logo-text {
  font-size: 1.4rem;
}

.footer-col .logo-tagline {
  margin-bottom: 16px;
  display: block;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--color-silver);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-silver);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-bg-dark);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-silver);
  position: relative;
  display: inline-block;
}

.footer-links a::after, .legal-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-teal);
  transition: width 0.3s ease;
}

.footer-links a:hover, .legal-links a:hover {
  color: var(--color-teal);
}

.footer-links a:hover::after, .legal-links a:hover::after {
  width: 100%;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-silver);
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.payment-methods, .legal-links {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
}

.legal-links a {
  font-size: 0.8rem;
  color: var(--color-muted);
  position: relative;
}

.payment-icon {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-silver);
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

/* Navbar & general entrance */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero product box entrance */
@keyframes floatBoxIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(var(--box-y, 0px)) rotate(var(--box-rotate, 0deg)) scale(1);
  }
}

/* Floating bob effect */
@keyframes floatBox {
  0%, 100% {
    transform: translateY(var(--box-y, 0px)) rotate(var(--box-rotate, 0deg));
  }
  50% {
    transform: translateY(calc(var(--box-y, 0px) - 8px)) rotate(var(--box-rotate, 0deg));
  }
}

/* Light rays entrance */
@keyframes rayFadeIn {
  from {
    opacity: 0;
    transform: scaleY(0.5);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes raysGlowIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Ray breathing — 3 variations for organic feel */
@keyframes rayPulse1 {
  0%, 100% { opacity: 0.7; }
  30% { opacity: 1; }
  60% { opacity: 0.5; }
  80% { opacity: 0.9; }
}

@keyframes rayPulse2 {
  0%, 100% { opacity: 0.6; }
  25% { opacity: 0.9; }
  50% { opacity: 0.4; }
  75% { opacity: 1; }
}

@keyframes rayPulse3 {
  0%, 100% { opacity: 0.8; }
  20% { opacity: 0.5; }
  50% { opacity: 1; }
  70% { opacity: 0.6; }
}

/* Gold shimmer on text */
@keyframes shimmerText {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Testimonial carousel scroll */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Form error shake */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

/* How It Works connector dot */
@keyframes travelDot {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 8px);
    opacity: 0;
  }
}

/* Newsletter floating particles */
@keyframes floatParticle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(15px, -20px) scale(1.5);
    opacity: 0.7;
  }
  50% {
    transform: translate(-10px, -35px) scale(1);
    opacity: 0.5;
  }
  75% {
    transform: translate(20px, -15px) scale(1.3);
    opacity: 0.6;
  }
}

/* Glow pulse for hero product proximity */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(var(--color-teal-rgb), 0.1);
  }
  50% {
    box-shadow: 0 5px 30px rgba(var(--color-teal-rgb), 0.3);
  }
}

.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablet / medium screens */
@media (max-width: 1024px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }

  .showcase-right {
    order: -1;
  }

  .showcase-image-wrapper {
    max-width: 350px;
    min-height: 320px;
    margin: 0 auto;
  }

  .showcase-glow-ring {
    width: 280px;
    height: 280px;
  }

  .showcase-product-number {
    font-size: 5rem;
    top: -20px;
  }

  .showcase-features > ul {
    grid-template-columns: 1fr;
  }

  .showcase-header {
    margin-bottom: 30px;
  }

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

  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-hero-image {
    height: 240px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar-main-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
  }

  .navbar-search {
    order: 4;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar-nav.open {
    max-height: 800px;
  }

  .navbar-nav-inner {
    flex-direction: column;
    padding: 10px 16px;
  }

  .nav-link {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-link::before {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-link-dropdown {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.4s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 600px;
    pointer-events: auto;
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    max-height: 0;
  }

  .nav-dropdown.open:hover .dropdown-menu {
    pointer-events: auto;
    max-height: 600px;
  }

  .dropdown-menu-inner {
    border-radius: 0;
    border: none;
    border-left: 2px solid rgba(var(--color-teal-rgb), 0.2);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
    margin-left: 8px;
    padding: 4px 0;
  }

  .dropdown-menu-inner::before {
    display: none;
  }

  .dropdown-menu-inner a {
    padding: 8px 20px;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .hero-orb { display: none; }

  .hero-glow-line { display: none; }

  .hero-products-reflection { display: none; }

  .hero-products {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }

  .hero-product-box {
    width: clamp(60px, 20vw, 100px);
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 6px 14px;
    letter-spacing: 1.5px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
    letter-spacing: 3px !important;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll-indicator { display: none; }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .showcase-container {
    padding: 0 20px;
    gap: 30px;
  }

  .showcase-image-wrapper {
    max-width: 280px;
    min-height: 260px;
  }

  .showcase-glow-ring {
    width: 220px;
    height: 220px;
  }

  .showcase-thumb {
    width: 50px;
    height: 65px;
  }

  .showcase-nav-arrow {
    width: 36px;
    height: 36px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    width: 50px;
    height: 40px;
    margin-top: 0;
  }

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

  .testimonial-card {
    width: 300px;
  }

  .contact-form {
    padding: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 6px;
  }

  .newsletter-input {
    border-radius: 6px 6px 0 0;
  }

  .btn-subscribe {
    border-radius: 0 0 6px 6px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-hero-image {
    height: 200px;
  }

  .about-hero-content h3 {
    font-size: 1.3rem;
  }

  .about-hero-content {
    bottom: 20px;
    left: 20px;
  }

  .about-hero-banner,
  .about-content-grid,
  .about-values {
    padding: 0 20px;
  }

  .hero-product-box {
    width: 60px;
  }

  .hero-product-box:nth-child(1),
  .hero-product-box:nth-child(7) {
    display: none;
  }
}


/* ===== Nova Development Signup Lightbox ===== */

.nd-signup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 24, 0.72);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nd-signup-modal {
  position: relative;
  width: min(1020px, 96vw);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background:
    linear-gradient(135deg, #dce8f7 0%, #edf4fb 38%, #d6e6f5 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nd-signup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0b1220;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  z-index: 5;
  transition: transform 0.18s ease, background 0.18s ease;
}

.nd-signup-close:hover {
  transform: scale(1.04);
  background: #ffffff;
}

.nd-signup-left {
  position: relative;
  padding: 52px 42px 40px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92) 0%, rgba(245,249,255,0.92) 100%);
  border-right: 1px solid rgba(13, 34, 66, 0.08);
}

.nd-signup-left::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px dashed rgba(30, 196, 183, 0.22);
  border-radius: 22px;
  pointer-events: none;
}

.nd-signup-badge {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0e1730 0%, #132342 100%);
  color: #dffcf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nd-signup-offer-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 8px;
  line-height: 0.9;
}

.nd-signup-percent {
  font-size: clamp(84px, 10vw, 90px);
  font-weight: 800;
  color: #182b64;
  letter-spacing: -0.06em;
}

.nd-signup-off-copy {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  padding-top: 14px;
}

.nd-signup-off {
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 800;
  color: #6f4fb7;
  letter-spacing: -0.04em;
}

.nd-signup-star {
  font-size: 30px;
  font-weight: 700;
  color: #00c8b4;
  padding-top: 8px;
}

.nd-signup-title {
  position: relative;
  margin: 10px 0 16px;
  color: #101a35;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nd-signup-text {
  position: relative;
  max-width: 480px;
  margin: 0 0 18px;
  color: #33415f;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
}

.nd-signup-points {
  position: relative;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.nd-signup-points li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  color: #22314d;
  font-size: 17px;
  line-height: 1.4;
}

.nd-signup-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16dbc8 0%, #0bb4d4 100%);
  box-shadow: 0 0 0 5px rgba(22, 219, 200, 0.12);
}

.nd-signup-note {
  position: relative;
  margin: 8px 0 0;
  color: #5d6780;
  font-size: 14px;
  line-height: 1.5;
}

.nd-signup-right {
  padding: 46px 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 180, 0.18), transparent 30%),
    linear-gradient(180deg, #d9e7f6 0%, #eaf2fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-signup-form-wrap {
  width: 100%;
  max-width: 390px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 40px rgba(10, 22, 47, 0.12);
}

.nd-signup-brand-mark {
  margin-bottom: 22px;
  color: #0f1a38;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nd-field-group {
  margin-bottom: 15px;
}

.nd-label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nd-label.required {
  color: #c44b65;
}

.nd-label.optional {
  color: #6e7991;
}

.nd-input-wrap {
  position: relative;
}

.nd-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.58;
  pointer-events: none;
}

.nd-input-wrap input {
  width: 100%;
  height: 58px;
  padding: 0 16px 0 48px;
  border-radius: 14px;
  border: 1px solid rgba(25, 42, 74, 0.14);
  background: rgba(255,255,255,0.92);
  color: #14203d;
  font-size: 18px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nd-input-wrap input:focus {
  border-color: rgba(0, 200, 180, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 200, 180, 0.14);
  background: #ffffff;
}

.nd-input-wrap input::placeholder {
  color: #808aa0;
}

.nd-signup-submit {
  width: 100%;
  margin-top: 8px;
  height: 64px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  background: linear-gradient(90deg, #2746cf 0%, #11cfc5 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(31, 92, 223, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.nd-signup-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(31, 92, 223, 0.32);
  filter: brightness(1.03);
}

.nd-signup-disclaimer {
  margin: 14px 4px 0;
  color: #67738e;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  .nd-signup-modal {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .nd-signup-left {
    padding: 44px 28px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 34, 66, 0.08);
  }

  .nd-signup-right {
    padding: 26px 22px 28px;
  }

  .nd-signup-text {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .nd-signup-overlay {
    padding: 12px;
  }

  .nd-signup-left,
  .nd-signup-right {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nd-signup-form-wrap {
    padding: 22px 18px 20px;
  }

  .nd-signup-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 32px;
  }

  .nd-input-wrap input {
    height: 54px;
    font-size: 16px;
  }

  .nd-signup-submit {
    height: 58px;
    font-size: 17px;
  }
}