/* ============================================
   SUNGURA HARDWARE — PREMIUM LIGHT THEME
   Clean, secure CSS. No trackers. No malicious code.
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --bg-deep:    #ffffff;
  --bg-dark:    #f9fafb;
  --bg-card:    #ffffff;
  --border:     rgba(0,0,0,0.07);
  --border-glow:rgba(245,158,11,0.5);
  --orange:     #f59e0b;
  --orange-lt:  #fbbf24;
  --orange-dk:  #d97706;
  --gold:       #f59e0b;
  --white:      #ffffff;
  --text:       #111827;
  --muted:      #6b7280;
  --dim:        #9ca3af;
  --light-bg:   #f3f4f6;
  --glow-sm:    0 0 20px rgba(245,158,11,0.2);
  --glow-md:    0 0 40px rgba(245,158,11,0.25), 0 0 80px rgba(245,158,11,0.08);
  --glow-lg:    0 0 60px rgba(245,158,11,0.35), 0 0 120px rgba(245,158,11,0.12);
  --shadow-3d:  0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07);
  --shadow-card:0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --radius:     14px;
  --radius-lg:  20px;
  --radius-pill:100px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--orange); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f3f4f6; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.text-orange { color: var(--orange-dk); }

/* ===== GRADIENT TEXT ===== */
.grad-text {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--orange) 50%, var(--orange-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GLASS CARD (now white card with shadow) ===== */
.glass {
  background: #ffffff;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.3s cubic-bezier(.4,0,.2,1);
  letter-spacing: 0.3px; white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.5);
}
.btn-glass {
  background: rgba(0,0,0,0.04);
  color: var(--text); border-color: rgba(0,0,0,0.12);
}
.btn-glass:hover {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.navbar.transparent { background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: #fff; font-weight: 900; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px;
  box-shadow: var(--glow-sm);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.logo-text span:last-child { font-size: 1rem; font-weight: 800; color: var(--text); font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }
.logo-text span:last-child em { color: var(--orange-dk); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 0.88rem; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-links a.active { color: var(--orange-dk); background: rgba(245,158,11,0.06); }
.nav-links .btn { margin-left: 8px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); font-size: 1.4rem; padding: 8px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 2px; padding: 16px 24px 20px;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); font-weight: 600; padding: 12px 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--orange-dk); }

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25);
  color: var(--orange-dk); padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-eyebrow span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: inline-block; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 900;
  text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; color: var(--text);
}
.section-header p { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--bg-deep);
}
/* Subtle animated mesh gradient */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,158,11,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,158,11,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(251,191,36,0.05) 0%, transparent 50%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.05; z-index: 0;
  filter: saturate(0.3);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(0,0,0,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.6) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; padding: 110px 0 70px; width: 100%; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.3);
  color: var(--orange-dk); padding: 7px 18px; border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 900;
  text-transform: uppercase; line-height: 1; margin-bottom: 20px; color: var(--text);
}
.hero h1 .line-grad { display: block; }
.hero-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.7; max-width: 420px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 20px; }
.hero-avatars { display: flex; }
.hero-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff; margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-trust-stars { color: var(--orange); font-size: 0.85rem; }
.hero-trust-text strong { display: block; font-size: 0.88rem; color: var(--text); }
.hero-trust-text span { font-size: 0.75rem; color: var(--muted); }

/* ===== HERO RIGHT — 3D PRODUCT SHOWCASE ===== */
.hero-showcase { position: relative; perspective: 1200px; }
.hero-img-3d {
  position: relative;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-3d), var(--glow-sm);
}
.hero-img-3d:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg) translateZ(20px); }
.hero-img-3d img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-img-3d::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, transparent 60%);
  pointer-events: none;
}
/* Floating stat cards on hero right */
.hero-float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 20px rgba(245,158,11,0.08);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card.card-1 { top: -20px; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 30px; right: -30px; animation-delay: 2s; }
.hero-float-card.card-3 { top: 50%; left: -40px; transform: translateY(-50%); animation-delay: 1s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-float-card.card-3 { animation: floatCard3 6s ease-in-out infinite; }
@keyframes floatCard3 {
  0%,100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}
.float-label { font-size: 0.68rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.float-value { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--orange-dk); }
.float-icon { font-size: 1.2rem; margin-right: 6px; }
.float-row { display: flex; align-items: center; gap: 10px; }
.float-stars { color: var(--orange); font-size: 0.85rem; }

/* ===== TRUST BAR ===== */
.trust-bar {
  position: relative; padding: 0; overflow: hidden;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex; align-items: stretch; justify-content: stretch;
  overflow: hidden;
}
.trust-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 20px; font-weight: 700; font-size: 0.85rem; color: var(--muted);
  border-right: 1px solid var(--border); transition: all 0.3s; cursor: default;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(245,158,11,0.05); color: var(--text); }
