/* ══════════════════════════════════════
   DESIGN SYSTEM — ALOREX PACKAGING
   Warm Ivory + Terracotta + Antique Gold
══════════════════════════════════════ */
:root {
  --navy:        #1C2840;
  --navy-800:    #22304E;
  --navy-700:    #2A3D60;
  --navy-600:    #344F7A;
  --saffron:     #C8673A;
  --saffron-l:   #DC8A5E;
  --saffron-d:   #A8501D;
  --gold:        #C89B2E;
  --gold-l:      #DEB847;
  --white:       #FFFFFF;
  --off-white:   #FAF8F4;
  --light-bg:    #F2EBE0;
  --text:        #1E1A14;
  --text-light:  #5A5147;
  --text-muted:  #97897A;
  --border:      #E0D6C8;
  --border-dark: rgba(255,255,255,0.08);
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow:      0 4px 24px rgba(20,16,10,0.08);
  --shadow-lg:   0 16px 48px rgba(20,16,10,0.14);
  --shadow-gold: 0 8px 32px rgba(200,155,46,0.2);
  --shadow-saf:  0 8px 32px rgba(200,103,58,0.28);
  --font:        'Inter', sans-serif;
  --font-serif:  'Cormorant Garamond', serif;
  --font-display:'Cinzel', 'Palatino Linotype', Georgia, serif;
  --transition:  0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }
img { max-width: 100%; display: block; }

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

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1.5px;
  background: var(--saffron); border-radius: 2px; flex-shrink: 0;
}
.light-eyebrow { color: var(--gold); }
.light-eyebrow::before { background: var(--gold); }

.section-heading {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.18; color: var(--text);
  margin-bottom: 20px;
}
.section-heading em { color: var(--saffron); font-style: normal; }
.white-heading { color: var(--white); }
.white-heading em { color: var(--gold); }

.section-sub { font-size: 1rem; color: var(--text-light); max-width: 580px; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-sub { margin: 0 auto; }
.section-header .section-eyebrow { display: inline-flex; justify-content: center; }

/* ── BUTTONS ── */
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-d) 100%);
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 38px; border-radius: 50px;
  border: none; cursor: pointer;
  box-shadow: var(--shadow-saf);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.cta-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--saffron-l), var(--saffron));
  opacity: 0; transition: opacity var(--transition);
}
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,107,0,0.45); }
.cta-primary:hover::before { opacity: 1; }
.cta-primary span, .cta-primary svg { position: relative; z-index: 1; }

.cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  color: var(--saffron); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 50px;
  border: 2px solid var(--saffron);
  transition: var(--transition);
}
.cta-secondary:hover { background: var(--saffron); color: var(--white); transform: translateY(-2px); }

.cta-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  font-size: 0.9rem; font-weight: 700; padding: 15px 30px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.cta-whatsapp:hover { transform: translateY(-3px); background: #1ebe5b; }

.mt-cta { margin-top: 36px; }

/* ══════════════════════════════════════
   LOADER
══════════════════════════════════════ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.loader-emblem {
  width: 80px; height: 80px;
  animation: loaderPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(200,103,58,0.4));
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1);   opacity: 1;   }
  50%      { transform: scale(1.06); opacity: 0.9; }
}
.loader-wordmark {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.lw-brand {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--white); text-transform: uppercase;
}
.lw-ent {
  font-family: var(--font-display);
  font-size: 0.58rem; font-weight: 400; letter-spacing: 0.4em;
  color: var(--saffron-l); text-transform: uppercase;
}
.loader-bar {
  width: 180px; height: 1.5px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px; animation: loadFill 1.5s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 14px 24px;
  transition: padding 0.4s ease;
}
.navbar.scrolled { padding: 8px 24px; }
.nav-container {
  max-width: 1100px; margin: 0 auto;
  background: rgba(250,248,244,0.78);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(224,214,200,0.6);
  border-radius: 60px;
  box-shadow: 0 2px 20px rgba(28,40,64,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  padding: 0 10px 0 20px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled .nav-container {
  background: rgba(250,248,244,0.97);
  box-shadow: 0 8px 32px rgba(28,40,64,0.11), inset 0 1px 0 rgba(255,255,255,0.95);
}
/* ── LOGO SVG ── */
.nav-logo { display: flex; align-items: center; }
.logo-svg {
  height: 42px; width: auto;
  transition: opacity var(--transition);
}
.logo-svg--footer { height: 44px; opacity: 0.88; }
.nav-logo:hover .logo-svg { opacity: 0.8; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-light);
  padding: 7px 14px; border-radius: 40px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(200,103,58,0.07); }
