/* ============================================
   JACKETORY GARMENT — Design System
   Brand: #FA8112 (Orange), #FAF3E1, #F5E7C6, #222
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --c-primary: #FA8112;
  --c-primary-dark: #D96D0A;
  --c-primary-light: #FFB366;
  --c-cream: #FAF3E1;
  --c-cream-dark: #F5E7C6;
  --c-dark: #2d2d2d;
  --c-dark-light: #3d3d3d;
  --c-gray: #666666;
  --c-gray-light: #999999;
  --c-white: #FFFFFF;
  --c-bg: #FAFAFA;
  --c-bg-light: #FDFDFD;
  --c-overlay: rgba(34, 34, 34, 0.45);
  --c-overlay-strong: rgba(34, 34, 34, 0.75);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #FA8112 0%, #FFB366 100%);
  --grad-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --grad-cream: linear-gradient(135deg, #FAF3E1 0%, #F5E7C6 100%);
  --grad-hero: linear-gradient(135deg, rgba(40,40,45,0.45) 0%, rgba(20,20,25,0.55) 100%);

  /* Typography */
  --font: 'Kanit', sans-serif;
  --fs-xs: clamp(0.7rem, 1.2vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 1.5vw, 0.9rem);
  --fs-base: clamp(0.9rem, 2vw, 1rem);
  --fs-md: clamp(1rem, 2.2vw, 1.15rem);
  --fs-lg: clamp(1.15rem, 2.5vw, 1.35rem);
  --fs-xl: clamp(1.3rem, 3vw, 1.75rem);
  --fs-2xl: clamp(1.6rem, 4vw, 2.25rem);
  --fs-3xl: clamp(2rem, 5vw, 3rem);
  --fs-hero: clamp(2.2rem, 6vw, 3.5rem);

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-section: clamp(3rem, 8vw, 6rem);

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 900px;
  --nav-h: 70px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --shadow-card: 0 4px 24px rgba(250,131,18,0.10);
  --shadow-glow: 0 0 30px rgba(250,131,18,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%; 
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--c-dark);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ---------- Utility ---------- */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.container--narrow { max-width: var(--max-w-narrow); }
.section { padding: var(--sp-section) 0; }
.section--cream { background: var(--c-cream); }
.section--dark { background: var(--c-dark); color: var(--c-white); }
.section--gray { background: var(--c-bg); }
.section--gray-light { background: #FDFDFD; }
.text-center { text-align: center; }
.text-primary { color: var(--c-primary); }
.text-white { color: var(--c-white); }
.text-gray { color: var(--c-gray); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--sp-sm);
}
.section-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--sp-md);
}
.section-title span { color: var(--c-primary); }
.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-gray);
  max-width: 650px;
  margin: 0 auto var(--sp-2xl);
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform var(--duration) var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn--primary {
  background: var(--grad-primary);
  color: var(--c-white);
  box-shadow: 0 4px 15px rgba(250,131,18,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(250,131,18,0.45);
}
.btn--outline {
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
}
.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--c-white);
  color: var(--c-primary);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--dark {
  background: var(--c-dark);
  color: var(--c-white);
}
.btn--dark:hover {
  background: var(--c-dark-light);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2.8rem; font-size: var(--fs-base); }
.btn--sm { padding: 0.6rem 1.4rem; font-size: var(--fs-xs); }
.btn--line {
  background: #06C755;
  color: var(--c-white);
  box-shadow: 0 4px 15px rgba(6,199,85,0.35);
}
.btn--line:hover {
  background: #05B04C;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6,199,85,0.45);
}
.btn--call {
  background: var(--c-primary);
  color: var(--c-white);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--duration) var(--ease);
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
  height: 60px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.nav__logo img { height: 52px; transition: height var(--duration) var(--ease); }
.nav__logo-text {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-dark);
}
.nav__logo-text span { color: var(--c-primary); }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-dark);
  position: relative;
  padding: 0.25rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--duration) var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--c-primary); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { margin-left: var(--sp-md); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-dark);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero V2 — Split Layout ---------- */
@keyframes hero-bg-pan {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-v2 {
  position: relative;
  min-height: clamp(500px, 75vh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background-color: #FFF8F0;
  background-image: url('IMAGES/Jacketory background.png');
  background-size: 110%; /* slightly larger than cover to allow panning */
  background-position: center;
  background-repeat: no-repeat;
  animation: hero-bg-pan 35s ease-in-out infinite alternate;
}

/* Dot grid pattern */
.hero-v2__dotgrid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(250,131,18,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
}

/* Floating particles */
.hero-v2__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-v2__particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: hero-particle-rise linear infinite;
}
.hero-v2__particle--1 {
  width: 6px; height: 6px;
  background: rgba(250,131,18,0.25);
  left: 12%; animation-duration: 9s; animation-delay: 0s;
}
.hero-v2__particle--2 {
  width: 4px; height: 4px;
  background: rgba(250,131,18,0.2);
  left: 28%; animation-duration: 11s; animation-delay: 2s;
}
.hero-v2__particle--3 {
  width: 8px; height: 8px;
  background: rgba(250,131,18,0.15);
  left: 55%; animation-duration: 8s; animation-delay: 1s;
}
.hero-v2__particle--4 {
  width: 5px; height: 5px;
  background: rgba(250,131,18,0.2);
  left: 72%; animation-duration: 12s; animation-delay: 3s;
}
.hero-v2__particle--5 {
  width: 3px; height: 3px;
  background: rgba(250,131,18,0.3);
  left: 88%; animation-duration: 10s; animation-delay: 0.5s;
}
.hero-v2__particle--6 {
  width: 7px; height: 7px;
  background: rgba(250,131,18,0.12);
  left: 42%; animation-duration: 13s; animation-delay: 4s;
}
@keyframes hero-particle-rise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Decorative background shapes */
.hero-v2__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-v2__deco--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(250,131,18,0.08) 0%, transparent 70%);
}
.hero-v2__deco--2 {
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: -60px;
  background: radial-gradient(circle, rgba(250,131,18,0.06) 0%, transparent 70%);
}
.hero-v2__deco--3 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 35%;
  background: rgba(250,131,18,0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: hero-float 8s ease-in-out infinite;
}
.hero-v2__deco--line {
  position: absolute;
  top: 0;
  right: 38%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(250,131,18,0.1) 30%, rgba(250,131,18,0.1) 70%, transparent 100%);
  border-radius: 0;
  z-index: 0;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Grid — 2 columns */
.hero-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
}

/* Left: Text column */
.hero-v2__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge with glassmorphism + pulsing dot */
.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--c-primary);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: var(--sp-lg);
  border: 1px solid rgba(250,131,18,0.18);
  box-shadow: 0 4px 20px rgba(250,131,18,0.08);
}
.hero-v2__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  display: inline-block;
  animation: hero-badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hero-badge-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(250,131,18,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(250,131,18,0); }
}

/* Title with reveal animation */
.hero-v2__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-dark);
  margin-bottom: var(--sp-lg);
}
.hero-v2__title-line {
  display: inline-block;
}
.hero-v2__title-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-title-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.3s + var(--delay, 0) * 0.2s);
}
.hero-v2__title-accent {
  color: var(--c-primary);
  position: relative;
}
.hero-v2__title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(250,131,18,0.15);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: hero-underline-draw 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.9s;
}
@keyframes hero-title-enter {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-underline-draw {
  to { transform: scaleX(1); }
}

.hero-v2__desc {
  font-size: var(--fs-base);
  color: var(--c-gray);
  line-height: 1.8;
  margin-bottom: var(--sp-xl);
  max-width: 500px;
  font-weight: 300;
}

/* Checkmark features — staggered entrance */
.hero-v2__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.hero-v2__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-dark);
  opacity: 0;
  transform: translateX(-15px);
  animation: hero-feature-in 0.5s ease forwards;
  animation-delay: calc(0.8s + var(--i, 0) * 0.12s);
}
@keyframes hero-feature-in {
  to { opacity: 1; transform: translateX(0); }
}
.hero-v2__check {
  flex-shrink: 0;
}

/* Actions */
.hero-v2__actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.hero-v2__actions--mobile { 
  display: none; 
}
.hero-v2__cta {
  position: relative;
  overflow: hidden;
}
.hero-v2__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: none;
}
.hero-v2__cta:hover::before {
  animation: hero-btn-shimmer 0.6s ease;
}
@keyframes hero-btn-shimmer {
  to { transform: translateX(100%); }
}
.hero-v2__cta svg {
  transition: transform var(--duration) var(--ease);
}
.hero-v2__cta:hover svg {
  transform: translateX(4px);
}