.trust-item i { color: var(--orange-dk); font-size: 1.1rem; }

/* ===== CATEGORIES — 3D GRID ===== */
.categories { padding: 100px 0; background: var(--bg-dark); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 20px 28px; text-align: center;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  cursor: pointer; overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-card);
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s; border-radius: inherit;
}
.cat-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.cat-card:hover {
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-8px) perspective(600px) rotateX(4deg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), var(--glow-sm);
}
.cat-card:hover::before, .cat-card:hover::after { opacity: 1; }
.cat-icon {
  font-size: 2.6rem; margin-bottom: 14px; display: block;
  filter: drop-shadow(0 4px 8px rgba(245,158,11,0.2));
  transition: transform 0.4s;
}
.cat-card:hover .cat-icon { transform: scale(1.15) translateY(-4px); }
.cat-name { font-weight: 800; font-size: 0.9rem; color: var(--text); margin-bottom: 6px; }
.cat-count { font-size: 0.75rem; color: var(--muted); }

/* ===== FEATURED PRODUCTS — 3D CARDS ===== */
.featured { padding: 100px 0; background: var(--bg-deep); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.product-card {
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.product-card:hover {
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-10px) perspective(800px) rotateY(3deg);
  box-shadow: 0 20px 56px rgba(0,0,0,0.1), var(--glow-sm);
}
.product-img { height: 220px; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.4,0,.2,1); filter: saturate(0.9); }
.product-card:hover .product-img img { transform: scale(1.08); filter: saturate(1.1); }
.product-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
}
.product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange); color: #fff;
  font-size: 0.68rem; font-weight: 800; padding: 4px 12px;
  border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.product-body { padding: 22px; }
