:root {
  --bg: #0b0f14;
  --bg2: #111820;
  --bg3: #0e151d;
  --white: #f0eee8;
  --silver: #b8bcc8;
  --gold: #f4a850;
  --gold2: #ffc070;
  --steel: #e0e4f0; /* Brighter steel */
  --dim: #7a8094; /* Brighter dim for better visibility */
  --border: rgba(244, 168, 80, 0.08);
  --border2: rgba(244, 168, 80, 0.16);
  --fb: 'Bebas Neue', sans-serif;
  --fr: 'Rajdhani', sans-serif;
  --fm: 'Space Mono', monospace;
  --glass: rgba(21, 28, 36, 0.8);
  --glass-border: rgba(255, 255, 255, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Screen-reader only: visually hidden but indexed by search engines */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fr);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 158px;
  scroll-padding-top: 120px;
}

body > nav:not(.mob-nav-list) {
  z-index: 9999;
}

@media (max-width: 900px) {
  body {
    padding-top: 131px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* Grain Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 9997;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
}

.section-pad {
  padding: 100px 0;
}

.gold {
  color: var(--gold);
}

/* Buttons */
.btn-primary {
  font-family: var(--fb);
  font-size: 18px;
  letter-spacing: 3px;
  background: var(--gold);
  color: #0b0f14;
  border: none;
  padding: 16px 40px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color .4s;
  cursor: pointer;
  text-align: center;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111820;
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.76, 0, .24, 1);
}

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

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  font-family: var(--fb);
  font-size: 18px;
  letter-spacing: 3px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border2);
  padding: 16px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  cursor: pointer;
  text-align: center;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(244, 168, 80, 0.05);
}

.hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .hero-btns a {
    width: 100%;
  }
}

.btn-hero-primary {
  padding: 18px 48px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(244, 168, 80, 0.4);
}

.btn-hero-secondary {
  padding: 18px 48px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  transform: scale(1.05);
  background: rgba(244, 168, 80, 0.1);
}


/* Forms */
.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--fr);
  font-size: 16px;
  outline: none;
  transition: all .3s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.field-err {
  font-family: var(--fm);
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  display: block;
}

/* Toasts */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg2);
  border-left: 3px solid var(--gold);
  padding: 16px 28px;
  font-family: var(--fm);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.76, 0, .24, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.error {
  border-left-color: #ef4444;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Custom Cursor */
#cur {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  display: none !important;
}

#cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(244, 168, 80, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s;
  display: none !important;
}

@media (max-width: 900px) {
  #cur, #cur-ring {
    display: none;
  }
}

/* ═══ PREMIUM REDESIGN STYLES (DIGIVECS STYLE) ═══ */

/* Hero Premium */
.hero-premium {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  text-align: center;
  padding: 0 24px;
}

.hero-premium-content {\n  will-change: transform, opacity;\n  will-change: transform, opacity;
  max-width: 1100px;
  z-index: 10;
}

.hero-premium h1 {
  font-family: var(--fb);
  font-size: clamp(70px, 16vw, 160px); /* Increased mobile font size */
  line-height: 0.85;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--white);
}

.hero-premium h1 span {
  color: var(--gold);
}

.hero-premium p {
  font-size: clamp(16px, 4vw, 20px);
  color: var(--silver);
  max-width: 700px;
  margin: 0 auto 40px;
  letter-spacing: 1px;
}

/* Section Header */
.sec-header {
  text-align: center;
  margin-bottom: 80px;
}

.sec-label {
  font-family: var(--fm);
  font-size: 14px; /* Increased from 10px */
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.sec-title {
  font-family: var(--fb);
  font-size: clamp(36px, 8vw, 80px);
  line-height: 1;
  text-transform: uppercase;
}

/* Large Service Cards */
.services-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card-lg {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card-lg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 1;
}

.service-card-lg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(11, 15, 20, 0.98));
  z-index: 2;
  transition: opacity 0.5s ease;
}

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

.service-card-lg:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-content-lg {
  position: relative;
  z-index: 3;
  padding: 40px;
}

.service-card-lg h3 {
  font-family: var(--fb);
  font-size: 48px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 15px;
}

.service-card-lg p {
  color: var(--silver);
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.service-card-lg:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .expertise-grid { grid-template-columns: 1fr; gap: 40px; }
}

.skill-bar-container {
  margin-bottom: 30px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.skill-bar {
  height: 4px;
  background: var(--border2);
  position: relative;
  overflow: hidden;
}

.skill-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--white));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pricing Section */
.pricing-section-premium {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,168,80,0.06) 0%, transparent 60%),
              linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 100%);
}

