/* ════════════════════════════════════════════════════════
   THE PUFFY CLOUD CAFE — Claymorphism Landing Page
   Blue & Purple Theme
════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&display=swap');

:root {
  /* ── Blue & Purple Palette ── */
  --clay-bg: #e8e4f0;
  --clay-card-bg: #ede9f5;
  --clay-bg-dark: #1a1032;
  --clay-bg-dark-card: #241545;

  --accent-primary: #7c4dff;
  --accent-secondary: #536dfe;
  --accent-tertiary: #b388ff;
  --accent-glow: rgba(124, 77, 255, 0.4);
  --accent-gradient: linear-gradient(135deg, #7c4dff 0%, #536dfe 50%, #448aff 100%);
  --accent-gradient-warm: linear-gradient(135deg, #7c4dff 0%, #e040fb 100%);

  --clay-lavender: #e8e0ff;
  --clay-sky: #dde8ff;
  --clay-violet: #f0e0ff;
  --clay-indigo: #e0e4ff;
  --clay-pink: #ffe0f0;

  --text-primary: #1a1032;
  --text-secondary: #5a5078;
  --text-tertiary: #8a80a0;
  --text-light: #f0ecff;
  --text-light-secondary: rgba(240, 236, 255, 0.7);

  /* ── Geometry ── */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-pill: 100px;

  /* ── Clay Shadows (Light Theme) ── */
  --clay-out:
    inset 4px 4px 8px rgba(255, 255, 255, 0.7),
    inset -4px -4px 8px rgba(100, 60, 160, 0.12),
    10px 10px 24px rgba(100, 60, 160, 0.15),
    -10px -10px 24px rgba(255, 255, 255, 0.6);

  --clay-out-sm:
    inset 2px 2px 4px rgba(255, 255, 255, 0.7),
    inset -2px -2px 4px rgba(100, 60, 160, 0.1),
    6px 6px 12px rgba(100, 60, 160, 0.12),
    -6px -6px 12px rgba(255, 255, 255, 0.6);

  --clay-in:
    inset 6px 6px 12px rgba(100, 60, 160, 0.2),
    inset -6px -6px 12px rgba(255, 255, 255, 0.7);

  --clay-primary:
    inset 4px 4px 8px rgba(255, 255, 255, 0.35),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    8px 8px 20px rgba(124, 77, 255, 0.4);

  --clay-primary-in:
    inset 6px 6px 12px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.15);

  /* ── Dark Clay Shadows ── */
  --clay-dark-out:
    inset 4px 4px 8px rgba(255, 255, 255, 0.08),
    inset -4px -4px 8px rgba(0, 0, 0, 0.3),
    10px 10px 30px rgba(0, 0, 0, 0.4),
    -10px -10px 30px rgba(80, 50, 140, 0.15);

  --clay-dark-out-sm:
    inset 2px 2px 4px rgba(255, 255, 255, 0.06),
    inset -2px -2px 4px rgba(0, 0, 0, 0.25),
    6px 6px 16px rgba(0, 0, 0, 0.3),
    -6px -6px 16px rgba(80, 50, 140, 0.1);

  --clay-dark-in:
    inset 6px 6px 14px rgba(0, 0, 0, 0.4),
    inset -6px -6px 14px rgba(80, 50, 140, 0.12);

  /* ── Transitions ── */
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.8, 0.64, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-elegant: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Global Reset ───────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--clay-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent transitions during resize */
.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

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

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

/* ─── Scroll Reveal Animations ───── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ════════════════════════════════════
   SECTION 1 — HERO (Dark, Laptop Mockup)
════════════════════════════════════ */
.hero-section {
  background: var(--clay-bg-dark);
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background gradient orbs — CPU-based blur */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
  animation: orbFloat 20s infinite ease-in-out alternate;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  top: -150px;
  left: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: -100px;
  right: -100px;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-tertiary);
  top: 40%;
  left: 60%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, -60px) scale(1.15);
  }
}