.nav-link.active { color: var(--saffron); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-light);
  padding: 7px 14px; border-radius: 40px;
  transition: color 0.2s, background 0.2s;
}
.nav-call:hover { color: var(--text); background: rgba(200,103,58,0.07); }
.nav-cta {
  font-family: var(--font);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-d));
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  padding: 10px 22px; border-radius: 40px;
  box-shadow: 0 4px 16px rgba(200,103,58,0.3);
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,103,58,0.45); }
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 42px; height: 42px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; cursor: pointer;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.18s;
}
.hamburger:hover {
  background: var(--off-white); border-color: var(--saffron);
  box-shadow: 0 4px 14px rgba(200,103,58,0.18);
  transform: scale(1.05);
}
.hamburger.open {
  background: var(--saffron); border-color: var(--saffron);
  box-shadow: 0 4px 16px rgba(200,103,58,0.35);
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.25s ease, background 0.22s;
  transform-origin: center;
}
.hamburger.open span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FAF8F4 0%, #F5EEE3 45%, #EDE2D0 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E1A14' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 1;
  background-image: linear-gradient(rgba(30,26,20,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(30,26,20,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-container {
  flex: 1; max-width: 1200px; width: 100%; margin: 0 auto; padding: 120px 32px 80px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}

/* Hero Left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-headline {
  font-family: var(--font-serif); font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.08; color: var(--text); margin-bottom: 24px;
}
.hero-headline em { font-style: normal; color: var(--text-muted); }
.hero-gradient-text {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subheadline {
  font-size: 1.05rem; color: var(--text-light); line-height: 1.8;
  margin-bottom: 40px; max-width: 520px;
}
.hero-subheadline strong { color: var(--text); font-weight: 600; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-metrics { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.metric { display: flex; flex-direction: column; }
.metric-num { display: flex; align-items: baseline; gap: 2px; line-height: 1; }
.metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--text); line-height: 1;
}
.metric-plus { font-size: 1.4rem; font-weight: 700; color: var(--saffron); line-height: 1; }
.metric-label {
  font-family: var(--font-display);
  font-size: 0.6rem; color: var(--text-muted); font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px;
}
.metric-sep { width: 1px; height: 40px; background: var(--border); }

/* ── Hero Right Visual ── */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-visual-stack {
  position: relative; width: 380px; height: 430px;
  display: flex; align-items: center; justify-content: center;
}

/* Background glow */
.hvs-glow {
  position: absolute; inset: 0; pointer-events: none; border-radius: 50%;
  background: radial-gradient(ellipse at 55% 45%, rgba(200,103,58,0.13) 0%, transparent 68%);
}

/* Main panel */
.hvs-panel {
  position: relative; z-index: 2; overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #faf7f3 100%);
  border: 1px solid rgba(224,214,200,0.55);
  border-radius: 28px; padding: 24px;
  width: 296px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 2px 4px rgba(28,40,64,0.04),
    0 12px 40px rgba(28,40,64,0.1),
    0 32px 80px rgba(28,40,64,0.07);
  animation: panelFloat 6s ease-in-out infinite;
}
/* Saffron→gold top accent line */
.hvs-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron-l));
  border-radius: 28px 28px 0 0;
}
/* Subtle corner glow */
.hvs-panel::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,103,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes panelFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

/* Header */
.hvs-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hvs-apl-badge {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--saffron) 0%, var(--saffron-d) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(200,103,58,0.38), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative; overflow: hidden;
}
.hvs-apl-badge::before {
  content: ''; position: absolute; top: -8px; left: -8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.hvs-apl-text { font-size: 0.74rem; font-weight: 900; color: #fff; letter-spacing: 0.1em; position: relative; }
.hvs-header-info { flex: 1; min-width: 0; }
.hvs-header-info strong {
  display: block; font-size: 0.8rem; font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -0.01em;
}
.hvs-header-info span { font-size: 0.63rem; color: var(--text-muted); margin-top: 1px; display: block; }
.hvs-live-pill {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
  background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2);
  border-radius: 20px; padding: 4px 10px;
  font-size: 0.62rem; font-weight: 700; color: #15803d;
}
.hvs-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
  50%      { opacity:0.7; transform:scale(1.3); box-shadow: 0 0 0 5px rgba(22,163,74,0.08); }
}

/* Divider */
.hvs-divider {
  height: 1px; margin-bottom: 20px;
  background: linear-gradient(90deg, transparent, rgba(200,180,150,0.4) 30%, rgba(200,180,150,0.4) 70%, transparent);
}

/* Metrics 2×2 */
.hvs-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.hvs-metric {
  background: var(--white); border: 1px solid rgba(224,214,200,0.6);
  border-radius: 16px; padding: 14px 13px;
  box-shadow: 0 1px 3px rgba(28,40,64,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; overflow: hidden;
}
.hvs-metric:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(28,40,64,0.09); }
.hvs-metric--accent {
  background: linear-gradient(145deg, rgba(200,103,58,0.06) 0%, rgba(200,155,46,0.04) 100%);
  border-color: rgba(200,103,58,0.2);
}
.hvs-metric--accent::after {
  content: ''; position: absolute; bottom: -10px; right: -10px;
  width: 50px; height: 50px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,103,58,0.08) 0%, transparent 70%);
}
.hvs-m-val {
  display: block; font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 800; color: var(--text);
  line-height: 1; margin-bottom: 5px; letter-spacing: -0.02em;
}
.hvs-metric--accent .hvs-m-val { color: var(--saffron); }
.hvs-m-key {
  font-size: 0.61rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600;
}