/* Floating stars */
.pricing-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pricing-stars span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: starTwinkle 4s infinite ease-in-out;
}
.pricing-stars span:nth-child(1)  { width:2px;height:2px; top:10%; left:8%;  animation-delay:0s; }
.pricing-stars span:nth-child(2)  { width:3px;height:3px; top:25%; left:85%; animation-delay:0.8s; }
.pricing-stars span:nth-child(3)  { width:2px;height:2px; top:60%; left:15%; animation-delay:1.6s; }
.pricing-stars span:nth-child(4)  { width:4px;height:4px; top:75%; left:70%; animation-delay:2.4s; }
.pricing-stars span:nth-child(5)  { width:2px;height:2px; top:45%; left:50%; animation-delay:3.2s; }
.pricing-stars span:nth-child(6)  { width:3px;height:3px; top:15%; left:40%; animation-delay:0.5s; }
.pricing-stars span:nth-child(7)  { width:2px;height:2px; top:85%; left:30%; animation-delay:1.2s; }
.pricing-stars span:nth-child(8)  { width:2px;height:2px; top:35%; left:95%; animation-delay:2s; }
.pricing-stars span:nth-child(9)  { width:3px;height:3px; top:5%;  left:65%; animation-delay:2.8s; }
.pricing-stars span:nth-child(10) { width:2px;height:2px; top:90%; left:55%; animation-delay:3.6s; }
@keyframes starTwinkle {
  0%,100% { opacity:0; transform:scale(0.8); }
  50%      { opacity:0.7; transform:scale(1.2); }
}

.pricing-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.pricing-card-premium {
  background: rgba(14, 21, 29, 0.85);
  border: 1px solid rgba(244, 168, 80, 0.15);
  border-radius: 2px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.pricing-card-premium:hover {
  border-color: rgba(244,168,80,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.pricing-card-premium.featured {
  border-color: rgba(244,168,80,0.5);
  background: rgba(244,168,80,0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(244,168,80,0.08);
}
.pricing-card-premium.featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(244,168,80,0.14);
}

.pcard-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(244,168,80,0.12), transparent 70%);
  pointer-events: none;
}
.pcard-glow.featured-glow {
  background: radial-gradient(ellipse, rgba(244,168,80,0.25), transparent 70%);
  width: 260px;
  height: 180px;
  bottom: -60px;
}

.pcard-top-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 20px;
  white-space: nowrap;
}

.pcard-badge {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pcard-icon {
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: var(--gold);
}

.pcard-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold);
  filter: drop-shadow(0 0 8px rgba(244,168,80,0.3));
}