/* Right: Product Images with glow */
.hero-v2__images {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-v2__glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,131,18,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: hero-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Carousel slots — each .hero-v2__img-* cycles through 3 positions via data-slot */
.hero-v2__img-main,
.hero-v2__img-secondary,
.hero-v2__img-tertiary,
.hero-v2__img-quaternary,
.hero-v2__img-quinary {
  position: absolute;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity, z-index;
}

/* Prevent image dragging to improve swipe/click experience */
.hero-v2__product {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  animation: hero-product-float 6s ease-in-out infinite;
}

/* Slot: front (active) */
[data-slot="front"] {
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
[data-slot="front"] .hero-v2__product {
  height: 500px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 54px rgba(0,0,0,0.22));
}

/* Slot: right-back */
[data-slot="right"] {
  z-index: 2;
  top: 50%;
  left: 68%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0.75;
}
[data-slot="right"] .hero-v2__product {
  height: 500px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.15));
}

/* Slot: left-back */
[data-slot="left"] {
  z-index: 2;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0.75;
}
[data-slot="left"] .hero-v2__product {
  height: 500px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.1));
}

/* Hover: front image lifts up */
[data-slot="front"]:hover .hero-v2__product {
  filter: drop-shadow(0 40px 64px rgba(250,131,18,0.25));
}

/* Far slots (invisible, out of screen, transition state for 5-items) */
[data-slot="far-right"], [data-slot="far-left"] {
  z-index: 1;
  top: 50%;
  opacity: 0;
  pointer-events: none;
}
[data-slot="far-right"] { left: 88%; transform: translate(-50%, -50%) scale(0.65); }
[data-slot="far-left"] { left: 12%; transform: translate(-50%, -50%) scale(0.65); }

[data-slot="far-right"] .hero-v2__product, [data-slot="far-left"] .hero-v2__product {
  height: 500px;
  width: auto;
  object-fit: contain;
}

@keyframes hero-product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Dot indicators */
.hero-v2__dots {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-v2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250,131,18,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-v2__dot.active {
  background: var(--c-primary);
  transform: scale(1.3);
}

/* Floating premium badges */
.hero-v2__float-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.05),
    0 16px 42px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
  white-space: nowrap;
  pointer-events: none;
}
.hero-v2__float-badge svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 3px;
  background: rgba(250,131,18,0.08);
  border-radius: 8px;
  stroke: #FA8112;
}
.hero-v2__float-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.hero-v2__float-badge-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-dark);
  letter-spacing: -0.3px;
}
.hero-v2__float-badge-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-gray);
  letter-spacing: 0.2px;
}

/* Badge layout:  top-left / top-right / bottom-center — triangular balance */
.hero-v2__float-badge--delivery {
  top: 8%;
  left: -5%;
  animation: hero-badge-float-a 5s ease-in-out infinite;
}
.hero-v2__float-badge--exp {
  top: 12%;
  right: -8%;
  animation: hero-badge-float-b 5.5s ease-in-out infinite;
}
.hero-v2__float-badge--quality {
  bottom: 7%;
  left: 55%;
  transform: translateX(-50%);
  animation: hero-badge-float-c 6s ease-in-out infinite;
}

/* Gentle, distinct float rhythms */
@keyframes hero-badge-float-a {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(4px, -8px); }
}
@keyframes hero-badge-float-b {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-5px, -7px); }
}
@keyframes hero-badge-float-c {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-9px); }
}

/* Marquee ticker */
.hero-v2__marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid rgba(250,131,18,0.08);
  border-bottom: 1px solid rgba(250,131,18,0.08);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-v2__marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: hero-marquee 25s linear infinite;
  width: max-content;
}
.hero-v2__marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250,131,18,0.35);
}
@keyframes hero-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats Bar */
.hero-v2__stats-bar {
  position: relative;
  z-index: 2;
  background: var(--c-dark);
  padding: var(--sp-xl) 0;
}
.hero-v2__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2xl);
  flex-wrap: wrap;
}
.hero-v2__stat {
  text-align: center;
  min-width: 100px;
}
.hero-v2__stat-num {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.hero-v2__stat-label {
  font-size: var(--fs-xs);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.hero-v2__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}


/* ============================================
   PRODUCT CATEGORY GRID (Premium 2x2)
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2xl); /* 3rem gap for premium air */
  margin-bottom: var(--sp-3xl);
  text-align: left;
}

.category-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 280px;
  text-decoration: none;
  margin-top: 2rem; /* Give room for pop-out image */
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background: var(--c-white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.category-card:hover .category-card__bg {
  box-shadow: 0 20px 50px rgba(250,131,18,0.12);
  border-color: rgba(250,131,18,0.2);
}

.category-card__bg::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(250,131,18,0.08) 0%, rgba(250,131,18,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.category-card__bg-text {
  position: absolute;
  right: 1rem;
  bottom: -40px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0,0,0,0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
}

/* Content wrappers */
.category-card__content {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  padding: var(--sp-2xl);
}

.category-card__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: var(--sp-xs);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.category-card__desc {
  font-size: 0.95rem;
  color: var(--c-gray);
  margin-bottom: var(--sp-lg);
  line-height: 1.6;
}

.category-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--duration) var(--ease);
}

.category-card:hover .category-card__btn {
  background: var(--c-primary-dark, #e6700b);
  transform: translateX(5px);
}

.category-card__visual {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.category-card__img {
  width: 140%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(15px 15px 25px rgba(0,0,0,0.15));
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: bottom center;
  transform: translateY(-8%) scale(1.05); /* initial pop out */
}

/* Subtle back ghost image */
.category-card__img-ghost {
  position: absolute;
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
  opacity: 0.15;
  filter: grayscale(100%);
  z-index: -1;
  transform: translate(-30px, 10px);
}

.category-card:hover .category-card__img {
  transform: translateY(-12%) scale(1.1);
}

@media (max-width: 992px) {
  .category-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
}

@media (max-width: 480px) {
  .category-card { flex-direction: column; text-align: center; }
  .category-card__content { flex: 1; padding: var(--sp-xl); padding-bottom: 0; margin-bottom: var(--sp-md); }
  .category-card__visual { width: 100%; padding-bottom: var(--sp-xl); }
  .category-card__img { max-width: 220px; transform: translateY(0) scale(1.05); }
  .category-card:hover .category-card__img { transform: translateY(-5px) scale(1.08); }
  .category-card__bg-text { display: none; }
  .category-card__img-ghost { transform: translate(-20px, 0); max-width: 180px; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: var(--sp-xl);
  justify-content: center;
}
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 380px)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card-grid--5 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card-grid--center .card { text-align: center; }
.card-grid--center .card__icon { margin-left: auto; margin-right: auto; }

.card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.card__icon {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  background: var(--c-bg); /* Brighter default */
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg) auto;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}
.card__icon--luxe {
  background: radial-gradient(circle, #ffffff 0%, #f9f9f9 100%);
  border: 1px solid rgba(250,131,18,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.card:hover .card__icon {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--c-primary);
  box-shadow: 0 15px 35px rgba(250,131,18,0.15);
}
.card__icon img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  /* Filters removed as images are now truly transparent */
  transition: transform var(--duration) var(--ease);
}
.card__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--sp-sm);
}
.card__text {
  font-size: var(--fs-sm);
  color: var(--c-gray);
  line-height: 1.7;
}
.card__number {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: rgba(250,131,18,0.08);
  line-height: 1;
}

/* Service Card Image Variant */
.card--service {
  padding: 0;
  overflow: hidden;
}
.card--service .card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card--service .card__body {
  padding: var(--sp-xl);
}
.card--service .card__icon {
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  margin-top: calc(-24px - var(--sp-md));
  position: relative;
  z-index: 2;
  background: var(--c-white);
  box-shadow: var(--shadow-md);
}

/* ---------- Process Steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-xl);
  counter-reset: step;
}
.process__step:nth-child(1) { grid-column: 1 / 3; }
.process__step:nth-child(2) { grid-column: 3 / 5; }
.process__step:nth-child(3) { grid-column: 5 / 7; }
.process__step:nth-child(4) { grid-column: 2 / 4; }
.process__step:nth-child(5) { grid-column: 4 / 6; }
.process__step {
  text-align: center;
  position: relative;
  padding: var(--sp-xl) var(--sp-md);
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--c-primary);
  opacity: 0.2;
  margin-bottom: var(--sp-sm);
}
.process__img-wrap {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-md);
  box-shadow: var(--shadow-sm);
}
.process__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}
.process__step:hover .process__img {
  transform: scale(1.1);
}
.process__step { cursor: default; }
.process__img-wrap { position: relative; }
.process__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  border-radius: var(--radius-md);
}
.process__step:hover .process__overlay { opacity: 1; }
.process__overlay span {
  color: var(--c-white);
  font-weight: 600;
  font-size: var(--fs-sm);
  background: rgba(255,255,255,0.18);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.process__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c-white);
  margin: 0 auto var(--sp-lg);
  box-shadow: 0 6px 20px rgba(250,131,18,0.3);
}
.process__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--sp-xs);
}
.process__text {
  font-size: var(--fs-xs);
  color: var(--c-gray);
}
.process__connector {
  display: none;
}

/* ---------- Order Steps Banner ---------- */
.order-steps {
  background: var(--grad-primary);
  padding: var(--sp-3xl) 0;
  position: relative;
  overflow: hidden;
}
.order-steps::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.order-steps::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.order-steps__title {
  text-align: center;
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-2xl);
  position: relative;
  z-index: 1;
}
.order-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  position: relative;
  z-index: 1;
}
.order-steps__item {
  text-align: center;
  position: relative;
  padding: 0 var(--sp-sm);
}
/* Connector arrow between steps */
.order-steps__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 42px;
  right: -14px;
  width: 28px;
  height: 28px;
  border-right: 3px solid rgba(255,255,255,0.4);
  border-top: 3px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}