/* Quality bar */
.hvs-quality-bar {
  margin-bottom: 18px;
  background: var(--off-white); border: 1px solid rgba(224,214,200,0.6);
  border-radius: 14px; padding: 13px 14px;
}
.hvs-qb-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hvs-qb-label { font-size: 0.7rem; color: var(--text-light); font-weight: 600; }
.hvs-qb-val   { font-size: 0.78rem; font-weight: 800; color: var(--saffron); letter-spacing: -0.01em; }
.hvs-qb-track {
  height: 7px; background: rgba(200,180,150,0.25);
  border-radius: 10px; overflow: hidden; position: relative;
}
.hvs-qb-fill {
  height: 100%; width: 0; border-radius: 10px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  animation: barFill 2.2s 0.6s ease-out forwards;
  position: relative; overflow: hidden;
}
.hvs-qb-fill::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: barShimmer 2.2s 2.8s ease-in-out infinite;
}
@keyframes barFill { to { width: 99.8%; } }
@keyframes barShimmer { 0% { left: -100%; } 100% { left: 200%; } }

/* Trust tags */
.hvs-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.hvs-tag {
  font-size: 0.63rem; font-weight: 700;
  border-radius: 20px; padding: 5px 11px;
  display: inline-flex; align-items: center; gap: 4px;
  letter-spacing: 0.01em;
}
.hvs-tag:nth-child(1) { color: #15803d; background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.18); }
.hvs-tag:nth-child(2) { color: #92660a; background: rgba(200,155,46,0.09); border: 1px solid rgba(200,155,46,0.22); }
.hvs-tag:nth-child(3) { color: var(--saffron-d); background: rgba(200,103,58,0.08); border: 1px solid rgba(200,103,58,0.2); }

/* Floating notification cards */
.hvs-notif {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 18px; padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 32px rgba(28,40,64,0.12), inset 0 1px 0 rgba(255,255,255,1);
  white-space: nowrap;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hvs-notif--order {
  bottom: 20px; left: -18px;
  animation: floatNotif 5s ease-in-out infinite;
}
.hvs-notif--delivered {
  top: 26px; right: -18px;
  animation: floatNotif 5.8s ease-in-out infinite 1.2s;
}
@keyframes floatNotif {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-8px) rotate(-0.4deg); }
  66%      { transform: translateY(-5px) rotate(0.3deg); }
}

/* Icon container */
.hvs-notif-icon {
  font-size: 1.2rem; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hvs-notif--order .hvs-notif-icon {
  background: linear-gradient(135deg, rgba(200,103,58,0.12), rgba(200,155,46,0.08));
  border: 1px solid rgba(200,103,58,0.15);
}
.hvs-notif--delivered .hvs-notif-icon {
  background: rgba(22,163,74,0.09);
  border: 1px solid rgba(22,163,74,0.18);
}

/* Text */
.hvs-notif-body strong {
  display: block; font-size: 0.74rem; font-weight: 700;
  color: var(--text); margin-bottom: 2px; letter-spacing: -0.01em;
}
.hvs-notif-body span { font-size: 0.64rem; color: var(--text-muted); }

/* Time badge */
.hvs-notif-time {
  margin-left: 4px; font-size: 0.6rem; font-weight: 600;
  color: var(--text-muted); background: var(--off-white);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 2px 7px; flex-shrink: 0;
}

/* Accent left stripe per card */
.hvs-notif--order   { border-left: 3px solid var(--saffron); }
.hvs-notif--delivered { border-left: 3px solid #16a34a; }

.hero-scroll-hint {
  position: relative; z-index: 1; text-align: center; padding: 24px 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(30,26,20,0.25));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
.hero-scroll-hint span { font-size: 0.7rem; color: rgba(30,26,20,0.35); letter-spacing: 0.12em; text-transform: uppercase; }

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-d));
  padding: 14px 0; overflow: hidden;
}
.marquee-track { display: flex; }
.marquee-items {
  display: flex; align-items: center; gap: 48px;
  white-space: nowrap; animation: marqueeScroll 30s linear infinite;
  padding-right: 48px;
}
.marquee-items span {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.92);
  letter-spacing: 0.1em; text-transform: uppercase;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { padding: 112px 0; background: var(--off-white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }

.about-img-stack { position: relative; margin-bottom: 24px; }
.about-img-main {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-graphic { text-align: center; }
.ag-circle { width: 120px; height: 120px; border-radius: 50%; position: absolute; }
.ag-c1 { background: rgba(255,107,0,0.12); top: 20px; right: 20px; }
.ag-c2 { background: rgba(232,184,75,0.08); bottom: 30px; left: 20px; width: 80px; height: 80px; }
.ag-c3 { background: rgba(255,255,255,0.03); top: 50%; left: 50%; transform: translate(-50%,-50%); width: 200px; height: 200px; }
.ag-factory { font-size: 5rem; position: relative; z-index: 1; margin-bottom: 12px; }
.ag-label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; position: relative; z-index: 1; }

.about-stat-card {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); text-align: center;
}
.asc-1 { bottom: -20px; left: -20px; }
.asc-2 { top: -16px; right: -16px; }
.asc-num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; color: var(--saffron); line-height: 1;
}
.asc-num span { font-size: 1rem; }
.asc-text {
  font-family: var(--font-display);
  font-size: 0.6rem; color: var(--text-light); font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px;
}