/* ── Navigation ── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.main-nav.scrolled {
  background: transparent;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-gradient);
  box-shadow: var(--clay-dark-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-pill {
  background: transparent;
  padding: 8px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 2px black;
  gap: 8px;
  border: 1px solid var(--clay-bg-dark);
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-links a {
  color: var(--text-light-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-light);
}

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

.nav-cta {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--accent-gradient);
  color: white !important;
  font-weight: 600 !important;
  box-shadow: var(--clay-dark-out-sm);
  transition: var(--transition-bounce) !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(124, 77, 255, 0.5);
}

.nav-cta::after {
  display: none !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6),
              opacity 0.25s ease,
              width 0.25s ease;
  transform-origin: center;
}

/* ── Mobile Nav Overlay (backdrop dim) ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 998;
  pointer-events: none;
  transition: background 0.4s ease;
}

.mobile-nav-overlay.active {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

/* ── Hero Content ── */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: rgba(124, 77, 255, 0.15);
  border: 1px solid rgba(124, 77, 255, 0.3);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-tertiary);
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title .accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-light-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.btn-clay-primary {
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  background: var(--accent-gradient);
  color: white;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--clay-primary);
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-clay-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.5);
}

.btn-clay-primary:active {
  transform: scale(0.97);
  box-shadow: var(--clay-primary-in);
}

.btn-clay-secondary {
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--clay-dark-out-sm);
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-clay-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Laptop Mockup ── */
.laptop-mockup-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px 80px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.laptop-mockup {
  position: relative;
  perspective: 1200px;
}

.laptop-screen {
  background: #111;
  border-radius: 16px 16px 0 0;
  padding: 10px 10px 0;
  box-shadow:
    0 -4px 30px rgba(124, 77, 255, 0.2),
    0 30px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
}

.laptop-screen-inner {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9.5;
}

.laptop-screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(124, 77, 255, 0.08) 0%,
      transparent 40%,
      transparent 70%,
      rgba(26, 16, 50, 0.3) 100%);
  pointer-events: none;
}

.laptop-base {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  height: 18px;
  border-radius: 0 0 6px 6px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 0 4px 4px;
}

.laptop-hinge {
  width: 110%;
  height: 8px;
  background: linear-gradient(180deg, #333 0%, #222 100%);
  margin: 0 auto;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: translateX(-5%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Floating elements around laptop */
.laptop-float-badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(36, 21, 69, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--clay-dark-out-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.laptop-float-badge.badge-rating {
  top: 20%;
  right: -40px;
  animation-delay: -1s;
}

.laptop-float-badge.badge-open {
  bottom: 30%;
  left: -30px;
  animation-delay: -2.5s;
}

.laptop-float-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.laptop-float-badge .badge-text {
  display: flex;
  flex-direction: column;
}

.laptop-float-badge .badge-label {
  font-size: 11px;
  color: var(--text-light-secondary);
  font-weight: 500;
}

.laptop-float-badge .badge-value {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 700;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* ════════════════════════════════════
   SECTION 2 — ABOUT (Light)
════════════════════════════════════ */
.about-section {
  background: var(--clay-bg);
  padding: 120px 48px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--clay-card-bg);
  box-shadow: var(--clay-out-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-label .label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.about-text h2 .accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--clay-card-bg);
  box-shadow: var(--clay-out-sm);
  transition: var(--transition-bounce);
}

.about-feature-item:hover {
  transform: translateY(-4px) scale(1.02);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-gradient);
  box-shadow: var(--clay-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-feature-content p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.5;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--clay-out);
  aspect-ratio: 4 / 5;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.about-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--clay-out);
  border: 4px solid var(--clay-bg);
}

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

/* ── Decorative ornament ── */
.clay-ornament {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clay-card-bg);
  box-shadow: var(--clay-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
}

/* ════════════════════════════════════
   SECTION 3 — SERVE / CATEGORY
════════════════════════════════════ */
.serve-section {
  background: var(--clay-bg);
  padding: 100px 48px 120px;
}

.serve-header {
  text-align: center;
  margin-bottom: 64px;
}

.serve-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.serve-header h2 .accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.serve-header p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: var(--clay-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-out);
  overflow: hidden;
  transition: var(--transition-bounce);
  cursor: pointer;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.category-card:active {
  box-shadow: var(--clay-in);
  transform: scale(0.98);
}

.category-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

.category-number {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-primary);
}

.category-info {
  padding: 20px;
}

.category-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-top: 8px;
  transition: var(--transition-smooth);
}

.category-link:hover {
  gap: 10px;
}