.pcard-price {
  font-family: var(--fr);
  font-size: 18px;
  color: var(--silver);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pcard-price span {
  font-family: var(--fb);
  font-size: 40px;
  color: var(--white);
  letter-spacing: 2px;
}

.pcard-sub {
  font-family: var(--fr);
  font-size: 13px;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pcard-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pcard-features li {
  font-family: var(--fr);
  font-size: 14px;
  color: var(--silver);
  padding: 9px 0;
  border-bottom: 1px solid rgba(244,168,80,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pcard-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

/* Mini patch calculator inside pricing card */
.pcard-calc {
  background: rgba(244,168,80,0.04);
  border: 1px solid rgba(244,168,80,0.12);
  border-radius: 2px;
  padding: 16px;
  margin-bottom: 4px;
}
.pcard-calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.pcard-calc-label {
  display: block;
  font-family: var(--fm);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.pcard-calc-select {
  width: 100%;
  padding: 8px 10px;
  background: var(--bg);
  border: 1px solid rgba(244,168,80,0.2);
  color: var(--white);
  font-family: var(--fr);
  font-size: 13px;
  outline: none;
  cursor: pointer;
}
.pcard-calc-select:focus { border-color: var(--gold); }
.pcard-calc-price {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
  text-align: center;
  padding: 8px 0 0;
  border-top: 1px solid rgba(244,168,80,0.08);
}
.pcard-calc-price span {
  color: var(--gold);
  font-family: var(--fb);
  font-size: 24px;
  margin-left: 8px;
}

@media (max-width: 1000px) {
  .pricing-grid-premium { grid-template-columns: 1fr; }
  .pricing-card-premium.featured { transform: none; }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .pricing-grid-premium { grid-template-columns: 1fr 1fr; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}


.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.pricing-card.popular {
  background: rgba(244, 168, 80, 0.05);
  border-color: var(--gold);
  transform: scale(1.05);
  z-index: 5;
}

@media (max-width: 1000px) {
  .pricing-card.popular { transform: scale(1); }
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--bg);
  padding: 5px 20px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pricing-card h4 {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 30px;
}

.price {
  font-family: var(--fb);
  font-size: 80px;
  line-height: 1;
  margin-bottom: 10px;
}

.price span {
  font-size: 20px;
  color: var(--silver);
}

.pricing-features {
  list-style: none;
  margin: 40px 0;
  text-align: left;
}

.pricing-features li {
  color: var(--silver);
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
}

/* Before & After Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

.comp-item {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.comp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.comp-item.comp-original img {
  filter: blur(1.6px) brightness(0.92) saturate(0.9);
}

.comp-item:hover img { transform: scale(1.05); }

.comp-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  padding: 8px 18px;
  font-family: var(--fm);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

  text-transform: uppercase;
  z-index: 5;
}

/* ── TICKER MARQUEE ── */
.ticker {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* ── GLOBALS ── */
.label-row, .sec-label {
  font-family: var(--fm);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.label-num {
  display: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 20s linear infinite;
}

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

.ticker-item {
  font-family: var(--fb);
  font-size: 28px;
  letter-spacing: 3px;
  color: #151c24;
  padding: 0 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker-item b {
  font-weight: normal;
  color: #3a3c48;
  margin-left: 8px;
}

.ticker-item::after {
  content: '✦';
  margin-left: 40px;
  color: rgba(21, 28, 36, 0.4);
  font-size: 16px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ RESPONSIVE FIXES ═══ */
@media (max-width: 768px) {
  nav {
    padding: 15px 24px;
  }
  
  .nav-links, .nav-auth {
    display: none;
  }
  
  .ham {
    display: flex;
    z-index: 1001;
  }

  .nav-logo-img {
    height: 50px !important;
  }

  .section-pad {
    padding: 60px 0;
  }
}

nav.scrolled {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* RESTORED OLD CSS */
    .service-num {
      font-family: var(--fb);
      font-size: 70px;
      color: rgba(244, 168, 80, .04);
      position: absolute;
      top: 16px;
      right: 20px;
      line-height: 1;
      transition: color .3s;
    }

/* Announcement bar compactness and char support */
#annBar {
  padding: 10px 20px !important;
}
#annBar span { font-size: 11px; }

    .service-card:hover .service-num {
      color: rgba(244, 168, 80, .09);
    }

    .service-icon {
      font-size: 40px;
      margin-bottom: 28px;
      display: block;
      transition: transform .3s;
    }

    .service-card:hover .service-icon {
      transform: translateY(-5px);
    }

    .service-title {
      font-family: var(--fb);
      font-size: 26px;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.1;
    }

    .service-desc {
      font-family: var(--fr);
      font-size: 14px;
      color: var(--steel);
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .service-features {
      list-style: none;
      margin-bottom: 24px;
    }

    .service-features li {
      font-family: var(--fm);
      font-size: 12px;
      letter-spacing: 1.5px;
      color: var(--steel);
      padding: 6px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 8px;
      text-transform: uppercase;
    }

    .service-features li::before {
      content: '→';
      color: var(--gold);
      font-size: 10px;
    }

    .service-tag {
      display: inline-block;
      font-family: var(--fm);
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(244, 168, 80, .3);
      padding: 6px 14px;
      transition: all .2s;
      cursor: pointer;
    }

    .service-tag:hover {
      background: var(--gold);
      color: #151c24;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-canvas-wrap {
      width: 100%;
      aspect-ratio: 1;
    }

    #about-canvas {
      width: 100%;
      height: 100%;
    }

    .about-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 2px;
    }

    .about-stat {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 24px;
      text-align: center;
    }

    .about-stat-num {
      font-family: var(--fb);
      font-size: 44px;
      color: var(--gold);
      line-height: 1;
    }

    .about-stat-label {
      font-family: var(--fm);
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--steel);
      text-transform: uppercase;
      margin-top: 6px;
    }

    .about-text h2 {
      font-family: var(--fb);
      font-size: clamp(40px, 5vw, 68px);
      line-height: .92;
      margin-bottom: 22px;
    }

    .about-text h2 em {
      color: var(--gold);
      font-style: normal;
    }

    .about-text p {
      font-family: var(--fr);
      font-size: 16px;
      color: var(--silver);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .skill-bars {
      margin-top: 32px;
    }

    .skill-bars .skill-bar {
      height: auto;
      overflow: visible;
      background: transparent;
      margin-bottom: 18px;
    }

    .skill-bar-head {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .skill-bar-name {
      font-family: var(--fm);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
    }

    .skill-bar-pct {
      font-family: var(--fm);
      font-size: 12px;
      color: var(--gold);
    }

    .skill-bar-track {
      height: 1px;
      background: var(--border2);
    }

    .skill-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      transform: scaleX(0);
      transform-origin: left;
    }

    /* BIG FEATURE */
    .big-feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 540px;
    }

    .big-feature-img {
      position: relative;
      overflow: hidden;
      background: var(--bg3);
    }

    .big-feature-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(.25);
      transition: filter .6s, transform .6s;
    }

    .big-feature-img:hover img {
      filter: grayscale(0);
      transform: scale(1.04);
    }

    .feat-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(21, 28, 36, .65), transparent);
    }

    .big-feature-content {
      padding: 72px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--bg2);
      border: 1px solid var(--border);
    }

    .feature-eyebrow {
      font-family: var(--fm);
      font-size: 13px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .feature-title {
      font-family: var(--fb);
      font-size: clamp(34px, 4vw, 58px);
      line-height: .92;
      margin-bottom: 18px;
    }

    .feature-desc {
      font-family: var(--fr);
      font-size: 16px;
      color: var(--silver);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .feature-list {
      list-style: none;
      margin-bottom: 36px;
    }

    .feature-list li {
      font-family: var(--fr);
      font-size: 15px;
      color: var(--silver);
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .feature-list li .fli {
      font-size: 17px;
      flex-shrink: 0;
      margin-top: 2px;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }

    .feature-list li .fli svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
      flex-shrink: 0;
    }

    .feature-list li strong {
      color: var(--white);
    }

    /* UPLOAD / ORDER */
    .order-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .order-grid-single {
      max-width: 780px;
      margin: 0 auto;
    }

    .form-label {
      display: block;
      font-family: var(--fm);
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--steel);
      margin-bottom: 8px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--white);
      font-family: var(--fr);
      font-size: 15px;
      outline: none;
      transition: border .2s;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--gold);
    }

    .form-select option {
      background: var(--bg3);
    }

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

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-grp {
      margin-bottom: 18px;
    }

    .upload-zone {
      border: 2px dashed rgba(244, 168, 80, .28);
      padding: 44px 28px;
      text-align: center;
      transition: all .3s;
      cursor: pointer;
      position: relative;
      background: var(--bg3);
    }

    .upload-zone:hover,
    .upload-zone.drag-over {
      border-color: var(--gold);
      background: rgba(244, 168, 80, .04);
    }

    .upload-zone input[type=file] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }

    .upload-icon-big {
      font-size: 44px;
      display: block;
      margin-bottom: 14px;
    }

    .upload-title {
      font-family: var(--fb);
      font-size: 22px;
      letter-spacing: 2px;
      margin-bottom: 6px;
    }

    .upload-sub {
      font-family: var(--fm);
      font-size: 8px;
      letter-spacing: 2px;
      color: var(--steel);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .upload-or {
      font-family: var(--fm);
      font-size: 8px;
      letter-spacing: 3px;
      color: var(--dim);
      text-transform: uppercase;
      margin: 12px 0;
    }

    .upload-browse {
      font-family: var(--fm);
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(244, 168, 80, .35);
      padding: 9px 20px;
      cursor: pointer;
      transition: all .2s;
      position: relative;
      z-index: 2;
    }

    .upload-browse:hover {
      background: var(--gold);
      color: #151c24;
    }

    .upload-preview {
      margin-top: 14px;
      padding: 11px 14px;
      background: rgba(244, 168, 80, .06);
      border: 1px solid rgba(244, 168, 80, .2);
      display: none;
      align-items: center;
      gap: 10px;
    }

    .upload-preview.show {
      display: flex;
    }

    .upload-fname {
      font-family: var(--fm);
      font-size: 9px;
      color: var(--gold);
      word-break: break-all;
    }

    .upload-rm {
      background: none;
      border: none;
      color: var(--steel);
      cursor: pointer;
      font-size: 16px;
      margin-left: auto;
      transition: color .2s;
    }

    .upload-rm:hover {
      color: #ef4444;
    }

    .rush-lbl {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 13px 14px;
      background: var(--bg3);
      border: 1px solid var(--border);
      cursor: pointer;
      user-select: none;
      transition: border .2s;
    }

    .rush-lbl:hover {
      border-color: rgba(244, 168, 80, .3);
    }

    .rush-lbl input {
      display: none;
    }

    .rush-box {
      width: 20px;
      height: 20px;
      border: 1px solid var(--border2);
      position: relative;
      flex-shrink: 0;
      transition: all .2s;
    }

    .rush-lbl input:checked+.rush-box {
      background: var(--gold);
      border-color: var(--gold);
    }

    .rush-lbl input:checked+.rush-box::after {
      content: '✓';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: #151c24;
      font-weight: 900;
    }

    .rush-txt {
      font-family: var(--fm);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
    }

    .rush-txt b {
      color: var(--gold);
    }

    .quote-box {
      background: var(--bg3);
      border: 1px solid var(--border);
      padding: 20px 22px;
    }

    .qrow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0;
      border-bottom: 1px solid var(--border);
    }

    .qrow:last-child {
      border: none;
      padding-top: 12px;
    }

    .qlabel {
      font-family: var(--fm);
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--steel);
    }

    .qval {
      font-family: var(--fm);
      font-size: 10px;
      color: var(--white);
    }

    .qtotal-label {
      font-family: var(--fm);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .qtotal-val {
      font-family: var(--fb);
      font-size: 34px;
      color: var(--gold);
    }

    .wa-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-family: var(--fb);
      font-size: 20px;
      letter-spacing: 3px;
      background: #25d366;
      color: #fff;
      border: none;
      padding: 16px;
      cursor: pointer;
      transition: opacity .2s;
      text-decoration: none;
      margin-top: 14px;
    }

    .wa-btn:hover {
      opacity: .88;
    }

    .contact-info-box {
      border: 1px solid var(--border);
      padding: 18px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-info-row {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--steel);
      font-family: var(--fm);
      font-size: 10px;
      letter-spacing: 1px;
      transition: color .2s;
    }

    .contact-info-row:hover {
      color: var(--white);
    }

    /* APPAREL */
    .apparel-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .apparel-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 34px 28px;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .apparel-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(244, 168, 80, .04), transparent);
      opacity: 0;
      transition: opacity .4s;
    }

    .apparel-card:hover {
      border-color: rgba(244, 168, 80, .3);
      transform: translateY(-3px);
    }

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

    .apparel-icon {
      font-size: 44px;
      display: block;
      margin-bottom: 18px;
    }

    .apparel-title {
      font-family: var(--fb);
      font-size: 24px;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .apparel-desc {
      font-family: var(--fr);
      font-size: 14px;
      color: var(--steel);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .apparel-list {
      list-style: none;
    }

    .apparel-list li {
      font-family: var(--fm);
      font-size: 8px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--steel);
      padding: 5px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .apparel-list li::before {
      content: '→';
      color: var(--gold);
      font-size: 9px;
    }

    .apparel-badge {
      display: inline-block;
      margin-top: 14px;
      font-family: var(--fm);
      font-size: 7px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(244, 168, 80, .3);
      padding: 5px 12px;
    }

    /* PATCHES */
    .patches-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 52px;
    }

    .patch-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      padding: 38px 30px;
      position: relative;
      overflow: hidden;
      transition: all .3s;
    }

    .patch-card:hover {
      border-color: rgba(244, 168, 80, .3);
      transform: translateY(-4px);
    }

    .patch-num {
      font-family: var(--fb);
      font-size: 60px;
      color: rgba(244, 168, 80, .15);
      position: absolute;
      top: 12px;
      right: 18px;
      line-height: 1;
    }

    .patch-title {
      font-family: var(--fb);
      font-size: 24px;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .patch-desc {
      font-family: var(--fr);
      font-size: 14px;
      color: var(--steel);
      line-height: 1.7;
    }

    /* PROCESS */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2), var(--gold), var(--border2), transparent);
    }

    .process-step {
      padding: 0 20px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .process-num {
      width: 64px;
      height: 64px;
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fb);
      font-size: 28px;
      color: var(--gold);
      margin: 0 auto 22px;
      background: var(--bg);
      transition: all .3s;
    }

    .process-step:hover .process-num {
      background: var(--gold);
      color: #151c24;
      border-color: var(--gold);
    }

    .process-title {
      font-family: var(--fb);
      font-size: 22px;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .process-desc {
      font-family: var(--fr);
      font-size: 14px;
      color: var(--steel);
      line-height: 1.65;
    }

    /* MARQUEE */
    .marquee-wrap {
      overflow: hidden;
      padding: 72px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .marquee-track {
      display: flex;
      gap: 80px;
      white-space: nowrap;
      animation: marquee 24s linear infinite;
    }

    .marquee-item {
      font-family: var(--fb);
      font-size: clamp(60px, 8vw, 110px);
      color: rgba(244, 168, 80, 0.25);
      -webkit-text-stroke: 1px rgba(244, 168, 80, 0.35);
      flex-shrink: 0;
    }

    .marquee-item.fill {
      color: var(--gold);
      -webkit-text-stroke: 1px var(--gold);
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* TESTIMONIALS */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .testi-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 34px 28px;
      transition: border-color .3s;
    }

    .testi-card:hover {
      border-color: rgba(244, 168, 80, .2);
    }

    .testi-stars {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 4px;
      margin-bottom: 18px;
    }

    .testi-text {
      font-family: var(--fr);
      font-size: 15px;
      color: var(--silver);
      line-height: 1.8;
      margin-bottom: 22px;
      font-style: italic;
    }

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

    .testi-avatar {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--bg3), rgba(244, 168, 80, .15));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fb);
      font-size: 18px;
      color: var(--gold);
      flex-shrink: 0;
      border: 1px solid var(--border2);
    }

    .testi-name {
      font-family: var(--fr);
      font-weight: 700;
      font-size: 15px;
      color: var(--white);
    }

    .testi-role {
      font-family: var(--fm);
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--steel);
      text-transform: uppercase;
      margin-top: 3px;
    }

    /* FAQ */
    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      cursor: pointer;
    }

    .faq-q-text {
      font-family: var(--fr);
      font-weight: 600;
      font-size: 16px;
      color: var(--white);
    }

    .faq-icon {
      color: var(--gold);
      font-size: 22px;
      transition: transform .3s;
      flex-shrink: 0;
      margin-left: 16px;
      line-height: 1;
    }

    .faq-icon.open {
      transform: rotate(45deg);
    }

    .faq-a {
      font-family: var(--fr);
      font-size: 15px;
      color: var(--steel);
      line-height: 1.75;
      padding-bottom: 20px;
      display: none;
    }

    .faq-a.open {
      display: block;
      animation: fadein .3s ease;
    }

    @keyframes fadein {
      from {
        opacity: 0;
        transform: translateY(-6px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    /* CTA */
    .cta-section {
      text-align: center;
      padding: 160px 60px;
      background: radial-gradient(ellipse at center, rgba(244, 168, 80, .055) 0%, transparent 60%);
      position: relative;
      z-index: 2;
    }

    .cta-title {
      font-family: var(--fb);
      font-size: clamp(50px, 7vw, 100px);
      line-height: .88;
      margin-bottom: 24px;
      opacity: 0;
      transform: scale(.88);
    }

    .cta-title em {
      color: var(--gold);
      font-style: normal;
    }

    .cta-sub {
      font-family: var(--fr);
      font-size: 18px;
      color: var(--silver);
      margin-bottom: 48px;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 60px;
      position: relative;
      z-index: 2;
      background: var(--bg3);
    }

    /* PATCH CALCULATOR */
    .patch-calculator {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 40px;
      margin-top: 40px;
    }
    .patch-calculator h3 {
      font-family: var(--fb);
      font-size: 40px;
      color: var(--white);
      letter-spacing: 2px;
      margin-bottom: 24px;
      text-align: center;
    }
    .calc-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 24px;
    }
    .calc-field {
      text-align: left;
    }
    .calc-field label {
      display: block;
      font-family: var(--fm);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .calc-select {
      width: 100%;
      padding: 14px 16px;
      background: var(--bg);
      border: 1px solid var(--border2);
      color: var(--white);
      font-family: var(--fr);
      font-size: 16px;
      outline: none;
      cursor: pointer;
      appearance: auto;
    }
    .calc-select:focus {
      border-color: var(--gold);
    }
    .calc-price {
      font-family: var(--fb);
      font-size: 56px;
      color: var(--white);
      text-align: center;
      padding-top: 24px;
      border-top: 1px dashed var(--border);
    }
    .calc-price span {
      color: var(--gold);
    }
    @media (max-width: 600px) {
      .calc-row { grid-template-columns: 1fr; }
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand-name {
      font-family: var(--fb);
      font-size: clamp(30px, 4vw, 50px);
      color: rgba(244, 168, 80, 0.35);
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 16px;
    }

    .footer-desc {
      font-family: var(--fr);
      font-size: 14px;
      color: var(--steel);
      line-height: 1.7;
      margin-bottom: 20px;
    }

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

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--steel);
      text-decoration: none;
      font-size: 14px;
      transition: all .2s;
    }

    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-col-title {
      font-family: var(--fm);
      font-size: 13px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .footer-col-link {
      display: block;
      font-family: var(--fr);
      font-size: 14px;
      color: var(--steel);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color .2s;
    }

    .footer-col-link:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-family: var(--fm);
      font-size: 13px;
      letter-spacing: 1px;
      color: var(--silver);
    }

    .footer-bot-links {
      display: flex;
      gap: 20px;
    }

    .footer-bot-links a {
      font-family: var(--fm);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-bot-links a:hover {
      color: var(--gold);
    }

    /* WA FLOAT */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      width: 56px;
      height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 24px rgba(37, 211, 102, .35);
      transition: transform .2s;
    }

    .wa-float:hover {
      transform: scale(1.1);
    }

    .wa-pulse {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #25d366;
      animation: wapulse 2s ease-out infinite;
      pointer-events: none;
    }

    @keyframes wapulse {
      0% {
        opacity: .6;
        transform: scale(1)
      }

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

    .wa-float svg {
      position: relative;
      z-index: 1;
    }

    /* TOAST */
    .toast {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-left: 3px solid var(--gold);
      color: var(--white);
      font-family: var(--fm);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 13px 22px;
      z-index: 9999;
      opacity: 0;
      transition: opacity .3s, transform .3s;
      pointer-events: none;
      white-space: nowrap;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* GSAP INIT */
    .gsap-reveal {
      opacity: 0;
      transform: translateY(40px);
    }

    .gsap-stagger {
      opacity: 0;
      transform: translateY(30px);
    }

    /* RESPONSIVE */
    @media(max-width:1100px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      nav {
        padding: 16px 32px;
      }
    }

    @media(max-width:900px) {
      nav {
        padding: 14px 20px;
        top: 0 !important;
      }

      nav.scrolled {
        padding: 12px 20px;
      }

      .nav-logo-img {
        height: 65px;
      }

      .nav-links,
      .nav-auth {
        display: none !important;
      }

      .ham {
        display: flex !important;
      }

      body {
        cursor: auto;
      }

      #cur,
      #cur-ring {
        display: none;
      }

      .container {
        padding: 0 20px;
      }

      .section-pad {
        padding: 64px 0;
      }

      .hero {
        padding: 120px 20px 60px;
      }

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

      .btn-primary,
      .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
        padding: 16px 24px;
      }

      #sticky-cta {
        width: auto !important;
        max-width: none !important;
        left: 20px !important;
        bottom: 20px !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
      }
      .wa-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
      }
      #back-to-top {
        bottom: 80px !important;
        right: 20px !important;
        width: 44px !important;
        height: 44px !important;
      }

      .hero-stats {
        flex-wrap: wrap;
        border: none;
        gap: 2px;
      }

      .hero-stat {
        border: 1px solid var(--border);
        flex: 1 1 calc(50% - 1px);
      }

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

      .apparel-grid,
      .patches-grid,
      .testi-grid {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
      }

      .process-steps::before {
        display: none;
      }

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

      .big-feature-grid {
        grid-template-columns: 1fr;
      }

      .big-feature-img {
        min-height: 260px;
      }

      .big-feature-content {
        padding: 32px 20px;
      }

      footer {
        padding: 40px 20px;
      }

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

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

      .cta-btns {
        flex-direction: column;
        align-items: center;
      }

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

      .form-row {
        grid-template-columns: 1fr;
      }

      #annBar span {
        font-size: 8px;
        letter-spacing: 1px;
      }

      #annBar {
        display: none;
      }

      .marquee-wrap {
        padding: 40px 0;
      }

      .marquee-item {
        font-size: clamp(40px, 10vw, 70px);
      }
    }

    @media(max-width:480px) {
      .hero-title {
        font-size: clamp(44px, 16vw, 70px);
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

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

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

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

  </style>

/* ENGAGEMENT ANIMATIONS */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(244,168,80,0.15) !important;
}
.pricing-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(244,168,80,0.2) !important;
  border-color: rgba(244,168,80,0.4) !important;
}
#toast { z-index: 10000; }