.product-body h3 { font-weight: 800; font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.product-body p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--orange-dk); }
.product-cta {
  font-size: 0.78rem; font-weight: 700; color: var(--orange-dk);
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25);
  padding: 7px 16px; border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.product-cta:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--bg-dark); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; width: 800px; height: 800px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-3d {
  position: relative;
  transform: perspective(1000px) rotateY(8deg) rotateX(-3deg);
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.why-img-3d:hover { transform: perspective(1000px) rotateY(4deg) rotateX(-1deg); }
.why-img-3d img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d), 0 0 40px rgba(245,158,11,0.08);
}
.why-img-3d::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 50%);
  border-radius: var(--radius-lg); pointer-events: none;
}
.why-badge-3d {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: var(--radius); padding: 22px 28px; text-align: center;
  box-shadow: var(--shadow-3d), var(--glow-sm);
}
.why-badge-3d .num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.why-badge-3d .lbl { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.8); margin-top: 2px; }
.why-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900;
  text-transform: uppercase; line-height: 1.05; margin-bottom: 20px; color: var(--text);
}
.why-text > p { color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.why-feature {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.why-feature:hover {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.02);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.why-feature-icon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.why-feature-text strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 3px; }
.why-feature-text span { font-size: 0.85rem; color: var(--muted); }

/* ===== SERVICES STRIP ===== */
.services-strip { padding: 100px 0; background: var(--bg-deep); }
.services-strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.service-card-3d {
  position: relative; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.service-card-3d::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card-3d:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), var(--glow-sm);
}
.service-card-3d:hover::before { opacity: 1; }
.service-icon { font-size: 2.8rem; margin-bottom: 18px; display: block; transition: transform 0.4s; }
.service-card-3d:hover .service-icon { transform: scale(1.2); }
.service-card-3d h3 { font-weight: 800; font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.service-card-3d p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ===== STATS — ORANGE BAND ===== */
.stats-section {
  position: relative; padding: 80px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-block { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 900;
  line-height: 1; color: #ffffff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
.stat-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--bg-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.tcard {
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.tcard::before {
  content: '"'; position: absolute; top: -20px; right: 20px;
  font-size: 10rem; font-family: serif; color: rgba(245,158,11,0.07);
  line-height: 1; pointer-events: none;
}
.tcard:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), var(--glow-sm);
}
.tcard-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 14px; }
.tcard-text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.tcard-reviewer { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff; font-weight: 800; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: var(--glow-sm);
}
.tcard-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.tcard-role { font-size: 0.76rem; color: var(--muted); }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 120px 0; text-align: center; overflow: hidden; background: #1a1c23; }
.cta-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.08; filter: saturate(0.3); }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.97) 0%, rgba(26,28,35,0.94) 100%);
}
.cta-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ctaGlow 6s ease-in-out infinite alternate;
}
@keyframes ctaGlow { 0%{opacity:0.5;transform:translate(-50%,-50%) scale(1)} 100%{opacity:1;transform:translate(-50%,-50%) scale(1.2)} }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 900;
  text-transform: uppercase; color: #ffffff; margin-bottom: 16px; line-height: 1.05;
}
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; margin: 0 auto 44px; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); font-weight: 700; font-size: 1rem;
  padding: 16px 30px; border: 2px solid rgba(255,255,255,0.15); border-radius: var(--radius-pill);
  transition: all 0.3s;
}
.cta-phone:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ===== FOOTER (stays dark) ===== */
.footer { background: #111827; border-top: 1px solid rgba(255,255,255,0.06); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 56px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 18px; max-width: 260px; }
.footer .logo-text span:last-child { color: #fff; }
.footer .logo-text span:first-child { color: rgba(255,255,255,0.4); }
.footer-rating { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.footer-rating .stars { color: var(--orange); }
.footer-rating span:last-child { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: all 0.3s;
}
.footer-social:hover { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: var(--glow-sm); }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.25); margin-bottom: 22px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; transition: all 0.2s; }
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.25); margin-bottom: 22px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item i { color: var(--orange); margin-top: 2px; width: 16px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; padding: 160px 0 90px;
  background: #1a1c23; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.1; filter: saturate(0.3); }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.97) 40%, rgba(26,28,35,0.85));
}
.page-hero-mesh {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(245,158,11,0.08) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { margin: 0 8px; color: rgba(255,255,255,0.2); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900;
  text-transform: uppercase; color: #ffffff;
  line-height: 0.95; margin-bottom: 18px;
}
.page-hero > .container > p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 560px; line-height: 1.75; }
.page-hero .section-eyebrow { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); color: var(--orange-lt); }

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 80px 0; background: var(--bg-deep); }
.products-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 24px; }
.cat-section-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}
.cat-section-header::after {
  content: ''; flex: 1; height: 2px;
  background: linear-gradient(90deg, rgba(245,158,11,0.5), transparent);
  margin-left: 16px;
}
.cat-section-icon { font-size: 2rem; }
.cat-section-header h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem;
  font-weight: 900; text-transform: uppercase; color: var(--text);
}
.cat-section-header p { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; background: var(--bg-dark); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.contact-info > p { color: var(--muted); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-card); transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(245,158,11,0.3); transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-card-body strong { display: block; font-weight: 700; font-size: 0.85rem; color: var(--text); margin-bottom: 4px; }
.contact-card-body a, .contact-card-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.contact-card-body a:hover { color: var(--orange-dk); }
.contact-form-card {
  background: var(--white); box-shadow: var(--shadow-3d);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px;
}
.contact-form-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); font-size: 0.88rem; margin-bottom: 30px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #f9fafb;
  color: var(--text); font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  outline: none; transition: all 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(245,158,11,0.5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.08);
}
.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== QUOTE PAGE ===== */
.quote-section { padding: 80px 0; background: var(--bg-dark); }
.quote-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.quote-sidebar {
  background: var(--white); box-shadow: var(--shadow-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px;
  position: sticky; top: 100px;
}
.quote-sidebar h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.quote-sidebar > p { color: var(--muted); font-size: 0.85rem; margin-bottom: 32px; }
.quote-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.quote-info-item span:first-child { font-size: 1.2rem; }
.quote-info-item div strong { display: block; color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.quote-info-item div a, .quote-info-item div p { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.quote-info-item div a:hover { color: var(--orange-dk); }
.quote-form-card {
  background: var(--white); box-shadow: var(--shadow-3d);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px;
}
.quote-form-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.quote-form-card > p { color: var(--muted); font-size: 0.88rem; margin-bottom: 30px; }
.form-note { font-size: 0.75rem; color: var(--dim); text-align: center; margin-top: 14px; }

/* ===== MAP ===== */
.map-section { padding: 0 0 80px; background: var(--bg-dark); }
.map-wrapper iframe { width: 100%; height: 400px; border-radius: var(--radius-lg); border: 1px solid var(--border); filter: none; }

/* ===== ABOUT ===== */
.about-story { padding: 100px 0; background: var(--bg-deep); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main img { border-radius: var(--radius-lg); width: 100%; height: 440px; object-fit: cover; box-shadow: var(--shadow-3d); }
.about-img-float {
  position: absolute; bottom: -24px; right: -24px; width: 200px;
  border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-3d), var(--glow-sm);
}
.about-img-float img { width: 100%; height: 150px; object-fit: cover; }
.about-text h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; color: var(--text); line-height: 1.05; }
.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.about-stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-card); transition: all 0.3s; }
.about-stat:hover { border-color: rgba(245,158,11,0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.about-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--orange-dk); line-height: 1; }
.about-stat-label { font-size: 0.72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.values-section { padding: 100px 0; background: var(--bg-dark); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s; position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.value-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.09), var(--glow-sm); }
.value-card:hover::before { opacity: 1; }
.value-card-icon { font-size: 2.5rem; margin-bottom: 18px; }
.value-card h3 { font-weight: 800; color: var(--text); margin-bottom: 12px; font-size: 1.1rem; }
.value-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ===== CHAT WIDGET ===== */
#chatWidget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
#chatBtn {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(245,158,11,0.45);
  transition: all 0.3s; position: relative;
}
#chatBtn:hover { transform: scale(1.08); box-shadow: var(--glow-lg); }
#chatBtn svg { width: 26px; height: 26px; fill: #fff; }
.chat-pulse {
  position: absolute; top: 0; right: 0; width: 16px; height: 16px;
  background: #22c55e; border-radius: 50%; border: 2px solid var(--white);
  animation: chatPulse 2.5s infinite;
}
@keyframes chatPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:0.7} }
#chatBox {
  display: none; position: absolute; bottom: 78px; right: 0; width: 350px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 16px 64px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border); overflow: hidden;
}
#chatBox.open { display: flex; flex-direction: column; }
.chat-header { background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.04)); padding: 18px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
.chat-header-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--orange), var(--orange-dk)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--glow-sm); }
.chat-header-info h4 { color: var(--text); font-size: 0.88rem; font-weight: 700; }
.chat-header-info span { font-size: 0.7rem; color: #22c55e; font-weight: 600; }
.chat-close { margin-left: auto; background: none; border: none; color: var(--muted); font-size: 1rem; cursor: pointer; padding: 4px; transition: color 0.2s; }
.chat-close:hover { color: var(--text); }
.chat-msgs { height: 270px; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { display: flex; flex-direction: column; gap: 4px; max-width: 87%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg-bubble { padding: 10px 14px; border-radius: 12px; font-size: 0.84rem; line-height: 1.55; }
.chat-msg.bot .chat-msg-bubble { background: #f3f4f6; color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-msg-bubble { background: linear-gradient(135deg, var(--orange), var(--orange-dk)); color: #fff; border-bottom-right-radius: 4px; font-weight: 600; }
.chat-msg-time { font-size: 0.68rem; color: var(--dim); }
.chat-msg.user .chat-msg-time { text-align: right; }
.chat-typing { display: flex; gap: 5px; padding: 10px 14px; }
.typing-dot { width: 7px; height: 7px; background: var(--muted); border-radius: 50%; animation: typingBounce 1.3s infinite; }
.typing-dot:nth-child(2){animation-delay:.2s}.typing-dot:nth-child(3){animation-delay:.4s}
@keyframes typingBounce{0%,80%,100%{transform:translateY(0)}40%{transform:translateY(-8px)}}
.chat-quick { padding: 10px 14px; display: flex; gap: 7px; flex-wrap: wrap; border-top: 1px solid var(--border); }
.chat-quick-btn {
  padding: 5px 12px; background: rgba(245,158,11,0.08); color: var(--orange-dk);
  border: 1px solid rgba(245,158,11,0.2); border-radius: var(--radius-pill);
  font-size: 0.73rem; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'Barlow', sans-serif;
}
.chat-quick-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.chat-input-row { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border); }
.chat-input {
  flex: 1; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px;
  padding: 10px 14px; font-size: 0.84rem; outline: none;
  font-family: 'Barlow', sans-serif; background: #f9fafb; color: var(--text);
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: rgba(245,158,11,0.4); background: #fff; }
.chat-input::placeholder { color: var(--dim); }
.chat-send {
  width: 40px; height: 40px; background: var(--orange); border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.chat-send:hover { background: var(--orange-dk); box-shadow: var(--glow-sm); }
.chat-send svg { width: 16px; height: 16px; fill: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-showcase { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-imgs { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #chatBox { width: 310px; }
  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-item { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .quote-sidebar { position: static; }
}