/* ════════════════════════════════════
   SECTION 4 — BESTSELLERS / PRODUCTS
════════════════════════════════════ */
.products-section {
  background: var(--clay-bg-dark);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.products-section .hero-orb {
  opacity: 0.2;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.products-header .section-label {
  background: rgba(124, 77, 255, 0.15);
  box-shadow: var(--clay-dark-out-sm);
  color: var(--accent-tertiary);
}

.products-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-top: 16px;
}

.products-header p {
  font-size: 16px;
  color: var(--text-light-secondary);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.product-card {
  background: var(--clay-bg-dark-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-dark-out);
  overflow: hidden;
  transition: var(--transition-bounce);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    var(--clay-dark-out),
    0 20px 60px rgba(124, 77, 255, 0.2);
}

.product-img {
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-gradient);
  font-size: 11px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.4);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 13px;
  color: var(--text-light-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 22px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: var(--clay-dark-out-sm);
  transition: var(--transition-bounce);
}

.product-add-btn:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ════════════════════════════════════
   SECTION 5 — WHY DIFFERENT (Features)
════════════════════════════════════ */
.features-section {
  background: var(--clay-bg);
  padding: 120px 48px;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.features-header p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--clay-card-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--clay-out);
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--clay-card-bg);
  box-shadow: var(--clay-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--accent-gradient);
  box-shadow: 0 8px 24px rgba(124, 77, 255, 0.4);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ════════════════════════════════════
   SECTION 6 — GALLERY
════════════════════════════════════ */
.gallery-section {
  background: var(--clay-bg);
  padding: 100px 48px 120px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.gallery-header p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--clay-out);
  position: relative;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 16, 50, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  height: 440px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  height: 210px;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  height: 210px;
}

/* ════════════════════════════════════
   SECTION 7 — TESTIMONIALS
════════════════════════════════════ */
.testimonials-section {
  background: var(--clay-bg-dark);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.testimonials-header .section-label {
  background: rgba(124, 77, 255, 0.15);
  box-shadow: var(--clay-dark-out-sm);
  color: var(--accent-tertiary);
}

.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
  margin-top: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: var(--clay-bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--clay-dark-out);
  transition: var(--transition-bounce);
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  font-size: 18px;
  color: #ffc107;
  text-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: var(--clay-dark-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light-secondary);
  margin-top: 2px;
}

/* ════════════════════════════════════
   SECTION 8 — CTA BANNER
════════════════════════════════════ */
.cta-section {
  background: var(--clay-bg);
  padding: 100px 48px;
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--accent-gradient);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  box-shadow:
    0 30px 80px rgba(124, 77, 255, 0.35),
    inset 4px 4px 12px rgba(255, 255, 255, 0.2),
    inset -4px -4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  animation: ctaShimmer 10s linear infinite;
}

@keyframes ctaShimmer {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-btn {
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  background: white;
  color: var(--accent-primary);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow:
    inset 3px 3px 6px rgba(255, 255, 255, 0.9),
    inset -3px -3px 6px rgba(0, 0, 0, 0.05),
    6px 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-bounce);
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    inset 3px 3px 6px rgba(255, 255, 255, 0.9),
    inset -3px -3px 6px rgba(0, 0, 0, 0.05),
    8px 12px 30px rgba(0, 0, 0, 0.2);
}

/* ════════════════════════════════════
   SECTION 9 — FOOTER
════════════════════════════════════ */
.site-footer {
  background: var(--clay-bg-dark);
  padding: 80px 48px 32px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-light-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--clay-dark-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-bounce);
}

.footer-social a:hover {
  background: var(--accent-gradient);
  transform: translateY(-4px);
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-light-secondary);
  transition: var(--transition-smooth);
}

.footer-column a:hover {
  color: var(--accent-tertiary);
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light-secondary);
}

/* ════════════════════════════════════
   PARTNERS / TRUSTED MARQUEE
════════════════════════════════════ */
.partners-strip {
  background: var(--clay-card-bg);
  padding: 32px 0;
  box-shadow: var(--clay-in);
  overflow: hidden;
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.partners-inner span {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-tertiary);
  white-space: nowrap;
  letter-spacing: -0.02em;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.partners-inner span:hover {
  opacity: 1;
  color: var(--accent-primary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════
   STATS BAR
════════════════════════════════════ */
.stats-bar {
  background: var(--clay-bg);
  padding: 60px 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--clay-card-bg);
  box-shadow: var(--clay-out);
  transition: var(--transition-bounce);
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════
   SMOOTH SCROLL CURSOR TRAIL
════════════════════════════════════ */
.cursor-glow {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.08) 0%, transparent 70%);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease-out;
  mix-blend-mode: screen;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Full @media Query Coverage
   Breakpoints: 1440 / 1280 / 1024 / 900 / 768 / 600 / 480 / 360
════════════════════════════════════════════════════════ */

/* ── Reduced Motion Preference ─────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-orb,
  .partners-inner,
  .cta-card::before {
    animation: none !important;
  }

  .cursor-glow {
    display: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Touch Device Optimizations ────── */
@media (hover: none) and (pointer: coarse) {
  .cursor-glow {
    display: none !important;
  }

  /* Enlarge tap targets */
  .nav-links a {
    padding: 8px 4px;
  }

  .category-link {
    padding: 8px 0;
  }

  .footer-column a {
    padding: 6px 0;
    display: inline-block;
  }

  .product-add-btn {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  /* Remove hover-only effects on touch */
  .category-card:hover,
  .product-card:hover,
  .feature-card:hover,
  .testimonial-card:hover,
  .stat-item:hover,
  .gallery-item:hover {
    transform: none;
  }

  .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 16, 50, 0.5) 100%);
  }

  .feature-card::before {
    opacity: 1;
  }
}