.order-steps__icon {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-full);
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all var(--duration) var(--ease);
}
.order-steps__item:hover .order-steps__icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.order-steps__name {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-sm);
}
.order-steps__desc {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 900px) {
  .order-steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2xl) var(--sp-xl);
  }
  .order-steps__item:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .order-steps__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all var(--duration) var(--ease);
}
.faq-item:hover {
  box-shadow: 0 8px 30px rgba(250,131,18,0.08);
  border-color: rgba(250,131,18,0.25);
  transform: translateY(-2px);
}
.faq-item.active {
  box-shadow: 0 8px 30px rgba(250,131,18,0.08);
  border-color: rgba(250,131,18,0.3);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-lg) var(--sp-xl);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-dark);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
  list-style: none; /* Hide default arrow */
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--c-primary); }
.faq-item__q:hover .faq-item__icon { border-color: var(--c-primary); box-shadow: var(--shadow-sm); transform: scale(1.05); }

.faq-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--c-bg);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--c-primary);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}

.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 14px; }

.faq-item.active .faq-item__icon {
  background: var(--grad-primary);
  border-color: transparent;
  transform: rotate(135deg);
}

.faq-item.active .faq-item__icon::before,
.faq-item.active .faq-item__icon::after {
  background: var(--c-white);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease);
  padding: 0 var(--sp-xl);
  font-size: var(--fs-sm);
  color: var(--c-dark-light);
  line-height: 1.8;
  margin: 0;
  opacity: 0;
}
.faq-item.active .faq-item__a { 
  max-height: 400px;
  padding-bottom: var(--sp-xl);
  opacity: 1;
}
.faq-item__a-inner {
  display: none;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: var(--sp-3xl) var(--sp-2xl);
  text-align: center;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 1;
}
.cta-banner__text {
  font-size: var(--fs-md);
  font-weight: 300;
  margin-bottom: var(--sp-xl);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.cta-banner__actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Gallery / Portfolio ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-md);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: var(--c-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  color: var(--c-white);
  font-weight: 500;
  font-size: var(--fs-sm);
}

/* ---------- Product Samples Showcase ---------- */
.product-samples {
  background: var(--c-bg-light);
  padding-bottom: var(--sp-3xl);
}
.product-samples__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}

.product-samples__item {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
}

@media (max-width: 1024px) {
  .product-samples__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-samples__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-samples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
  }
  .product-samples__name { font-size: var(--fs-sm); }
}
@media (max-width: 375px) {
  .product-samples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.product-samples__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-samples__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f5f5f5;
}
.product-samples__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Keep contain+padding for existing transparent PNG product shots */
.product-samples__img[src$=".png"] {
  object-fit: contain;
  padding: 1rem;
  background: #fdfdfd;
}
.product-samples__item:hover .product-samples__img {
  transform: scale(1.12);
}

/* Hover Overlay Effect */
.product-samples__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
  z-index: 10;
}
.product-samples__item:hover .product-samples__overlay {
  opacity: 1;
}
.product-samples__overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 131, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(250, 131, 18, 0.3);
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-samples__item:hover .product-samples__overlay-icon {
  transform: translateY(0);
}
.product-samples__overlay-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}
.product-samples__item:hover .product-samples__overlay-text {
  transform: translateY(0);
}
.product-samples__info {
  padding: var(--sp-md);
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-samples__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-dark);
}
.product-samples__actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-lg);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--c-dark);
  border: none;
  z-index: 10001;
  user-select: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}
.lightbox__close:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(90deg);
}
.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active .lightbox__content {
  transform: scale(1);
}
.lightbox__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  background: #fdfdfd;
  padding: 1.5rem;
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  color: var(--c-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
  user-select: none;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--c-primary);
  color: var(--c-white);
}
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: var(--fs-sm);
  background: rgba(0,0,0,0.5);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ---------- Video Showcase ---------- */
.video-showcase {
  position: relative;
  overflow: hidden;
}
.video-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 500px;
  height: 500px;
  background: rgba(250,131,18,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.video-showcase::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(250,131,18,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.video-showcase__wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(250,131,18,0.2), 0 0 60px rgba(250,131,18,0.08);
  aspect-ratio: 16 / 9;
  background: #111;
}
.video-showcase__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-showcase__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(250,243,225,0.2) 0%, transparent 15%, transparent 85%, rgba(250,243,225,0.2) 100%),
    linear-gradient(90deg, rgba(250,243,225,0.12) 0%, transparent 10%, transparent 90%, rgba(250,243,225,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.custom-watermark {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 46%;
  min-width: 280px;
  max-width: 90%;
  justify-content: center;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  opacity: 0.9;
  background: rgba(0,0,0,0.3);
  padding: 10px 20px;
  border-radius: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.custom-watermark__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.custom-watermark__text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.custom-watermark__brand {
  color: var(--c-white);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.custom-watermark__brand span {
  color: var(--c-primary);
}
.custom-watermark__desc {
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .video-showcase__wrapper {
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(250,131,18,0.15);
  }
  .custom-watermark {
    padding: 6px 12px 6px 8px;
    gap: 8px;
  }
  .custom-watermark__icon { width: 26px; height: 26px; }
  .custom-watermark__brand { font-size: 13px; }
  .custom-watermark__desc { font-size: 8px; letter-spacing: 1.5px; }
}
@media (max-width: 480px) {
  .video-showcase__wrapper {
    border-radius: var(--radius-sm);
  }
}



/* ---------- Vision Grid ---------- */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  margin: 2.5rem auto 0;
  max-width: 1100px;
}
.vision-grid__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vision-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FA8112 0%, #D96D0A 100%);
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 25px rgba(250,131,18,0.3);
}
.vision-grid__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1.2rem;
}
.vision-grid__text {
  font-size: 1.15rem;
  color: var(--c-gray);
  line-height: 2;
  font-weight: 400;
  margin: 0;
}

/* Right: Image block */
.vision-grid__image {
  display: flex;
  justify-content: center;
}
.vision-grid__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.vision-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vision-grid__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45,45,45,0.55) 0%, rgba(45,45,45,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--sp-xl);
}
.vision-grid__logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.vision-grid__tagline {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
    text-align: center;
  }
  .vision-grid__content { align-items: center; }
  .vision-grid__img-wrapper { max-width: 100%; }
  .vision-grid__logo { height: 48px; }
  .vision-grid__tagline { font-size: 0.9rem; letter-spacing: 0.25em; }
}

/* ---------- Material Grid ---------- */
.material-grid {
  display: flex;
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
  overflow-x: auto;
  padding: 10px 5px var(--sp-xl);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.material-grid::-webkit-scrollbar { height: 6px; }
.material-grid::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 10px; }
.material-grid::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 10px; }