.about-cert-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 16px;
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow);
}

.about-text { }
.about-para { font-size: 0.97rem; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.about-para.lead-para { font-size: 1.05rem; color: var(--text); }
.about-para strong { color: var(--text); }

.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.pillar {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 20px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition);
}
.pillar:hover { transform: translateX(4px); border-color: rgba(255,107,0,0.25); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; }
.pillar-body strong { font-size: 0.9rem; font-weight: 700; display: block; margin-bottom: 4px; }
.pillar-body p { font-size: 0.83rem; color: var(--text-light); margin: 0; }

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products { padding: 112px 0; background: var(--white); }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  perspective: 1200px;
}

.prod-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,0,0.25);
}
.featured-prod {
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border-color: rgba(255,107,0,0.3);
}
.featured-prod .prod-body h3 { color: var(--white); }
.featured-prod .prod-body p { color: rgba(255,255,255,0.65); }
.featured-prod .prod-number { color: rgba(255,107,0,0.5); }
.featured-prod .prod-specs span { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.featured-prod .prod-usecases span { background: rgba(255,107,0,0.15); border-color: rgba(255,107,0,0.3); color: var(--saffron-l); }
.featured-prod .prod-cta { color: var(--gold); }

.prod-header {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ph-wcut  { background: linear-gradient(135deg, #FFF5EC, #FFE0C8); }
.ph-ucut  { background: linear-gradient(135deg, #EBF5FB, #D0E8F7); }
.ph-dcut  { background: linear-gradient(135deg, #EAFAF1, #C8EFDA); }
.ph-box   { background: linear-gradient(135deg, #1A2E52, #0D1730); }
.ph-loop  { background: linear-gradient(135deg, #FDF9EC, #F5E8B0); }
.ph-bopp  { background: linear-gradient(135deg, #EAF8F5, #C2ECE4); }

.prod-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--saffron); color: white;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.premium-badge { background: linear-gradient(135deg, var(--gold), #c8940a); color: var(--navy); }
.glossy-badge { background: linear-gradient(135deg, #00c6fb, #005bea); }

/* Bag Visuals */
.prod-visual { position: relative; display: flex; align-items: center; justify-content: center; width: 150px; }
.bag-svg { width: 120px; height: 150px; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.prod-card:hover .bag-svg { transform: translateY(-10px) scale(1.06); }
.pv-bag-body {
  width: 70px; height: 88px; border-radius: 6px 6px 4px 4px;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.9);
}
.pv-handle {
  position: absolute; top: -18px;
  width: 18px; height: 22px;
  border-top: 3px solid rgba(255,255,255,0.85);
  border-radius: 9px 9px 0 0; top: -24px;
}
.pv-h-left { left: 8px; border-left: 3px solid rgba(255,255,255,0.85); }
.pv-h-right { right: 8px; border-right: 3px solid rgba(255,255,255,0.85); }
.pv-uhandle {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 20px;
  background: rgba(255,255,255,0.9); border-radius: 18px 18px 0 0;
}
.pv-dhandle {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 18px;
  background: rgba(255,255,255,0.9); border-radius: 20px 20px 0 0;
}
.pv-box .pv-bag-body { height: 80px; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.pv-box-base {
  position: absolute; bottom: -6px; width: 80px; height: 10px;
  background: rgba(255,255,255,0.1); border-radius: 0 0 6px 6px;
  border: 1.5px solid rgba(255,255,255,0.15); border-top: none;
}
.pv-box-handle { position: absolute; top: -28px; width: 14px; height: 30px; border: 3px solid rgba(255,200,100,0.5); border-bottom: none; border-radius: 7px 7px 0 0; }
.pv-bh-l { left: 10px; }
.pv-bh-r { right: 10px; }
.pv-loop-h {
  position: absolute; top: -32px; width: 14px; height: 36px;
  border: 3px solid rgba(255,255,255,0.75); border-bottom: none; border-radius: 7px 7px 0 0;
}
.pv-lh-l { left: 10px; }
.pv-lh-r { right: 10px; }
.pv-bopp-body { background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(200,245,240,0.8)) !important; }
.pv-bopp-shine {
  position: absolute; top: 8px; left: 16px;
  width: 14px; height: 48px;
  background: rgba(255,255,255,0.6); border-radius: 8px; transform: rotate(-10deg);
}

/* Product Body */
.prod-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prod-number {
  font-family: var(--font-display);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  color: rgba(255,107,0,0.35); margin-bottom: 8px; text-transform: uppercase;
}
.prod-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.prod-body p { font-size: 0.84rem; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; flex: 1; }
.prod-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.prod-specs span {
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px;
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text-light);
}
.prod-usecases { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.prod-usecases span {
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px;
  background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50px; color: var(--saffron);
}
.prod-cta { font-size: 0.85rem; font-weight: 700; color: var(--saffron); transition: gap 0.2s; display: flex; align-items: center; gap: 4px; }
.prod-cta:hover { gap: 8px; }

/* ══════════════════════════════════════
   PRINTING
══════════════════════════════════════ */
.printing {
  padding: 112px 0; position: relative;
  background: radial-gradient(ellipse at 30% 70%, var(--navy-600) 0%, var(--navy-800) 50%, var(--navy) 100%);
  overflow: hidden;
}
.printing-overlay {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.printing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; position: relative; z-index: 1; }

.printing-content { display: flex; flex-direction: column; justify-content: center; }
.printing-desc { font-size: 0.97rem; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 36px; }
.printing-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pf-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); padding: 14px;
}
.pf-icon { font-size: 1.2rem; flex-shrink: 0; }
.pf-item strong { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); display: block; margin-bottom: 2px; }
.pf-item span { font-size: 0.74rem; color: rgba(255,255,255,0.45); }

/* Printing Visual */
.printing-visual { display: flex; justify-content: center; align-items: center; }
.pm-wrapper { text-align: center; }
.pm-bag {
  display: inline-block; position: relative; margin-bottom: 28px;
}
.pm-bag-body {
  width: 200px; height: 250px; border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f0f0f0 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative; overflow: hidden;
}
.pm-shine {
  position: absolute; top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(130deg, rgba(255,255,255,0.35) 0%, transparent 60%);
  border-radius: 16px 0 0 16px;
}
.pm-logo-zone {
  width: 120px; height: 90px; border: 2px dashed rgba(255,107,0,0.35);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,107,0,0.04);
}
.pm-logo-placeholder { font-size: 0.72rem; font-weight: 800; color: rgba(255,107,0,0.5); text-align: center; letter-spacing: 0.12em; line-height: 1.8; }
.pm-tagline { font-size: 0.58rem; color: #bbb; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.pm-handle { position: absolute; top: -24px; width: 30px; height: 30px; border: 3px solid #ccc; border-bottom: none; border-radius: 15px 15px 0 0; }
.pm-h-l { left: 36px; }
.pm-h-r { right: 36px; }

.pm-colors { }
.pm-color-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.45); margin-bottom: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.pm-swatches { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.pm-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c); cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: var(--border, none);
}
.pm-swatch:hover { transform: scale(1.3); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.pm-note { font-size: 0.73rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process { padding: 112px 0; background: var(--off-white); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0; position: relative;
}
.ps-step {
  flex: 1; text-align: center; padding: 0 24px; position: relative;
}
.ps-num {
  font-family: var(--font-display);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--saffron); margin-bottom: 16px; text-transform: uppercase;
}
.ps-icon {
  font-size: 2rem;
  background: var(--white); width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.ps-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.ps-step p { font-size: 0.84rem; color: var(--text-light); line-height: 1.75; }
.ps-connector {
  flex-shrink: 0; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  align-self: center; margin-top: -60px; opacity: 0.3;
  position: relative;
}
.ps-connector::after {
  content: ''; position: absolute; right: -6px; top: -4px;
  width: 10px; height: 10px; background: var(--gold);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  opacity: 0.6;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.whyus { padding: 112px 0; background: var(--white); }
.whyus-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.whyus-intro { font-size: 1rem; color: var(--text-light); line-height: 1.85; margin-bottom: 28px; }
.whyus-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.wh-item { display: flex; align-items: center; gap: 14px; }
.wh-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; }
.wh-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--off-white); border-radius: var(--radius);
  padding: 20px; border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(255,107,0,0.2); }
.wc-icon { font-size: 1.4rem; flex-shrink: 0; }
.wc-body h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.wc-body p { font-size: 0.8rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { padding: 112px 0; background: var(--light-bg); }

.testi-rating-bar {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 24px;
  margin-top: 20px; box-shadow: var(--shadow);
}
.trb-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.trb-score { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text); }
.trb-divider { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.trb-count { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
.trb-google { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }

.testi-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; color: #1e8e3e;
  background: rgba(30,142,62,0.08); border: 1px solid rgba(30,142,62,0.2);
  border-radius: 50px; padding: 4px 10px;
  margin-bottom: 12px; letter-spacing: 0.04em;
}
.testi-featured .testi-verified {
  color: #4ade80; background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.25);
}

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border); position: relative;
  box-shadow: var(--shadow); transition: var(--transition);
  display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-featured {
  background: linear-gradient(135deg, var(--navy-700), var(--navy));
  border-color: rgba(255,107,0,0.3);
}
.testi-featured p, .testi-featured .testi-stars { color: rgba(255,255,255,0.8); }
.testi-featured .ta-info strong { color: var(--white); }
.testi-featured .ta-info span { color: rgba(255,255,255,0.45); }
.testi-quote {
  font-family: var(--font-serif); font-size: 5rem; font-weight: 700;
  color: var(--saffron); line-height: 0.6; margin-bottom: 20px; opacity: 0.3;
}
.testi-featured .testi-quote { opacity: 0.5; }
.testi-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; flex: 1; margin-bottom: 20px; font-style: italic; }
.testi-stars { font-size: 0.9rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.ta-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-d));
  color: var(--white); font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.ta-info strong { font-size: 0.9rem; display: block; }
.ta-info span { font-size: 0.76rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { padding: 96px 0; background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 960px; margin: 0 auto;
}
.faq-item {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px;
  transition: var(--transition);
}
.faq-item:hover {
  background: var(--white); border-color: rgba(255,107,0,0.25);
  box-shadow: var(--shadow); transform: translateY(-2px);
}
.faq-q {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; font-weight: 700; color: var(--text);
  margin-bottom: 12px; line-height: 1.45;
}
.faq-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.faq-a {
  font-size: 0.85rem; color: var(--text-light); line-height: 1.75;
  padding-left: calc(1.1rem + 12px);
}
.faq-a strong { color: var(--saffron); font-weight: 700; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 72px 0; }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  padding: 96px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.contact-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: 0.15;
}
.contact-glow--1 { width: 520px; height: 520px; background: var(--saffron); top: -140px; left: -100px; }
.contact-glow--2 { width: 380px; height: 380px; background: var(--gold); bottom: -80px; right: 8%; }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start;
  position: relative; z-index: 1;
}

.contact-intro { font-size: 1rem; color: rgba(255,255,255,0.58); line-height: 1.8; margin-bottom: 32px; }

/* ── Quote Steps ── */
.quote-steps {
  display: flex; align-items: flex-start;
  margin-bottom: 36px;
}
.qs-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 0 0 auto; min-width: 96px; }
.qs-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0.05em;
  margin-bottom: 10px; box-shadow: 0 4px 18px rgba(200,103,58,0.45);
}
.qs-body strong { font-size: 0.76rem; font-weight: 700; color: #fff; display: block; margin-bottom: 3px; }
.qs-body span { font-size: 0.67rem; color: rgba(255,255,255,0.4); line-height: 1.4; }
.qs-line { flex: 1; height: 1.5px; background: linear-gradient(90deg, var(--saffron), var(--gold)); opacity: 0.3; margin-top: 22px; }

/* ── Contact Channels (dark) ── */
.contact-channels { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cc-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 14px 18px;
  transition: var(--transition); color: rgba(255,255,255,0.75);
}
.cc-item:hover { border-color: rgba(200,103,58,0.4); transform: translateX(4px); background: rgba(200,103,58,0.08); color: #fff; }
.cc-wa { background: rgba(37,211,102,0.05); border-color: rgba(37,211,102,0.14); }
.cc-wa:hover { border-color: rgba(37,211,102,0.35); background: rgba(37,211,102,0.1); }
.cc-icon { font-size: 1.2rem; flex-shrink: 0; }
.cc-text strong { font-size: 0.82rem; font-weight: 700; display: block; margin-bottom: 2px; color: #fff; }
.cc-text span { font-size: 0.75rem; color: rgba(255,255,255,0.42); }

.contact-hours {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}
.ch-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.ch-dot.active { background: #25D366; animation: pulse-dot 2s ease-in-out infinite; }

/* ── Contact Stats ── */
.contact-stats {
  display: flex; align-items: center;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.cs-item { flex: 1; text-align: center; }
.cs-item strong { display: block; font-size: 1.35rem; font-weight: 800; color: var(--saffron); line-height: 1; margin-bottom: 4px; }
.cs-item span { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.38); }
.cs-div { width: 1px; height: 34px; background: rgba(255,255,255,0.1); }

/* ── Form Card ── */
.enquiry-form-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}
.form-card-header {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-d) 60%, #7A3A12 100%);
  padding: 26px 32px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em;
  color: #fff; margin-bottom: 5px;
}
.form-subtitle { font-size: 0.74rem; color: rgba(255,255,255,0.68); letter-spacing: 0.02em; }

.enquiry-form {
  background: var(--white);
  padding: 28px 32px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }
.fld { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fld:last-of-type { margin-bottom: 0; }
.fld label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #8a8a9a;
}
.fld input, .fld textarea {
  padding: 10px 13px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.875rem;
  color: var(--text); background: var(--off-white);
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  outline: none; resize: vertical; width: 100%;
}
.fld input:focus, .fld textarea:focus {
  border-color: var(--saffron); background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}
.fld input::placeholder, .fld textarea::placeholder { color: #bbb; font-style: italic; }

/* ── CUSTOM SELECT ── */
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none; -webkit-appearance: none;
  padding: 10px 40px 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text); background: var(--off-white);
  cursor: pointer; width: 100%;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  outline: none;
}
.select-wrap select:focus {
  border-color: var(--saffron); background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}
.select-wrap select option { color: var(--text); background: var(--white); }
.select-wrap select option[value=""] { color: #aaa; }
.select-wrap::after {
  content: '';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--saffron);
  transition: transform 0.2s;
}
.select-wrap:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ── FIELD VALIDATION STATES ── */
.fld-error {
  font-size: 0.7rem; color: #d93025; font-weight: 500;
  display: flex; align-items: center; gap: 4px;
  opacity: 0; transform: translateY(-3px);
  transition: opacity 0.18s, transform 0.18s;
  line-height: 1.3;
}
.fld-error:not(:empty) {
  opacity: 1; transform: translateY(0);
}
.fld-error::before {
  content: '!';
  display: inline-flex; align-items: center; justify-content: center;
  width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0;
  background: #d93025; color: #fff;
  font-size: 0.6rem; font-weight: 800;
}

.fld.fld--error input,
.fld.fld--error textarea {
  border-color: #d93025;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(217,48,37,0.08);
}
.fld.fld--error .select-wrap select {
  border-color: #d93025;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(217,48,37,0.08);
}
.fld.fld--error .select-wrap::after { border-top-color: #d93025; }

.fld.fld--valid input,
.fld.fld--valid textarea {
  border-color: #1e8e3e;
  box-shadow: 0 0 0 3px rgba(30,142,62,0.07);
}
.fld.fld--valid .select-wrap select {
  border-color: #1e8e3e;
  box-shadow: 0 0 0 3px rgba(30,142,62,0.07);
}
.fld.fld--valid .select-wrap::after { border-top-color: #1e8e3e; }

/* ── BAG CHIP MULTI-SELECT ── */
.fld-hint { font-size: 0.68rem; font-weight: 400; color: #bbb; margin-left: 5px; text-transform: none; letter-spacing: 0; }
.bag-chips {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.bag-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 11px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--off-white);
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all 0.18s; text-align: left; line-height: 1.2;
}
.bag-chip:hover { border-color: var(--saffron); background: #fff8f3; color: var(--saffron); }
.bag-chip.selected {
  background: var(--saffron); border-color: var(--saffron);
  color: #fff; box-shadow: 0 3px 10px rgba(255,107,0,0.28);
}
.chip-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  transition: all 0.18s;
}
.bag-chip.selected .chip-dot { opacity: 0; width: 0; }
.chip-check {
  width: 13px; height: 13px; margin-left: auto; flex-shrink: 0;
  opacity: 0; transform: scale(0.4); transition: all 0.18s;
}
.bag-chip.selected .chip-check { opacity: 1; transform: scale(1); }
.fld.fld--error .bag-chip { border-color: rgba(217,48,37,0.35); }
@media (max-width: 540px) { .bag-chips { grid-template-columns: repeat(2, 1fr); } }

/* ── PRINT TOGGLE ── */
.print-toggle {
  display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--off-white); height: 42px;
}
.pt-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 10px 8px; font-size: 0.875rem; font-weight: 600;
  color: var(--text-muted); background: transparent;
  border: none; cursor: pointer; transition: all 0.22s; line-height: normal;
}
.pt-btn:first-child { border-right: 1.5px solid var(--border); }
.pt-btn.active.pt-yes { background: #edf7ee; color: #1e8e3e; }
.pt-btn.active.pt-no  { background: #fdf0ee; color: #d93025; }
.pt-btn:hover:not(.active) { background: #f5f0ea; color: var(--text); }

/* ── SUBMIT + WHATSAPP ALT ── */
.form-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.form-submit { width: 100%; justify-content: center; font-size: 0.92rem; padding: 14px; }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-wa-alt {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  background: #25D366; color: #fff; font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.02em; transition: var(--transition);
}
.form-wa-alt:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: #0D1520; color: rgba(255,255,255,0.6); }
.footer-top { padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }

.footer-brand-col { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.small-emblem { width: 38px; height: 38px; font-size: 0.62rem; border-radius: 10px; }
.footer-brand-desc { font-size: 0.84rem; line-height: 1.75; margin-bottom: 18px; color: rgba(255,255,255,0.45); }
.footer-eco-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(37,211,102,0.1); color: #4ade80;
  border: 1px solid rgba(37,211,102,0.2); border-radius: 50px;
  font-size: 0.73rem; font-weight: 600; padding: 6px 14px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700; color: var(--white);
  margin-bottom: 20px; letter-spacing: 0.18em; text-transform: uppercase;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.84rem; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-col a:hover { color: var(--saffron); }

.footer-contact-list p { font-size: 0.84rem; margin-bottom: 10px; color: rgba(255,255,255,0.45); }
.footer-contact-list a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.footer-contact-list a:hover { color: var(--saffron); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  animation: waPulse 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white);
  font-size: 0.75rem; font-weight: 600; padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; pointer-events: none; opacity: 0;
  transition: opacity 0.3s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0.07); }
}

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(28,40,64,0.65); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl); padding: 56px 48px;
  text-align: center; max-width: 400px; width: 90%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  animation: modalIn 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn { from{transform:scale(0.7) translateY(40px);opacity:0} to{transform:scale(1) translateY(0);opacity:1} }
.modal-icon { font-size: 4rem; margin-bottom: 20px; }
.modal-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.modal-box p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
[data-animate] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate].visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-right { display: none; }
  .hero-cta-group, .hero-metrics { justify-content: center; }
  .hero-subheadline { margin: 0 auto 40px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .printing-layout { grid-template-columns: 1fr; gap: 48px; }
  .printing-features-grid { grid-template-columns: 1fr 1fr; }
  .printing-visual { display: none; }
  .process-steps { flex-direction: column; align-items: center; }
  .ps-connector { width: 2px; height: 40px; margin-top: 0; transform: none; opacity: 0.4; }
  .ps-connector::after { right: auto; left: 50%; top: auto; bottom: -6px; transform: translateX(-50%) rotate(90deg); }
  .whyus-layout { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  /* nav-menu animation inherited from 1024px block */
  .nav-menu .nav-link { color: var(--text-light); padding: 10px 14px; }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active { color: var(--text); background: rgba(200,103,58,0.07); }
  .hamburger { display: flex; }
  .nav-call { display: none; }
  .nav-cta { display: none; }
  .hero-container { padding: 100px 20px 60px; }
  .hero-metrics { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .metric-sep { display: none; }
  .products-grid { grid-template-columns: 1fr; perspective: none; }
  .why-cards { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-rating-bar { gap: 10px; padding: 8px 16px; }
  .trb-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .enquiry-form { padding: 22px 18px; }
  .form-card-header { padding: 22px 18px; }
  .bag-chips { grid-template-columns: repeat(2, 1fr); }
  .quote-steps { gap: 0; }
  .qs-step { min-width: 76px; }
  .contact-stats { padding: 14px 16px; }
  .cs-item strong { font-size: 1.1rem; }
  .about-stat-card { display: none; }
  .process-steps { gap: 24px; }
  .logo-svg { height: 40px; }
  .logo-svg--footer { height: 36px; }
  /* Disable 3D tilt on touch devices */
  .prod-card { transform-style: flat !important; }
}

@media (max-width: 400px) {
  .logo-svg { height: 34px; }
  .nav-container { padding: 0 16px; }
  .hero-headline { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .cta-primary,
  .hero-cta-group .cta-whatsapp { justify-content: center; }
}

/* ══════════════════════════════════════
   TABLET — spacing & layout polish
══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Navbar — switch to hamburger on tablet */
  .nav-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 86px; left: 16px; right: 16px;
    background: rgba(250,248,244,0.97); backdrop-filter: blur(20px);
    padding: 12px 16px; gap: 2px;
    border: 1px solid var(--border); border-radius: 20px;
    box-shadow: 0 8px 40px rgba(28,40,64,0.13); z-index: 490;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px) scale(0.97);
    transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.23,1,0.32,1), visibility 0s linear 0.28s;
  }
  .nav-menu.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.23,1,0.32,1), visibility 0s linear 0s;
  }
  .nav-menu .nav-link {
    color: var(--text-light); padding: 11px 16px;
    border-radius: 12px; font-size: 0.88rem; font-weight: 500;
    transition: background 0.18s, color 0.18s;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active { color: var(--text); background: rgba(200,103,58,0.08); }
  .hamburger { display: flex; }
  .nav-call { display: none; }
  .nav-cta { display: none; }

  /* Section spacing */
  .about, .products, .process, .whyus, .testimonials { padding: 80px 0; }
  .faq-section, .contact { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .contact-layout { gap: 40px; }
  .about-layout { gap: 40px; }
  .printing-layout { gap: 40px; }
}

/* ══════════════════════════════════════
   MOBILE — full responsive pass
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Section spacing */
  .about, .products, .process, .whyus, .testimonials { padding: 56px 0; }
  .faq-section, .contact { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .contact-layout { gap: 32px; }

  /* Typography */
  .section-heading { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }
  .section-sub { font-size: 0.9rem; }
  .hero-subheadline { font-size: 0.93rem; line-height: 1.75; }

  /* Printing — features grid to single column */
  .printing-features-grid { grid-template-columns: 1fr; gap: 10px; }
  .printing-desc { font-size: 0.9rem; margin-bottom: 24px; }

  /* Products */
  .prod-header { height: 170px; }
  .prod-body { padding: 18px; }
  .prod-title { font-size: 1rem; }

  /* Testimonials */
  .testi-card { padding: 24px 20px; }

  /* FAQ */
  .faq-item { padding: 18px 20px; }

  /* Process */
  .ps-step { padding: 0 10px; }

  /* Contact — quote steps wrap on mobile */
  .quote-steps { flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
  .qs-line { display: none; }
  .qs-step { min-width: 70px; }

  /* WhyUs */
  .whyus-layout { gap: 32px; }

  /* Hero metrics tighter */
  .hero-metrics { gap: 16px; }
  .metric-value { font-size: 2rem; }
}

/* ══════════════════════════════════════
   SMALL MOBILE (≤ 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Section spacing */
  .about, .products, .process, .whyus, .testimonials { padding: 44px 0; }
  .faq-section, .contact { padding: 44px 0; }
  .section-header { margin-bottom: 24px; }

  /* Hero */
  .hero-container { padding: 88px 16px 44px; }
  .hero-cta-group { gap: 10px; }
  .metric-value { font-size: 1.8rem; }

  /* Products */
  .prod-header { height: 150px; }
  .prod-body { padding: 14px 16px; }

  /* Cards & components */
  .testi-card { padding: 20px 16px; }
  .faq-item { padding: 16px; }
  .why-card { padding: 16px; }
  .pf-item { padding: 12px; }

  /* Buttons */
  .cta-primary, .cta-secondary { padding: 13px 24px; font-size: 0.85rem; }

  /* Form */
  .enquiry-form { padding: 16px 14px; }
  .form-card-header { padding: 16px 14px; }

  /* Contact */
  .cc-item { padding: 12px 14px; }
  .contact-stats { padding: 12px 14px; }
  .cs-item strong { font-size: 1rem; }
}