/* ═══════════════════════════════════
   1440px — Large Desktops
═══════════════════════════════════ */
@media (max-width: 1440px) {
  .hero-content {
    padding: 110px 40px 50px;
  }

  .laptop-mockup-wrapper {
    max-width: 820px;
  }

  .section-container {
    max-width: 1100px;
  }

  .about-grid {
    gap: 48px;
  }
}

/* ═══════════════════════════════════
   1280px — Standard Desktops
═══════════════════════════════════ */
@media (max-width: 1280px) {
  .main-nav {
    padding: 16px 36px;
  }

  .main-nav.scrolled {
    padding: 12px 36px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-content {
    padding: 110px 36px 50px;
  }

  .laptop-mockup-wrapper {
    max-width: 750px;
    padding: 0 36px 70px;
  }

  .about-section,
  .serve-section,
  .products-section,
  .features-section,
  .gallery-section,
  .testimonials-section,
  .cta-section,
  .stats-bar {
    padding-left: 36px;
    padding-right: 36px;
  }

  .about-grid {
    gap: 40px;
  }

  .category-grid {
    gap: 20px;
  }

  .products-grid {
    gap: 24px;
  }

  .features-grid {
    gap: 22px;
  }

  .footer-grid {
    gap: 36px;
  }

  .site-footer {
    padding: 70px 36px 28px;
  }
}

/* ═══════════════════════════════════
   1024px — Tablets Landscape / Small Laptops
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .main-nav {
    padding: 14px 28px;
  }

  .main-nav.scrolled {
    padding: 10px 28px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-cta {
    padding: 8px 20px;
  }

  .hero-content {
    padding: 100px 28px 40px;
  }

  .hero-subtitle {
    max-width: 480px;
  }

  .laptop-mockup-wrapper {
    max-width: 680px;
    padding: 0 28px 60px;
  }

  .laptop-float-badge {
    padding: 10px 16px;
  }

  .laptop-float-badge .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .laptop-float-badge .badge-value {
    font-size: 13px;
  }

  .laptop-float-badge.badge-rating {
    right: -20px;
  }

  .laptop-float-badge.badge-open {
    left: -16px;
  }

  .about-section,
  .serve-section,
  .products-section,
  .features-section,
  .gallery-section,
  .testimonials-section,
  .cta-section,
  .stats-bar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .about-grid {
    gap: 36px;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .about-image-float {
    width: 160px;
    height: 160px;
    bottom: -24px;
    right: -20px;
  }

  .serve-section {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category-img {
    height: 170px;
  }

  .products-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
  }

  .product-img {
    height: 200px;
  }

  .features-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .feature-card {
    padding: 28px 22px;
  }

  .gallery-section {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    height: 350px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    height: 167px;
  }

  .testimonials-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .testimonials-grid {
    gap: 22px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-card {
    padding: 64px 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .stat-number {
    font-size: 36px;
  }

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

  .site-footer {
    padding: 64px 28px 24px;
  }
}

/* ═══════════════════════════════════
   900px — Tablets / Large Phones Landscape
═══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(36px, 6vw, 60px);
  }

  .laptop-float-badge {
    display: none;
  }

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

  .about-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-image-main {
    aspect-ratio: 16 / 10;
  }

  .about-image-float {
    width: 150px;
    height: 150px;
    bottom: -24px;
    right: -16px;
  }

  .products-grid {
    max-width: 700px;
    margin: 0 auto;
  }

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

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════
   768px — Tablets Portrait / Mobile Menu
═══════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navigation → Mobile ── */
  .main-nav {
    padding: 12px 20px;
  }

  .main-nav.scrolled {
    padding: 10px 20px;
  }

  .nav-logo-text {
    font-size: 18px;
  }

  .nav-logo-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 16, 50, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    padding: 80px 40px;
  }

  .nav-links.open {
    display: flex;
    animation: mobileNavIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes mobileNavIn {
    from {
      opacity: 0;
      backdrop-filter: blur(0);
    }
    to {
      opacity: 1;
      backdrop-filter: blur(30px);
    }
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-links a {
    font-size: 22px;
    font-weight: 600;
    display: block;
    padding: 14px 0;
    color: var(--text-light-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: var(--text-light);
    transform: scale(1.05);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    padding: 16px 40px !important;
    font-size: 16px !important;
    display: inline-block;
    text-align: center;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .mobile-menu-btn.open {
    background: rgba(124, 77, 255, 0.12);
  }

  .mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    width: 26px;
  }

  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    width: 0;
  }

  .mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 26px;
  }

  /* ── Hero ── */
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 100px 20px 36px;
  }

  .hero-badge {
    margin-bottom: 24px;
    padding: 6px 14px;
  }

  .hero-badge span {
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn-clay-primary,
  .btn-clay-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* ── Laptop Mockup ── */
  .laptop-mockup-wrapper {
    padding: 0 20px 48px;
    max-width: 600px;
  }

  .laptop-screen {
    padding: 6px 6px 0;
    border-radius: 12px 12px 0 0;
  }

  .laptop-screen-inner {
    border-radius: 6px 6px 0 0;
  }

  .laptop-base {
    height: 14px;
  }

  .laptop-hinge {
    height: 6px;
  }

  /* ── Partners ── */
  .partners-strip {
    padding: 24px 0;
  }

  .partners-inner span {
    font-size: 18px;
  }

  .partners-inner {
    gap: 36px;
  }

  /* ── All sections — spacing ── */
  .about-section {
    padding: 80px 20px;
  }

  .serve-section {
    padding: 70px 20px 90px;
  }

  .products-section {
    padding: 80px 20px;
  }

  .features-section {
    padding: 80px 20px;
  }

  .gallery-section {
    padding: 70px 20px 90px;
  }

  .testimonials-section {
    padding: 80px 20px;
  }

  .cta-section {
    padding: 70px 20px;
  }

  .stats-bar {
    padding: 48px 20px;
  }

  /* ── Section labels & headers ── */
  .section-label {
    font-size: 11px;
    padding: 6px 14px;
  }

  .serve-header h2,
  .products-header h2,
  .features-header h2,
  .gallery-header h2,
  .testimonials-header h2 {
    font-size: clamp(26px, 5vw, 38px);
  }

  .serve-header p,
  .products-header p,
  .features-header p,
  .gallery-header p {
    font-size: 14px;
  }

  /* ── About ── */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-text h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .about-text p {
    font-size: 14px;
  }

  .about-image-wrap {
    max-width: 100%;
  }

  .about-image-main {
    aspect-ratio: 16 / 10;
  }

  .about-image-float {
    width: 130px;
    height: 130px;
    bottom: -20px;
    right: -8px;
    border-width: 3px;
  }

  .about-feature-item {
    padding: 16px;
  }

  .about-feature-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .about-feature-content h4 {
    font-size: 14px;
  }

  /* ── Stats ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 22px 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 11px;
  }

  /* ── Category ── */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-img {
    height: 150px;
  }

  .category-info {
    padding: 16px;
  }

  .category-info h3 {
    font-size: 17px;
  }

  /* ── Products ── */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .product-img {
    height: 180px;
  }

  .product-info {
    padding: 18px;
  }

  .product-info h3 {
    font-size: 17px;
  }

  .product-price {
    font-size: 18px;
  }

  /* ── Features ── */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    margin-bottom: 18px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 12px;
  }

  /* ── Gallery ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    height: 260px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    height: 170px;
  }

  /* ── Testimonials ── */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-card blockquote {
    font-size: 14px;
  }

  /* ── CTA ── */
  .cta-card {
    padding: 48px 28px;
    border-radius: var(--radius-lg);
  }

  .cta-card h2 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .cta-card p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 14px 32px;
    font-size: 14px;
  }

  /* ── Footer ── */
  .site-footer {
    padding: 56px 20px 20px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-brand p {
    font-size: 13px;
    max-width: 100%;
  }

  .footer-column h4 {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .footer-column a {
    font-size: 13px;
  }

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

  .footer-bottom p {
    font-size: 12px;
  }
}

/* ═══════════════════════════════════
   600px — Large Phones
═══════════════════════════════════ */
@media (max-width: 600px) {
  .hero-content {
    padding: 90px 16px 32px;
  }

  .hero-badge {
    padding: 5px 12px;
  }

  .hero-badge span {
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 40px);
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .laptop-mockup-wrapper {
    padding: 0 16px 40px;
  }

  .laptop-screen {
    padding: 5px 5px 0;
    border-radius: 10px 10px 0 0;
  }

  .laptop-base {
    height: 12px;
  }

  .laptop-hinge {
    height: 5px;
  }

  /* sections */
  .about-section {
    padding: 64px 16px;
  }

  .serve-section {
    padding: 56px 16px 72px;
  }

  .products-section {
    padding: 64px 16px;
  }

  .features-section {
    padding: 64px 16px;
  }

  .gallery-section {
    padding: 56px 16px 72px;
  }

  .testimonials-section {
    padding: 64px 16px;
  }

  .cta-section {
    padding: 56px 16px;
  }

  .stats-bar {
    padding: 40px 16px;
  }

  .serve-header,
  .products-header,
  .features-header,
  .gallery-header,
  .testimonials-header {
    margin-bottom: 40px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .about-features {
    gap: 14px;
  }

  .about-feature-item {
    padding: 14px;
    gap: 12px;
  }

  .about-image-float {
    width: 110px;
    height: 110px;
    bottom: -16px;
    right: -6px;
  }

  .category-grid {
    gap: 12px;
  }

  .category-img {
    height: 130px;
  }

  .category-info {
    padding: 12px;
  }

  .category-info h3 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .category-link {
    font-size: 11px;
    margin-top: 4px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 20px;
  }

  .product-img {
    height: 200px;
  }

  .features-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 20px 14px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
    margin-bottom: 14px;
  }

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

  .feature-card p {
    font-size: 11px;
    line-height: 1.5;
  }

  .gallery-item:nth-child(1) {
    height: 220px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    height: 140px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .cta-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .cta-card p {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 13px;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-social {
    margin-top: 16px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .site-footer {
    padding: 48px 16px 16px;
  }

  .partners-inner span {
    font-size: 16px;
  }

  .partners-inner {
    gap: 28px;
  }
}

/* ═══════════════════════════════════
   480px — Standard Phones
═══════════════════════════════════ */
@media (max-width: 480px) {
  .main-nav {
    padding: 10px 16px;
  }

  .main-nav.scrolled {
    padding: 8px 16px;
  }

  .nav-logo-text {
    font-size: 16px;
  }

  .nav-logo-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 8px;
  }

  .nav-links {
    padding: 80px 24px;
    gap: 18px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 10px 0;
  }

  .hero-content {
    padding: 84px 14px 28px;
  }

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-clay-primary,
  .btn-clay-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .laptop-mockup-wrapper {
    padding: 0 14px 36px;
  }

  .laptop-screen {
    padding: 4px 4px 0;
    border-radius: 8px 8px 0 0;
    border-width: 1px;
  }

  .laptop-screen-inner {
    border-radius: 5px 5px 0 0;
  }

  .laptop-base {
    height: 10px;
    border-radius: 0 0 4px 4px;
  }

  .laptop-hinge {
    height: 4px;
  }

  /* section headers uniform sizing */
  .about-text h2,
  .serve-header h2,
  .products-header h2,
  .features-header h2,
  .gallery-header h2,
  .testimonials-header h2 {
    font-size: 24px;
  }

  .about-section {
    padding: 56px 14px;
  }

  .serve-section {
    padding: 48px 14px 64px;
  }

  .products-section {
    padding: 56px 14px;
  }

  .features-section {
    padding: 56px 14px;
  }

  .gallery-section {
    padding: 48px 14px 64px;
  }

  .testimonials-section {
    padding: 56px 14px;
  }

  .cta-section {
    padding: 48px 14px;
  }

  .stats-bar {
    padding: 36px 14px;
  }

  /* Category — single column */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-img {
    height: 180px;
  }

  .category-info {
    padding: 14px 16px;
  }

  .category-info h3 {
    font-size: 17px;
  }

  /* Products — single column */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .product-img {
    height: 220px;
  }

  .product-info {
    padding: 16px;
  }

  .product-info h3 {
    font-size: 18px;
  }

  .product-info p {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .product-price {
    font-size: 20px;
  }

  /* Features — single column */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: 16px;
    align-items: flex-start;
  }

  .feature-icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .feature-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .feature-card p {
    font-size: 12px;
  }

  /* Gallery — single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    height: 220px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    height: 200px;
  }

  /* Stats — single column */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .stat-number {
    font-size: 32px;
    margin-bottom: 0;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Testimonials */
  .testimonials-grid {
    max-width: 100%;
    gap: 14px;
  }

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

  .testimonial-stars span {
    font-size: 16px;
  }

  .testimonial-card blockquote {
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.6;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .testimonial-name {
    font-size: 13px;
  }

  .testimonial-role {
    font-size: 11px;
  }

  /* CTA */
  .cta-card {
    padding: 36px 18px;
    border-radius: var(--radius-md);
  }

  .cta-card h2 {
    font-size: 22px;
  }

  .cta-card p {
    font-size: 12px;
    margin-bottom: 24px;
  }

  /* Footer */
  .footer-grid {
    gap: 24px;
  }

  .footer-column h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-column ul {
    gap: 10px;
  }

  .footer-column a {
    font-size: 12px;
  }

  .partners-strip {
    padding: 18px 0;
  }

  .partners-inner span {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════
   360px — Small Phones (Galaxy S series, etc.)
═══════════════════════════════════ */
@media (max-width: 360px) {
  .main-nav {
    padding: 8px 12px;
  }

  .nav-logo-text {
    font-size: 14px;
  }

  .nav-logo-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .hero-content {
    padding: 76px 12px 24px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero-badge span {
    font-size: 9px;
  }

  .btn-clay-primary,
  .btn-clay-secondary {
    padding: 12px 20px;
    font-size: 13px;
  }

  .laptop-mockup-wrapper {
    padding: 0 12px 28px;
  }

  .about-section,
  .serve-section,
  .products-section,
  .features-section,
  .gallery-section,
  .testimonials-section,
  .cta-section,
  .stats-bar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-text h2,
  .serve-header h2,
  .products-header h2,
  .features-header h2,
  .gallery-header h2,
  .testimonials-header h2 {
    font-size: 22px;
  }

  .about-text p,
  .serve-header p,
  .products-header p,
  .features-header p,
  .gallery-header p {
    font-size: 12px;
  }

  .about-image-float {
    width: 90px;
    height: 90px;
    bottom: -12px;
    right: 0;
  }

  .category-img {
    height: 150px;
  }

  .product-img {
    height: 180px;
  }

  .feature-card {
    padding: 18px 14px;
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .gallery-item:nth-child(1) {
    height: 180px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    height: 160px;
  }

  .testimonial-card {
    padding: 16px 14px;
  }

  .cta-card {
    padding: 28px 14px;
    border-radius: 16px;
  }

  .cta-card h2 {
    font-size: 20px;
  }

  .cta-btn {
    padding: 10px 24px;
    font-size: 12px;
  }

  .stat-item {
    padding: 16px 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .site-footer {
    padding: 40px 12px 12px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .partners-inner span {
    font-size: 12px;
  }

  .partners-inner {
    gap: 20px;
  }
}

/* ═══════════════════════════════════
   Landscape Phones (short height)
═══════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero-badge {
    margin-bottom: 14px;
  }

  .laptop-mockup-wrapper {
    padding-bottom: 30px;
    max-width: 500px;
  }

  .nav-links {
    gap: 14px;
    padding: 60px 24px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 6px 0;
  }
}

/* ═══════════════════════════════════
   SHARED JS ENHANCEMENT STYLES
═══════════════════════════════════ */

/* ── Back to Top Button ── */
.back-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent-gradient);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.25),
    inset -2px -2px 4px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(124, 77, 255, 0.35);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  z-index: 999;
}

.back-to-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top-btn:hover {
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    inset -2px -2px 4px rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(124, 77, 255, 0.5);
  transform: translateY(-3px) scale(1.08);
}

.back-to-top-btn:active {
  transform: translateY(0) scale(0.95);
}

@media (max-width: 480px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ── Gallery Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  color: var(--text-light-secondary);
  font-size: 14px;
  margin-top: 16px;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
  left: -72px;
}

.lightbox-nav.next {
  right: -72px;
}

@media (max-width: 768px) {
  .lightbox-nav.prev {
    left: -10px;
  }
  .lightbox-nav.next {
    right: -10px;
  }
  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ── Testimonial Carousel ── */
.testimonials-grid {
  position: relative;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-primary);
  box-shadow: 0 0 12px rgba(124, 77, 255, 0.5);
  transform: scale(1.3);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* ── Form Validation ── */
.form-group {
  position: relative;
}

.field-status {
  position: absolute;
  right: 16px;
  top: 50%;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.5);
  pointer-events: none;
}

.field-status.show {
  opacity: 1;
  transform: scale(1);
}

.form-group label .field-status {
  position: static;
  display: inline-block;
  margin-left: 6px;
}

.field-error-msg {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}

.field-error-msg.show {
  opacity: 1;
  transform: translateY(0);
}

.form-group input.field-valid,
.form-group textarea.field-valid,
.form-group select.field-valid {
  border-color: rgba(76, 175, 80, 0.4) !important;
}

.form-group input.field-invalid,
.form-group textarea.field-invalid,
.form-group select.field-invalid {
  border-color: rgba(255, 107, 107, 0.4) !important;
}

.char-counter {
  text-align: right;
  font-size: 12px;
  color: var(--text-light-secondary);
  opacity: 0.6;
  margin-top: 4px;
  transition: color 0.3s ease;
}

.char-counter.warning {
  color: #ffc107;
  opacity: 1;
}

.char-counter.limit {
  color: #ff6b6b;
  opacity: 1;
}

/* ── FAQ Search ── */
.faq-search-wrap {
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition-smooth);
  box-shadow: var(--clay-dark-in);
}

.faq-search-input::placeholder {
  color: var(--text-light-secondary);
  opacity: 0.5;
}

.faq-search-input:focus {
  border-color: rgba(124, 77, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.5;
  pointer-events: none;
}

.faq-no-results {
  text-align: center;
  color: var(--text-light-secondary);
  font-size: 15px;
  padding: 32px 0;
  display: none;
}

.faq-item.faq-hidden {
  display: none;
}

/* ── Timeline Scroll Progress ── */
.timeline-progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 0%;
  background: var(--accent-gradient);
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 4px;
  transition: height 0.1s linear;
  box-shadow: 0 0 12px rgba(124, 77, 255, 0.4);
}

@media (max-width: 768px) {
  .timeline-progress-line {
    left: 20px;
  }
}

/* ── Team Card Hover Flip ── */
.team-card {
  perspective: 1000px;
}

.team-card-inner {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.team-card.flipped .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.team-card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: var(--clay-bg-dark-card);
  border-radius: var(--radius-lg);
}

.team-card-back h3 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.team-card-back .team-role-back {
  font-size: 13px;
  color: var(--accent-tertiary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-back .team-bio {
  font-size: 14px;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-card-back .team-social {
  margin-top: auto;
}

.team-flip-hint {
  font-size: 11px;
  color: var(--text-light-secondary);
  opacity: 0.5;
  margin-top: 8px;
  text-align: center;
}

/* ── Menu Filter Animations ── */
.menu-category-section {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-category-section.filter-out {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.menu-category-section.filter-in {
  animation: filterSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.menu-item-card.stagger-in {
  animation: itemStaggerIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes itemStaggerIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Sticky Filter Bar ── */
.menu-filter-section.sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* ── Menu Active Category Scroll Indicator ── */
.filter-tab.scroll-active {
  background: rgba(124, 77, 255, 0.12);
  color: var(--accent-primary);
}

/* ═══════════════════════════════════
   Print Styles
═══════════════════════════════════ */
@media print {

  .hero-orb,
  .cursor-glow,
  .partners-strip,
  .main-nav,
  .mobile-menu-btn,
  .cta-section,
  .laptop-float-badge,
  .hero-buttons,
  .product-add-btn,
  .footer-social {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero-section,
  .products-section,
  .testimonials-section {
    background: white !important;
    color: black !important;
  }

  .hero-title,
  .about-text h2,
  .serve-header h2,
  .products-header h2,
  .features-header h2,
  .gallery-header h2,
  .testimonials-header h2 {
    color: black !important;
    -webkit-text-fill-color: black !important;
    background: none !important;
  }

  .hero-subtitle,
  .products-header p,
  .testimonial-card blockquote {
    color: #333 !important;
  }

  .stat-number,
  .product-price,
  .accent-text {
    -webkit-text-fill-color: black !important;
    background: none !important;
    color: black !important;
  }

  * {
    box-shadow: none !important;
  }
}