.material-card {
  flex: 0 0 240px;
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  text-align: center;
  cursor: pointer;
  position: relative;
  scroll-snap-align: center;
}
.material-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.material-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.material-card__body {
  padding: var(--sp-md);
}
.material-card__title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-dark);
}
.material-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  border-radius: var(--radius-md);
}
.material-card:hover .material-card__overlay { opacity: 1; }
.material-card__overlay span {
  color: var(--c-white);
  font-weight: 600;
  font-size: var(--fs-sm);
  background: rgba(255,255,255,0.18);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

/* ---------- Material Modal ---------- */
.material-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}
.material-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.material-modal {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s var(--ease);
  position: relative;
}
.material-modal-backdrop.active .material-modal {
  transform: translateY(0) scale(1);
}
.material-modal__close {
  position: sticky;
  top: var(--sp-md);
  z-index: 10;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: var(--sp-md);
  margin-top: 0;
  margin-bottom: -48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--c-dark);
  border: none;
  box-shadow: var(--shadow-md);
  transition: all var(--duration) var(--ease);
}
.material-modal__close:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(90deg);
}
.material-modal__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.material-modal__body {
  padding: var(--sp-2xl);
}
.material-modal__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
  color: var(--c-dark);
}
.material-modal__weight {
  display: inline-block;
  background: var(--c-cream);
  color: var(--c-primary);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-xl);
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-lg);
}
.material-modal__desc {
  font-size: var(--fs-base);
  color: var(--c-gray);
  line-height: 1.8;
  margin-bottom: var(--sp-xl);
}
.material-modal__section-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.material-modal__features {
  display: grid;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.material-modal__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--c-dark-light);
  padding: 0.5rem 0.75rem;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
}
.material-modal__feature::before {
  content: '✓';
  color: var(--c-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.material-modal__usecases {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.material-modal__usecase {
  background: var(--grad-cream);
  color: var(--c-dark);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  font-size: var(--fs-xs);
  font-weight: 500;
}
.material-modal__cta {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(0,0,0,0.06);
}

@media (max-width: 600px) {
  .material-modal { max-width: 95vw; border-radius: var(--radius-md); }
  .material-modal__img { height: 200px; }
  .material-modal__body { padding: var(--sp-lg); }
  .material-modal__title { font-size: var(--fs-lg); }
  .material-modal__desc { font-size: var(--fs-sm); }
  .material-modal__feature { font-size: var(--fs-xs); padding: 8px 12px; }
  .material-modal__usecase { font-size: var(--fs-xs); }
  .material-modal__cta { flex-direction: column; }
  .material-modal__cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 375px) {
  .material-modal__img { height: 160px; }
  .material-modal__body { padding: var(--sp-md); }
  .material-modal__section-title { font-size: var(--fs-sm); }
}

/* ---------- Product Showcase ---------- */
.product-showcase {
  display: flex;
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
  overflow-x: auto;
  padding: 10px 5px var(--sp-xl);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.product-showcase::-webkit-scrollbar { height: 6px; }
.product-showcase::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 10px; }
.product-showcase::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 10px; }

.product-item {
  flex: 0 0 280px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid rgba(0,0,0,0.03);
  scroll-snap-align: center;
}
.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-item__img-wrap {
  width: 100%;
  height: 280px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
}
.product-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-item__body {
  padding: var(--sp-lg);
  text-align: center;
}
.product-item__tag {
  display: inline-block;
  font-size: 10px;
  background: var(--c-cream);
  color: var(--c-primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.product-item__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--sp-xs);
}
.product-item__desc {
  font-size: var(--fs-xs);
  color: var(--c-gray);
  line-height: 1.5;
}
/* Photo variant for real product photos (JPG) */
.product-item__img-wrap--photo {
  padding: 0;
  background: #f0f0f0;
}
.product-item__img-wrap--photo .product-item__img {
  object-fit: cover;
}

/* ---------- Blog Grid (Flexbox for centered last row) ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2xl);
}

/* ---------- Blog Cards ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(250,131,18,0.15);
}
.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.blog-card__img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card__img {
  transform: scale(1.06);
}
.blog-card__body {
  padding: var(--sp-xl) var(--sp-xl) var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--c-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--sp-sm);
  background: rgba(250,131,18,0.08);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  width: fit-content;
}
.blog-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  color: var(--c-dark);
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card__title {
  color: var(--c-primary);
}
.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--c-gray);
  margin-bottom: var(--sp-lg);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.7;
  flex: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-white);
  background: var(--grad-primary);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(250,131,18,0.25);
  margin-bottom: var(--sp-md);
}
.blog-card:hover .blog-card__link {
  box-shadow: 0 6px 20px rgba(250,131,18,0.4);
  transform: translateX(4px);
}
.blog-card__link::after {
  content: '→';
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card__link::after {
  transform: translateX(4px);
}

/* ---------- Contact Page — Redesign ---------- */

/* Hero */
.contact-hero {
  background: var(--grad-dark);
  padding: calc(var(--nav-h) + var(--sp-3xl)) 0 var(--sp-3xl);
  text-align: center;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: var(--grad-primary);
  opacity: 0.08;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.contact-hero__breadcrumb {
  font-size: var(--fs-sm);
  opacity: 0.6;
  margin-bottom: var(--sp-sm);
  position: relative;
}
.contact-hero__breadcrumb a { color: var(--c-primary); }
.contact-hero__breadcrumb a:hover { text-decoration: underline; }
.contact-hero__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-xs);
  position: relative;
}
.contact-hero__subtitle {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
  position: relative;
}
.contact-hero__desc {
  font-size: var(--fs-sm);
  opacity: 0.7;
  position: relative;
  font-weight: 300;
}

/* Main Section */
.contact-main {
  background: var(--c-dark);
  padding: var(--sp-section) 0;
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

/* Contact Details */
.contact-details__heading {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: var(--sp-xl);
}
.contact-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: var(--c-dark-light);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-xl);
  margin-bottom: var(--sp-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--duration) var(--ease);
}
.contact-card:hover {
  border-color: rgba(250,131,18,0.3);
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(250,131,18,0.08);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(250,131,18,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
}
.contact-card__label {
  font-size: var(--fs-xs);
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-card__value {
  font-weight: 400;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
}
.contact-card__value a {
  color: rgba(255,255,255,0.85);
}
.contact-card__value a:hover {
  color: var(--c-primary);
}

/* Sidebar — QR + Social */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.contact-qr {
  background: var(--c-dark-light);
  border-radius: var(--radius-md);
  padding: var(--sp-2xl);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-qr__title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: var(--sp-lg);
}
.contact-qr__img-wrap {
  display: inline-block;
  padding: var(--sp-md);
  background: var(--c-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-md);
}
.contact-qr__img-wrap img {
  display: block;
}
.contact-qr__caption {
  font-size: var(--fs-xs);
  color: var(--c-gray-light);
  font-weight: 300;
}

.contact-social {
  background: var(--c-dark-light);
  border-radius: var(--radius-md);
  padding: var(--sp-xl) var(--sp-2xl);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-social__title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: var(--sp-lg);
}
.contact-social__icons {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
}
.contact-social__link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: all var(--duration) var(--ease);
}
.contact-social__link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.contact-social__link--fb { background: #1877F2; }
.contact-social__link--line { background: #06C755; }
.contact-social__link--phone { background: var(--c-primary); }

/* Map Section */
.contact-map-section {
  position: relative;
}
.contact-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--c-dark-light);
  border-bottom: 2px solid var(--c-primary);
}
.contact-map-overlay__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  padding: var(--sp-lg) 0;
  flex-wrap: wrap;
}
.contact-map-overlay__info {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  color: var(--c-white);
}
.contact-map-overlay__info strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.contact-map-overlay__info p {
  font-size: var(--fs-xs);
  color: var(--c-gray-light);
  margin: 0;
}
.contact-map-overlay__actions {
  display: flex;
  gap: var(--sp-sm);
}
.contact-map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* LINE Contact Card Variant */
.contact-card--line {
  border: 1px solid rgba(6,199,85,0.3);
  background: rgba(6,199,85,0.08);
}
.contact-card--line:hover {
  border-color: rgba(6,199,85,0.5);
  box-shadow: 0 4px 24px rgba(6,199,85,0.15);
}
.contact-card__icon--line {
  background: rgba(6,199,85,0.15);
  color: #06C755;
}

/* Quick Contact Form */
.contact-quick-form {
  background: var(--c-dark-light);
  border-radius: var(--radius-md);
  padding: var(--sp-2xl);
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-quick-form__title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: var(--sp-lg);
  text-align: center;
}
.contact-form__group {
  margin-bottom: var(--sp-md);
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.85rem var(--sp-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-family: var(--font);
  transition: all var(--duration) var(--ease);
  outline: none;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--c-primary);
  background: rgba(250,131,18,0.05);
  box-shadow: 0 0 0 3px rgba(250,131,18,0.1);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 80px;
}

/* CTA Section */
.contact-cta {
  background: var(--c-dark);
  padding: var(--sp-section) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-cta__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: var(--sp-sm);
}
.contact-cta__desc {
  font-size: var(--fs-sm);
  color: var(--c-primary);
  margin-bottom: var(--sp-xl);
  font-weight: 300;
}
.contact-cta__actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}
.contact-cta .btn--outline {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.contact-cta .btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

/* ---------- Process Modal Overrides ---------- */
.process-modal-card {
  max-width: 900px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}
.process-modal-card__img-col {
  width: 100%;
  height: 100%;
  position: relative;
}
.process-modal-card__img-col .material-modal__img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  object-fit: cover;
}
.process-modal-card__body {
  padding: var(--sp-3xl) var(--sp-2xl);
  overflow-y: auto;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Process modal header (step num + title) */
.process-modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.process-modal__step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--c-primary);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}
.process-modal-card .material-modal__title {
  margin-bottom: 0;
  font-size: 1.6rem;
}

/* Process modal badges row */
.process-modal__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.process-modal__tools {
  background: var(--c-bg);
  color: var(--c-gray);
}
/* Process modal desc */
.process-modal__desc {
  font-size: 1rem;
  color: var(--c-gray-light);
  line-height: 1.8;
}
/* Process modal section title */
.process-modal__section-title {
  margin-top: 1.5rem;
}
/* Process modal CTA */
.process-modal__cta {
  margin-top: 2rem;
}