/* Hide irritating elements by default; allow JS to show them */
#scroll-progress, #exit-popup { 
    /* display: none removed to allow JavaScript visibility control */
    opacity: 0; 
    pointer-events: none; 
    visibility: hidden;
}

/* Fix overlapping of back-to-top and whatsapp buttons */
@media (min-width: 901px) {
  #back-to-top { 
      bottom: 100px !important; 
  }
}


/* ENGAGEMENT ANIMATIONS */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(244,168,80,0.15) !important;
}
.pricing-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(244,168,80,0.2) !important;
  border-color: rgba(244,168,80,0.4) !important;
}
#toast { z-index: 10000; }

/* REVIEWS BENTO SECTION */
.reviews-bento-section { padding: 100px 0; background-color: var(--bg1); }
.reviews-bento-header { text-align: center; margin-bottom: 3rem; }
.reviews-bento-header .eyebrow { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: #E8A030; font-weight: 600; display: block; margin-bottom: 8px; }
.reviews-bento-header h2 { font-size: 32px; font-weight: 500; margin: 0 0 8px; color: #fff; }
.reviews-bento-header p { color: rgba(255,255,255,0.6); font-size: 16px; margin: 0; }

.reviews-bento-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.5fr 1fr; 
  gap: 20px; 
  max-width: 1100px; 
  margin: 0 auto; 
}

.bento-card { 
  background: #141c2b; 
  border: 0.5px solid rgba(255,255,255,0.08); 
  border-radius: 16px; 
  padding: 20px 22px; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  position: relative;
  overflow: hidden;
}

.bento-card, .bento-stat-block { 
  --rot: 0deg;
  --y: 0px;
  transform: translateY(var(--y)) rotate(var(--rot));
  transition: opacity 0.6s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-rot-n2 { --rot: -2deg; }
.bento-rot-p2 { --rot: 2deg; }
.bento-rot-n1 { --rot: -1deg; }

.bento-card:hover {
  --y: -4px;
  border-color: rgba(232,160,48,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gsap-bento {
  opacity: 0;
  --y: 20px;
}
.gsap-bento.is-visible {
  opacity: 1;
  --y: 0px;
}

.bento-badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; align-self: flex-start; }
.bento-badge.amber { background: rgba(232,160,48,0.15); color: #E8A030; }
.bento-badge.blue { background: rgba(55,138,221,0.15); color: #85B7EB; }
.bento-badge.green { background: rgba(99,153,34,0.15); color: #97C459; }
.bento-badge.purple { background: rgba(127,119,221,0.15); color: #AFA9EC; }

.bento-quote { font-size: 14.5px; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; font-style: italic; }
.bento-author { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: auto; }

.bento-featured { grid-row: span 2; padding: 40px 30px; gap: 16px; justify-content: center; }
.bento-quote-mark { position: absolute; top: 10px; right: 20px; font-size: 80px; font-family: serif; color: rgba(232,160,48,0.2); line-height: 1; pointer-events: none; }
.bento-label { color: #E8A030; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; }
.bento-featured .bento-quote { font-size: 18px; line-height: 1.5; color: #fff; }
.bento-author-featured { margin-top: 10px; }
.bento-author-featured strong { display: block; font-size: 15px; color: #fff; }
.bento-author-featured span { font-size: 13px; color: rgba(255,255,255,0.5); }

.bento-author-inline { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
.bento-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.bento-avatar.blue { background: rgba(55,138,221,0.15); color: #85B7EB; }
.bento-avatar.purple { background: rgba(127,119,221,0.15); color: #AFA9EC; }

.bento-stat-block { 
  background: #182235; 
  border: 1px solid rgba(232,160,48,0.1); 
  border-radius: 16px; 
  padding: 20px; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-evenly; 
  align-items: center; 
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-large { font-size: 20px; font-weight: 600; color: #E8A030; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); }
.stat-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; }

.bento-wide { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 30px; }
.bento-wide .bento-quote { max-width: 60%; font-size: 15px; }

/* Responsive Adjustments */
@media (max-width: 900px) {
  .reviews-bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-featured { grid-row: span 1; grid-column: span 2; }
  .bento-rot-n2, .bento-rot-p2, .bento-rot-n1 { --rot: 0deg; }
}

@media (max-width: 768px) {
  .bento-wide { flex-direction: column; align-items: flex-start; }
  .bento-wide .bento-quote { max-width: 100%; }
}

@media (max-width: 480px) {
  .reviews-bento-grid { grid-template-columns: 1fr; }
  .bento-featured { grid-column: 1; }
  .bento-stat-block { padding: 30px 20px; gap: 15px; }
  .stat-divider { width: 80%; }
}

/* ── REVIEW PLATFORMS ── */
.platform-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.platform-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}
.platform-badge-btn.tp-btn {
  background: rgba(0, 180, 100, 0.06);
  border-color: rgba(0, 180, 100, 0.2);
}
.platform-badge-btn.tp-btn:hover {
  background: rgba(0, 180, 100, 0.12);
  border-color: #00b464;
}
.platform-badge-btn.google-btn {
  background: rgba(244, 168, 80, 0.06);
  border-color: rgba(244, 168, 80, 0.2);
}
.platform-badge-btn.google-btn:hover {
  background: rgba(244, 168, 80, 0.12);
  border-color: var(--gold);
}

/* Hide overlapping swipe hint on mobile menu */
.mob-swipe-hint {
  display: none !important;
}

/* ═══ MOBILE RESPONSIVENESS PATCHES ═══ */

/* BUG 1 — Disable horizontal scroll globally & cap ticker widths */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ticker, .marquee-wrap {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

/* BUG 2 — 3D Shape height and margin on mobile */
@media (max-width: 768px) {
  .about-canvas-wrap {
    aspect-ratio: auto !important;
    height: 260px !important;
    margin-bottom: 30px !important;
  }
}

/* BUG 3 — Floating Button Stacking & Mobile Menu z-index */
@media (max-width: 900px) {
  .wa-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 900 !important;
  }
  #back-to-top {
    bottom: 85px !important; /* Stack vertically: 20px bottom + 50px height + 15px gap */
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 900 !important;
  }
  #sticky-cta {
    bottom: 20px !important;
    left: 20px !important;
    z-index: 900 !important;
  }
}

/* Hide floating elements when mobile menu is open */
.mob-menu.open ~ #sticky-cta,
.mob-menu.open ~ .wa-float,
.mob-menu.open ~ #back-to-top {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Ensure mobile menu overlay sits above floating buttons */
.mob-menu {
  z-index: 1000 !important;
}
.mob-menu-close {
  z-index: 1001 !important;
}

/* BUG 4 — Mobile Menu Top Padding Adjustments */
@media (max-width: 768px) {
  .mob-menu {
    justify-content: flex-start !important;
    padding-top: 90px !important;
  }
  .mob-nav-list {
    margin-bottom: 24px !important;
  }
}