.process-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}
.process-modal__close:hover {
  background: var(--c-primary);
  color: #fff;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  /* Process modal — full screen on mobile */
  .material-modal-backdrop#process-modal {
    padding: 0;
    align-items: stretch;
  }
  .process-modal-card {
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .process-modal-card__img-col {
    flex: 0 0 auto;
  }
  .process-modal-card__img-col .material-modal__img {
    height: 200px;
    min-height: 200px;
    display: block;
  }
  .process-modal-card__body {
    padding: var(--sp-lg) var(--sp-xl);
    max-height: none;
    flex: 1 1 0%;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Step number & title: ensure visible */
  .process-modal__step-num {
    font-size: 2rem !important;
    opacity: 0.3 !important;
  }
  .process-modal-card .material-modal__title {
    font-size: var(--fs-xl) !important;
    line-height: 1.3;
    word-break: keep-all;
  }
  /* Close button: larger tap target */
  .process-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  /* Badges row */
  .process-modal__badges {
    margin-bottom: var(--sp-md);
  }
  .process-modal__duration,
  .process-modal__tools {
    font-size: var(--fs-xs);
  }
  /* Description */
  .process-modal__desc {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--sp-md);
  }
  /* Section title */
  .process-modal__section-title {
    margin-top: var(--sp-md);
    font-size: var(--fs-sm);
  }
  /* Features */
  .process-modal-card .material-modal__feature {
    font-size: var(--fs-xs);
    padding: 8px 12px;
  }
  .process-modal-card .material-modal__features {
    margin-bottom: var(--sp-md);
  }
  /* CTA buttons */
  .process-modal__cta {
    flex-direction: column;
    margin-top: var(--sp-md);
  }
  .process-modal__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .process-modal-card__img-col .material-modal__img {
    height: 180px;
    min-height: 180px;
  }
  .process-modal-card__body {
    padding: var(--sp-md);
  }
  .process-modal__step-num {
    font-size: 1.6rem !important;
  }
  .process-modal-card .material-modal__title {
    font-size: var(--fs-lg) !important;
  }
}

@media (max-width: 375px) {
  .process-modal-card__img-col .material-modal__img {
    height: 150px;
    min-height: 150px;
  }
  .process-modal-card .material-modal__title {
    font-size: var(--fs-base) !important;
  }
}

/* ---------- Reviews Slider ---------- */
.reviews-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
}
.reviews-slider::before,
.reviews-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.reviews-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--c-bg), transparent);
}
.reviews-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--c-bg), transparent);
}
.reviews-slider__track {
  display: flex;
  gap: var(--sp-xl);
  width: 100%;
  overflow-x: auto;
  padding: 0 var(--sp-xl) var(--sp-xl);
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;    /* Firefox */
  cursor: grab;
  /* Improve touch scrolling */
  -webkit-overflow-scrolling: touch;
}
.reviews-slider__track::-webkit-scrollbar {
  display: none;
}
.reviews-slider__track:active {
  cursor: grabbing;
}
.review-card {
  width: 400px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: normal;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(250,131,18,0.12);
}
.review-card__stars {
  color: #FFA41C;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 1;
}
.review-card__text {
  font-size: var(--fs-base);
  color: var(--c-gray);
  line-height: 1.8;
  font-weight: 300;
  flex-grow: 1;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: var(--sp-lg);
  margin-top: var(--sp-sm);
  text-align: left;
}
.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .review-card { width: 300px; padding: var(--sp-lg); }
  .review-card__text { font-size: var(--fs-sm); }
}
@media (max-width: 375px) {
  .review-card { width: 260px; padding: var(--sp-md); }
  .review-card__stars { font-size: 1.1rem; }
  .review-card__text { font-size: var(--fs-xs); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.footer__brand-name {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-md);
}
.footer__brand-name span { color: var(--c-primary); }
.footer__brand-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}
.footer__heading {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-lg);
  position: relative;
}
.footer__link {
  display: block;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
  transition: color var(--duration) var(--ease);
}
.footer__link:hover { color: var(--c-primary); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
  font-size: var(--fs-xs);
}
.footer__social { display: flex; gap: var(--sp-md); }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}
.footer__social a:hover {
  background: var(--c-primary);
  transform: translateY(-2px);
}

/* Footer — Mobile Centered */
@media (max-width: 768px) {
  .footer {
    padding: var(--sp-2xl) 0 var(--sp-lg);
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: var(--sp-lg);
    text-align: center;
  }
  /* Brand section */
  .footer__grid > div:first-child {
    padding-bottom: var(--sp-xl);
    margin-bottom: var(--sp-xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer__grid > div:first-child .footer__brand {
    justify-content: center !important;
  }
  .footer__brand-name {
    margin-bottom: var(--sp-xs);
  }
  .footer__brand-desc {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-md);
    font-size: var(--fs-xs);
    line-height: 1.8;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__social a {
    width: 42px;
    height: 42px;
  }
  /* Menu columns: stacked full width */
  .footer__grid > div:nth-child(2),
  .footer__grid > div:nth-child(3) {
    display: block;
    width: 100%;
    padding: var(--sp-sm) 0;
    text-align: center;
  }
  .footer__heading {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-xs);
  }
  .footer__heading::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--c-primary);
    border-radius: 2px;
    margin: var(--sp-xs) auto 0;
  }
  .footer__link {
    font-size: var(--fs-xs);
    margin-bottom: 0.4rem;
    padding: 0.3rem 0;
  }
  /* Contact column: full width, centered */
  .footer__grid > div:nth-child(4) {
    padding-top: var(--sp-lg);
    margin-top: var(--sp-sm);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer__grid > div:nth-child(4) .footer__link {
    justify-content: center !important;
    font-size: var(--fs-xs);
  }
  .footer__grid > div:nth-child(4) p.footer__link {
    justify-content: center !important;
  }
  /* Bottom bar */
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-sm);
    padding-top: var(--sp-lg);
    font-size: 0.65rem;
  }
  .footer__bottom p {
    order: 2;
    opacity: 0.6;
  }
  .footer__bottom div {
    order: 1;
  }
  .footer__bottom .footer__link {
    display: inline !important;
    font-size: 0.65rem;
    opacity: 0.8;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: var(--sp-xl) 0 var(--sp-md);
  }
  .footer__grid > div:nth-child(2),
  .footer__grid > div:nth-child(3) {
    padding: var(--sp-md) 0;
  }
  .footer__brand-desc {
    font-size: 11px;
  }
  .footer__social a {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 375px) {
  .footer__grid > div:nth-child(2),
  .footer__grid > div:nth-child(3) {
    width: 100%;
    padding: var(--sp-sm) 0;
  }
  .footer__heading {
    font-size: var(--fs-xs);
  }
  .footer__link {
    font-size: 11px;
  }
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: var(--sp-xl);
  right: var(--sp-xl);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
  transition: all var(--duration) var(--ease);
  animation: pulse-ring 2s ease-out infinite;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn--line { background: #06C755; }
.floating-btn--facebook { background: #1877F2; animation-delay: 0.5s; }
.floating-btn--call { background: var(--c-primary); animation-delay: 1s; }

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(250,131,18,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(250,131,18,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,131,18,0); }
}

/* ---------- Page Header (sub-pages) ---------- */
.page-header {
  background: var(--grad-dark);
  padding: calc(var(--nav-h) + var(--sp-3xl)) 0 var(--sp-3xl);
  text-align: center;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: var(--grad-primary);
  opacity: 0.08;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.page-header__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
  position: relative;
}
.page-header__breadcrumb {
  font-size: var(--fs-sm);
  opacity: 0.7;
  position: relative;
}
.page-header__breadcrumb a { color: var(--c-primary); }
.page-header__breadcrumb a:hover { text-decoration: underline; }

/* ---------- Size Chart ---------- */
.size-chart {
  overflow-x: auto;
  margin: var(--sp-xl) 0;
}
.size-chart table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.size-chart th, .size-chart td {
  padding: var(--sp-md) var(--sp-lg);
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.size-chart th {
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
}
.size-chart tr:nth-child(even) { background: var(--c-cream); }

/* ---------- Blog Article ---------- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}
.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--sp-2xl);
  display: block;
}
.article-content h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: var(--sp-2xl) 0 var(--sp-md);
  color: var(--c-dark);
  padding-bottom: var(--sp-sm);
  border-bottom: 3px solid rgba(250,131,18,0.15);
}
.article-content h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: var(--sp-xl) 0 var(--sp-md);
  color: var(--c-dark);
  padding-left: var(--sp-md);
  border-left: 4px solid var(--c-primary);
}
.article-content p {
  margin-bottom: var(--sp-lg);
  line-height: 1.9;
  color: var(--c-dark-light);
}
.article-content ul, .article-content ol {
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-lg);
}
.article-content li {
  margin-bottom: var(--sp-sm);
  line-height: 1.8;
  list-style: disc;
  color: var(--c-dark-light);
}
.article-content img {
  border-radius: var(--radius-lg);
  margin: var(--sp-xl) 0;
  box-shadow: var(--shadow-md);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
  font-size: var(--fs-sm);
  color: var(--c-gray);
}
.article-meta span {
  background: var(--c-cream);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-weight: 500;
}
.article-cta {
  margin-top: var(--sp-2xl);
  background: linear-gradient(135deg, #FA8112 0%, #FF9A3C 50%, #FFB366 100%);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-2xl) var(--sp-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(250,131,18,0.3);
}
.article-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.article-cta__title {
  color: var(--c-white);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.article-cta__desc {
  color: rgba(255,255,255,0.92);
  font-size: var(--fs-base);
  margin-bottom: var(--sp-xl);
  position: relative;
}
.article-cta .btn {
  position: relative;
  background: var(--c-white);
  color: var(--c-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.article-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--sp-2xl);
  padding: 12px 28px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}
.article-back:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateX(-4px);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children animations */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }
.product-samples__grid.stagger > * { transition-delay: calc(var(--i, 0) * 0.04s); }

/* ---------- Privacy / Terms ---------- */
.legal-content { max-width: 750px; margin: 0 auto; }
.legal-content h2 {
  font-size: var(--fs-xl);
  font-weight: 600;
  margin: var(--sp-2xl) 0 var(--sp-md);
}
.legal-content p {
  margin-bottom: var(--sp-lg);
  line-height: 1.8;
  color: var(--c-dark-light);
}

/* ---------- 404 / Error ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-page__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--c-primary);
  opacity: 0.15;
  line-height: 1;
}
.error-page__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.error-page__text {
  font-size: var(--fs-md);
  color: var(--c-gray);
  margin-bottom: var(--sp-xl);
}

/* ============================================
   RESPONSIVE — Tablet (≤ 992px)
   ============================================ */
@media (max-width: 992px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--c-white);
    padding: var(--sp-xl);
    box-shadow: var(--shadow-lg);
    gap: var(--sp-md);
    z-index: 999;
  }
  .nav__cta { margin-left: 0; }



  /* Contact page */
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-map-overlay__inner { flex-direction: column; text-align: center; }
  .contact-map-overlay__info { flex-direction: column; }
  .contact-map-overlay__actions { justify-content: center; }

  /* Products page — Slider on tablet */
  .product-showcase {
    gap: var(--sp-lg);
  }

  /* Size chart grid 2 columns on tablet */
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About split */
  .about-split {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .about-split__img { height: 400px; }

  /* Modal */
  .pmodal { grid-template-columns: 1fr; }
  .pmodal__img-col { min-height: 240px; }
}

/* ============================================
   RESPONSIVE — Mobile Large (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Hero V2 */
  .hero-v2 { 
    min-height: auto; 
    background-image: url('IMAGES/Jacketory background mobile.png');
    background-size: cover;
    background-position: center top;
    animation: none;
  }
  .hero-v2__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl); /* Increased gap to prevent overlap */
    padding-top: var(--sp-lg);
    padding-bottom: 7rem; /* Extra padding for floating CTA */
    min-height: auto;
  }
  .hero-v2__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-v2__desc { font-size: var(--fs-sm); margin-bottom: var(--sp-lg); }
  .hero-v2__actions { flex-direction: column; align-items: center; gap: var(--sp-sm); }
  .hero-v2__actions .btn { justify-content: center; width: 100%; max-width: 320px; }
  .hero-v2__actions--desktop { display: none !important; }
  .hero-v2__actions--mobile { 
    display: flex !important;
    position: relative;
    z-index: 10;
    margin-top: 2.5rem; /* Push down to avoid overlapping dots */
  }
  .hero-v2__images { height: 340px; }
  [data-slot="front"] .hero-v2__product,
  [data-slot="right"] .hero-v2__product,
  [data-slot="left"] .hero-v2__product { height: 300px; }
  .hero-v2__stats { gap: var(--sp-lg); }
  .hero-v2__stat-divider { display: none; }
  .hero-v2__deco--line { display: none; }
  .hero-v2__dotgrid { background-size: 24px 24px; }
  .hero-v2__particles { display: none; }
  .hero-v2__float-badge { padding: 8px 12px; border-radius: 12px; }
  .hero-v2__float-badge-num { font-size: 12px; }
  .hero-v2__float-badge-label { font-size: 8px; }
  .hero-v2__float-badge svg { width: 16px; height: 16px; }
  .hero-v2__float-badge--delivery { top: 2%; left: -2%; }
  .hero-v2__float-badge--exp { top: 5%; right: -4%; }
  .hero-v2__float-badge--quality { bottom: 8%; left: 50%; }

  /* Section headings */
  .section-title { font-size: var(--fs-xl); }
  .section-subtitle { font-size: var(--fs-sm); }

  /* Cards */
  .card-grid--2 { grid-template-columns: 1fr; }
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .card { text-align: center; }
  .card__icon { margin-left: auto; margin-right: auto; }

  /* Process steps — 2 columns */
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(1),
  .process__step:nth-child(2),
  .process__step:nth-child(3),
  .process__step:nth-child(4),
  .process__step:nth-child(5) { grid-column: auto; }

  /* Material grid — 2 columns */
  .material-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog grid — 2 columns on tablet */
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
  .blog-card__img { height: 180px; }
  .card-grid--3.stagger { grid-template-columns: 1fr; }

  /* Article pages */
  .article-hero-img { height: 280px; }
  .article-content h2 { font-size: var(--fs-lg); }
  .article-content h3 { font-size: var(--fs-base); }
  .article-meta { gap: var(--sp-sm); }
  .article-meta span { font-size: var(--fs-xs); padding: 4px 12px; }
  .article-cta { padding: var(--sp-xl); }
  .article-cta__title { font-size: var(--fs-lg); }
  .article-back { padding: 10px 20px; font-size: var(--fs-xs); }

  /* Lightbox */
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__prev, .lightbox__next { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox__content { max-width: 95vw; }
  .lightbox__counter { font-size: var(--fs-xs); }

  /* Products — Slider on mobile */
  .product-showcase {
    padding-bottom: var(--sp-lg);
  }
  .product-item { flex: 0 0 240px; }
  .product-item__img-wrap { height: 200px; }

  /* Size chart 2 columns on mobile */
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About split */
  .about-split { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .about-split__img { height: 300px; }
  .about-split__text-col {
    text-align: center;
    align-items: center;
  }
  .about-split__stats {
    justify-content: center;
    gap: var(--sp-lg);
    width: 100%;
  }
  .about-split__stat {
    text-align: center;
  }
  .about-split__badge { left: var(--sp-md); bottom: var(--sp-md); }

  /* Contact page */
  .contact-hero { padding: calc(var(--nav-h) + var(--sp-2xl)) 0 var(--sp-2xl); }
  .contact-map-embed iframe { height: 280px; }
  .contact-cta__actions { flex-direction: column; align-items: center; }

  /* CTA banner */
  .cta-banner { padding: var(--sp-2xl) var(--sp-lg); }
  .cta-banner__title { font-size: var(--fs-xl); }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Modal full-screen on mobile */
  .pmodal-overlay { padding: 0; align-items: flex-end; }
  .pmodal {
    grid-template-columns: 1fr;
    border-radius: 20px 20px 0 0;
    max-height: 92svh;
    overflow-y: auto;
  }
  .pmodal__img-col { min-height: 180px; padding: 1.25rem; }
  .pmodal__img { height: 200px; }
  .pmodal__info-col { max-height: none; padding: 1.5rem 1.25rem; }
  .pmodal__features { grid-template-columns: 1fr; }

  /* Review cards */
  .reviews-masonry { columns: 1 !important; }

  /* Page header (sub-pages) */
  .page-header { padding: calc(var(--nav-h) + var(--sp-2xl)) 0 var(--sp-xl); }
  .page-header__title { font-size: var(--fs-xl); }
}

/* ============================================
   RESPONSIVE — Mobile Medium (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  /* Hero V2 */
  .hero-v2__badge { font-size: 9px; padding: 0.4rem 1rem; letter-spacing: 2px; margin-bottom: 4px; }
  .hero-v2__title { font-size: clamp(1.4rem, 6vw, 1.8rem); line-height: 1.25; margin-bottom: 1rem; }
  .hero-v2__desc { font-size: 13px; margin-bottom: 1rem; }
  .hero-v2__images { height: 260px; }
  [data-slot] .hero-v2__product { height: 230px; }
  .hero-v2__float-badge--quality { bottom: 12%; }
  .hero-v2__float-badge--delivery { top: 0%; left: -2%; }
  .hero-v2__stat-num { font-size: var(--fs-lg); }
  .hero-v2__stat-label { font-size: 10px; }

  /* Section */
  .section { padding: var(--sp-xl) 0; }
  .container { width: 94%; }

  /* Cards — single column on small phones */
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: 1fr 1fr; }

  /* Process — single column */
  .process { grid-template-columns: 1fr; }
  .process__step:nth-child(1),
  .process__step:nth-child(2),
  .process__step:nth-child(3),
  .process__step:nth-child(4),
  .process__step:nth-child(5) { grid-column: auto; }

  /* Blog grid — single column on small phones */
  .blog-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .blog-card__body { padding: var(--sp-md); }
  .blog-card__img { height: 200px; }
  .blog-card__link { padding: 8px 20px; font-size: var(--fs-xs); }

  /* Material grid 2 columns */
  .material-grid { grid-template-columns: 1fr 1fr; }

  /* Products Slider on small phones */
  .product-item { flex: 0 0 220px; }
  .product-item__img-wrap { height: 160px; }
  .product-item__body { padding: var(--sp-md); }

  /* Size chart 2 columns on small phones */
  .card-grid--4 { grid-template-columns: 1fr 1fr; }

  /* About split */
  .about-split__img { height: 240px; }
  .about-split__text-col {
    text-align: center;
    align-items: center;
  }
  .about-split__stats {
    flex-direction: row;
    justify-content: center;
    gap: var(--sp-md);
    padding: var(--sp-md) 0;
    width: 100%;
  }
  .about-split__stat {
    text-align: center;
    flex: 1;
  }
  .about-split__stat-num {
    min-width: unset;
  }

  /* Nav */
  .nav__logo-text { font-size: var(--fs-base); }
  .nav__logo img { height: 34px; }

  /* Floating CTA */
  .floating-cta { bottom: 16px; right: 16px; gap: 8px; }
  .floating-btn { width: 40px; height: 40px; font-size: 1rem; }
  .floating-btn svg { width: 20px; height: 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Article pages */
  .article-hero-img { height: 200px; border-radius: var(--radius-md); }
  .article-content h2 { font-size: var(--fs-base); margin: var(--sp-xl) 0 var(--sp-sm); }
  .article-content h3 { font-size: var(--fs-sm); padding-left: var(--sp-sm); }
  .article-content p { font-size: var(--fs-sm); line-height: 1.8; }
  .article-content li { font-size: var(--fs-sm); }
  .article-cta { padding: var(--sp-lg); border-radius: var(--radius-md); }
  .article-cta__title { font-size: var(--fs-base); }
  .article-cta__desc { font-size: var(--fs-sm); }
  .article-cta .btn { font-size: var(--fs-xs); padding: 0.8rem 1.5rem; }
  .article-back { padding: 8px 16px; font-size: var(--fs-xs); margin-top: var(--sp-xl); }

  /* Lightbox — tighter on small phones */
  .lightbox__prev, .lightbox__next { width: 36px; height: 36px; font-size: 1rem; }
  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }

  /* Modal size chart expand */
  .pmodal-overlay[id^="modal-size"] > div { max-width: 98%; }

  /* CTA */
  .cta-banner { padding: var(--sp-xl) var(--sp-md); border-radius: var(--radius-md); }

  /* Buttons */
  .btn--lg { padding: 0.9rem 2rem; font-size: var(--fs-sm); }

  /* Size chart table */
  .size-chart { font-size: 12px; }
  .size-chart th, .size-chart td { padding: 0.4rem 0.5rem; }
}

/* ============================================
   RESPONSIVE — Mobile Small (≤ 375px)
   ============================================ */
@media (max-width: 375px) {
  .hero-v2__title { font-size: 1.55rem; }
  .hero-v2__images { height: 240px; }
  [data-slot] .hero-v2__product { height: 200px; }
  .hero-v2__float-badge--delivery { top: -2%; left: 0; }
  .hero-v2__float-badge--exp { top: -2%; right: 0; }
  .hero-v2__float-badge--quality { bottom: 15%; }
  .section-title { font-size: var(--fs-lg); }
  .container { width: 96%; }

  /* Products — single column on the tiniest screens */
  .product-showcase {
    grid-template-columns: 1fr;
  }
  .product-item__img-wrap { height: 200px; }

  /* Size chart single column */
  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  /* Material single column */
  .material-grid { grid-template-columns: 1fr; }

  /* card-grid--4 */
  .card-grid--4 { grid-template-columns: 1fr; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card__img { height: 180px; }

  /* Modal adjustments */
  .pmodal__title { font-size: 1.2rem; }
  .pmodal__desc { font-size: var(--fs-xs); }
  .pmodal__feature { font-size: 11px; padding: 4px 8px; }

  /* Nav */
  .nav__logo-text { display: none; }

  /* Article pages */
  .article-hero-img { height: 170px; }
  .article-content h2 { font-size: var(--fs-sm); border-bottom-width: 2px; }
  .article-content h3 { font-size: var(--fs-sm); border-left-width: 3px; }
  .article-cta { padding: var(--sp-md); }
  .article-cta__title { font-size: var(--fs-sm); }
  .article-back { width: 100%; justify-content: center; }

  /* Lightbox */
  .lightbox__prev, .lightbox__next { width: 32px; height: 32px; font-size: 0.9rem; }

  /* Buttons full width */
  .hero-v2__actions .btn,
  .cta-banner__actions .btn { max-width: 100%; }
  .btn--lg { padding: 0.8rem 1.5rem; font-size: var(--fs-xs); }
}

/* ---------- About Split Layout ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: center;
}

/* Image column */
.about-split__img-col {
  position: relative;
}
.about-split__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-split__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.about-split__img-wrap:hover .about-split__img {
  transform: scale(1.04);
}

/* Badge floating on image */
.about-split__badge {
  position: absolute;
  bottom: var(--sp-xl);
  left: var(--sp-xl);
  background: var(--grad-primary);
  color: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(250,131,18,0.40);
  backdrop-filter: blur(8px);
}
.about-split__badge-num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  line-height: 1;
}
.about-split__badge-text {
  font-size: var(--fs-xs);
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
  letter-spacing: 1px;
}

/* Text column */
.about-split__text-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.about-split__cta {
  padding: 0.75rem 3rem;
  font-size: var(--fs-sm);
  align-self: center;
}
.about-split__desc {
  color: var(--c-gray);
  line-height: 1.9;
  font-size: var(--fs-base);
}
.about-split__desc em {
  color: var(--c-primary);
  font-style: normal;
  font-weight: 600;
}

/* Mini stats row */
.about-split__stats {
  display: flex;
  gap: var(--sp-xl);
  padding: var(--sp-lg) 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin: var(--sp-md) 0 var(--sp-lg);
}
.about-split__stat {
  text-align: center;
}
.about-split__stat-num {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.about-split__stat-label {
  font-size: var(--fs-xs);
  color: var(--c-gray);
  margin-top: 4px;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .about-split__img {
    height: 360px;
  }
}

/* ---------- Compact Cards for Mobile ---------- */
@media (max-width: 768px) {
  .card { padding: var(--sp-lg); }
  .card__title { font-size: var(--fs-base); }

  /* Size chart cards — compact */
  .card-grid .card {
    padding: var(--sp-md) var(--sp-md) var(--sp-sm);
  }
  .card-grid .card__title {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-sm) !important;
    font-weight: 700;
    text-align: center;
  }
  .card-grid .card img {
    border-radius: 8px;
    transition: transform 0.25s ease;
  }
  .card-grid .card:active img { transform: scale(0.97); }
  .card-grid .card p[style] {
    font-size: 0.72rem !important;
    margin-top: 0.3rem !important;
  }
  /* Material card compact */
  .material-card__body { padding: var(--sp-sm) var(--sp-md); }
  .material-card__title { font-size: var(--fs-xs); }
}

@media (max-width: 480px) {
  .card-grid .card {
    padding: 0.75rem 0.75rem 0.5rem;
    border-radius: 12px;
  }
  .card-grid .card__title {
    font-size: 0.82rem;
    margin-bottom: 0.4rem !important;
  }
  .card-grid .card p[style] { font-size: 0.68rem !important; }
  .card-grid { gap: var(--sp-md) !important; }
}

/* ---------- Utilities: Image Cropping ---------- */
.u-crop-container {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}

.u-crop-slice {
  object-fit: cover !important;
  display: block;
}

/* 2-column splits (using blog-process-1-2.png) */
.u-crop-2-1 { object-position: 0% 50%; }
.u-crop-2-2 { object-position: 100% 50%; }

/* 3-column splits (using blog-process-3-4-5.png) */
.u-crop-3-1 { object-position: 0% 50%; }
.u-crop-3-2 { object-position: 50% 50%; }
.u-crop-3-3 { object-position: 100% 50%; }

/* ============================================
   MOBILE ENHANCEMENTS — Comprehensive Fixes
   ============================================ */

/* ---- Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  /* Hero: proper bottom padding to clear floating icons */
  .hero-v2__grid {
    padding-bottom: 7rem;
  }

  /* Hero features: compact on mobile */
  .hero-v2__features {
    gap: 0.4rem;
    margin-bottom: var(--sp-md);
  }
  .hero-v2__feature {
    font-size: var(--fs-xs);
    gap: 0.4rem;
  }

  /* Stats bar: 2x2 grid for cleaner look */
  .hero-v2__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md) var(--sp-xl);
    text-align: center;
    justify-items: center;
  }
  .hero-v2__stat {
    min-width: unset;
    width: 100%;
  }

  /* Section labels: tighter spacing on mobile */
  .section-label {
    letter-spacing: 2px;
    font-size: 0.65rem;
  }

  /* Material grid: switch from flex-scroll to grid on mobile */
  .material-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding: var(--sp-md) 0;
  }
  .material-card {
    flex: none;
    width: 100%;
  }
  .material-card__img {
    height: 140px;
  }

  /* Product samples: ensure grid gap is comfortable */
  .product-samples__grid {
    gap: var(--sp-md);
  }
  .product-samples__info {
    padding: var(--sp-sm) var(--sp-md);
  }
  .product-samples__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-sm);
  }
  .product-samples__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Order steps: smaller icon on mobile */
  .order-steps__icon {
    width: 68px;
    height: 68px;
  }
  .order-steps__icon svg {
    width: 28px;
    height: 28px;
  }
  .order-steps__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-xl);
  }

  /* Process steps: smaller icons, tighter spacing */
  .process__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--sp-md);
  }
  .process__icon svg {
    width: 24px;
    height: 24px;
  }

  /* FAQ: ensure touch-friendly size */
  .faq-item__q {
    padding: var(--sp-md) var(--sp-lg) var(--sp-md) var(--sp-md);
    min-height: 52px;
    font-size: var(--fs-sm);
  }
  .faq-item__a {
    font-size: var(--fs-sm);
    line-height: 1.8;
  }

  /* Vision grid image: proper sizing */
  .vision-grid__img {
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
  }

  /* About: badge positioning fix */
  .about-split__badge {
    left: var(--sp-md);
    bottom: var(--sp-md);
    padding: 0.5rem 1rem;
  }
  .about-split__badge-num {
    font-size: var(--fs-xl);
  }
  .about-split__badge-text {
    font-size: var(--fs-xs);
  }

  /* Review cards: better touch targets */
  .review-card {
    min-height: auto;
  }

}

/* ---- Mobile Medium (≤ 480px) ---- */
@media (max-width: 480px) {
  /* Hero: tighter layout */
  .hero-v2__grid {
    padding-top: var(--sp-md);
    padding-bottom: 6rem;
    gap: 2rem;
  }
  .hero-v2__features {
    gap: 0.3rem;
    margin-bottom: var(--sp-sm);
  }
  .hero-v2__feature {
    font-size: 12px;
  }
  .hero-v2__check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* Stats bar: smaller on phones */
  .hero-v2__stats {
    gap: var(--sp-sm) var(--sp-md);
    padding: var(--sp-md) 0;
  }
  .hero-v2__stats-bar {
    padding: var(--sp-md) 0;
  }

  /* Section titles: cleaner scaling */
  .section-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-sm);
  }
  .section-subtitle {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-xl);
  }
  .section-label {
    letter-spacing: 1.5px;
    font-size: 0.6rem;
    margin-bottom: 0.3rem;
  }

  /* Material grid: 2 columns, override flex base */
  .material-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
    gap: var(--sp-md);
  }
  .material-card__img {
    height: 120px;
  }

  /* Order steps: single column, tighter */
  .order-steps {
    padding: var(--sp-2xl) 0;
  }
  .order-steps__grid {
    gap: var(--sp-xl);
  }
  .order-steps__icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--sp-md);
  }
  .order-steps__icon svg {
    width: 24px;
    height: 24px;
  }
  .order-steps__name {
    font-size: var(--fs-sm);
  }
  .order-steps__desc {
    font-size: 12px;
    line-height: 1.6;
  }

  /* Process steps: tighter */
  .process__step {
    padding: var(--sp-lg) var(--sp-md);
  }
  .process__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--sp-sm);
  }
  .process__icon svg {
    width: 22px;
    height: 22px;
  }
  .process__title {
    font-size: var(--fs-sm);
  }
  .process__text {
    font-size: 12px;
  }

  /* Cards: tighter for phone screens */
  .card {
    padding: var(--sp-lg);
  }
  .card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: var(--sp-md);
  }
  .card__icon svg {
    width: 36px;
    height: 36px;
  }
  .card__title {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-xs);
  }
  .card__text {
    font-size: var(--fs-xs);
    line-height: 1.6;
  }

  /* Product samples: keep 2 columns with proper gap */
  .product-samples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }
  .product-samples__name {
    font-size: var(--fs-xs);
    padding: var(--sp-xs) var(--sp-sm);
  }
  .product-samples__img-wrap {
    aspect-ratio: 1;
  }

  /* FAQ: compact */
  .faq-item__q {
    font-size: var(--fs-xs);
    padding: var(--sp-md);
    min-height: 48px;
  }
  .faq-item__a {
    font-size: var(--fs-xs);
    padding: 0 var(--sp-md) var(--sp-md);
  }

  /* CTA banner: tighter padding */
  .cta-banner__title {
    font-size: var(--fs-lg);
  }
  .cta-banner__text {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-md);
  }

  /* Video showcase: tighter radius */
  .video-showcase__wrapper {
    border-radius: var(--radius-sm);
  }

  /* Vision: compact */
  .vision-grid__text {
    font-size: var(--fs-sm);
    line-height: 1.8;
  }
  .vision-grid__label {
    font-size: var(--fs-sm);
  }

  /* About stats: compact */
  .about-split__desc {
    font-size: var(--fs-sm);
    line-height: 1.7;
  }

  /* Hero marquee: smaller */
  .hero-v2__marquee {
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 0.5rem 0;
  }

  /* Lightbox: ensure close button is reachable */
  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ---- Mobile Small (≤ 375px) ---- */
@media (max-width: 375px) {
  /* Hero: tighter */
  .hero-v2__title {
    font-size: clamp(1.3rem, 6vw, 1.55rem);
    margin-bottom: 0.75rem;
  }
  .hero-v2__desc {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }
  .hero-v2__grid {
    padding-bottom: 6rem;
  }
  .hero-v2__feature {
    font-size: 11px;
  }

  /* Stats bar: even tighter */
  .hero-v2__stat-num {
    font-size: var(--fs-base);
  }
  .hero-v2__stat-label {
    font-size: 9px;
  }

  /* Section: tighter */
  .section {
    padding: var(--sp-lg) 0;
  }
  .section-title {
    font-size: var(--fs-lg);
    line-height: 1.3;
  }
  .section-subtitle {
    font-size: var(--fs-xs);
  }

  /* Material grid: single column */
  .material-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .material-card__img {
    height: 160px;
  }

  /* Product samples: keep 2-column (not 1 column) for better visual */
  .product-samples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .product-samples__name {
    font-size: 11px;
  }

  /* Cards: super compact */
  .card {
    padding: var(--sp-md);
  }
  .card__icon {
    width: 60px;
    height: 60px;
  }
  .card__icon svg {
    width: 30px;
    height: 30px;
  }

  /* Order steps: compact */
  .order-steps__title {
    font-size: var(--fs-lg);
  }
  .order-steps__icon {
    width: 52px;
    height: 52px;
  }
  .order-steps__icon svg {
    width: 22px;
    height: 22px;
  }

  /* Buttons: full width, readable */
  .btn {
    font-size: var(--fs-xs);
    padding: 0.75rem 1.5rem;
  }
  .btn--lg {
    padding: 0.8rem 1.5rem;
    font-size: var(--fs-xs);
  }

  /* About image */
  .about-split__img {
    height: 200px;
  }

}

/* ---- Mobile Extra Small (≤ 320px) ---- */
@media (max-width: 320px) {
  .container {
    width: 97%;
  }
  .hero-v2__title {
    font-size: 1.2rem;
  }
  .hero-v2__desc {
    font-size: 11px;
  }
  .hero-v2__images {
    height: 200px;
  }
  [data-slot] .hero-v2__product {
    height: 170px;
  }
  .hero-v2__float-badge {
    display: none;
  }
  .hero-v2__stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .hero-v2__stat-num {
    font-size: var(--fs-sm);
  }
  .hero-v2__stat-label {
    font-size: 8px;
  }
  .section-title {
    font-size: var(--fs-base);
  }
  .section-subtitle {
    font-size: 11px;
  }
  .btn--lg {
    padding: 0.7rem 1.2rem;
    font-size: 11px;
  }
  .card__icon {
    width: 50px;
    height: 50px;
  }
  .order-steps__icon {
    width: 44px;
    height: 44px;
  }
}
