/* ====================================================
   SURAKSHA - HELP DESK  |  app.css  (clean merged)
   ==================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

:root {
  --primary:    #FFCB00;
  --secondary:  #2D7A60;
  --accent:     #FFCB00;
  --pink:       #F2295B;
  --dark:       #0D1B12;
  --light:      #F0F7F5;
  --white:      #FFFFFF;
  --headline:   #0D1B12;
  --body:       #3C3C3C;
  --border:     #EAEAEA;
  --font:       'Montserrat', sans-serif;
  --max-w:      1280px;
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: auto; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
a, button { outline: none; -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ====================================================
   ANIMATION SYSTEM
   ==================================================== */
.ui-animated {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: var(--ease-out);
}
.ui-animated.fade-up    { transform: translateY(40px); }
.ui-animated.fade-left  { transform: translateX(-40px); }
.ui-animated.fade-right { transform: translateX(40px); }
.ui-animated.fade-in    { transform: scale(0.96); }
.ui-animated.is-visible { opacity: 1; transform: translate(0, 0) scale(1); }

.delay-100  { transition-delay: 0.1s; }
.delay-200  { transition-delay: 0.2s; }
.delay-300  { transition-delay: 0.3s; }
.delay-400  { transition-delay: 0.4s; }
.delay-500  { transition-delay: 0.5s; }
.delay-600  { transition-delay: 0.6s; }
.delay-700  { transition-delay: 0.7s; }
.delay-800  { transition-delay: 0.8s; }
.delay-1000 { transition-delay: 1s; }

/* ====================================================
   SCROLL PROGRESS BAR
   ==================================================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 0.08s linear;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}

/* ====================================================
   NAVBAR
   ==================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#navbar.is-transparent {
  background: rgb(255 203 0);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 76px;
}

/* ── Logo — Suraksha S-badge + wordmark ── */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-light { display: flex; }
.logo-dark  { display: none; }
#navbar.is-scrolled .logo-light { display: none; }
#navbar.is-scrolled .logo-dark  { display: flex; }

.logo-s-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.logo-s-light { background: #000; color: #fff; }
.logo-s-dark  { background: var(--dark); color: var(--white); }

.logo-wordmark {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-wordmark-light { color: var(--white); }
.logo-wordmark-dark  { color: var(--dark); }

/* ── Desktop nav menu ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 44px;
  flex: 1;
  list-style: none;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  position: relative;
  transition: opacity 0.2s;
  white-space: nowrap;
}

#navbar.is-scrolled .nav-menu a { color: var(--headline); }
.nav-menu a:hover { opacity: 0.65; }

.nav-menu a.active-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── Nav actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* ── Profile icon ── */
.nav-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.92);
  transition: background 0.2s, transform 0.2s;
  background: rgb(0 0 0 / 15%);
  flex-shrink: 0;
}
.nav-profile svg { width: 20px; height: 20px; }
.nav-profile:hover { background: rgba(255, 255, 255, 0.15); transform: scale(1.1); }
#navbar.is-scrolled .nav-profile { color: var(--headline); }
#navbar.is-scrolled .nav-profile:hover { background: rgba(0, 0, 0, 0.06); }

/* ── Log In CTA button ── */
.btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--headline);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  margin-left: 6px;
}
.btn-signup:hover {
  background: #1f2e22;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Hamburger (mobile only) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  outline: none;
}
#navbar.is-scrolled .nav-hamburger {
  /* background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15); */
}
.nav-hamburger span {
  display: block;
  width: 16px; height: 2px;
  background: #000000;
  border-radius: 2px;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
}
#navbar.is-scrolled .nav-hamburger span { background: var(--headline); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   MOBILE OVERLAY
   ==================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 18, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ====================================================
   MOBILE DRAWER  — no header row, no close button
   ==================================================== */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 999;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.16);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.4s var(--ease-out), opacity 0.28s ease;
  padding-top: 76px;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  list-style: none;
  padding: 10px 12px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--headline);
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}
.mobile-menu a:hover,
.mobile-menu a.active-link  { background: var(--light); color: var(--secondary); }
.mobile-menu a:focus        { outline: none; background: none; }
.mobile-menu a:active       { background: var(--light); }

.mob-icon { display: none; }
.mob-chevron { opacity: 0.3; flex-shrink: 0; }
.mobile-menu a:hover .mob-chevron,
.mobile-menu a.active-link .mob-chevron { opacity: 0.7; }

/* ====================================================
   HERO SECTION
   ==================================================== */
#hero {
  position: relative;
  background-color: var(--primary);
  background-image: url('/wp-content/uploads/sites/9/2025/06/help-desk-hero-grid-bg-scaled.webp');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  padding-top: 76px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 30% 50%, var(--primary) 35%, rgba(242,41,91,0) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-wrap { position: relative; z-index: 1; width: 100%; }

.hero-inner {
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 76px);
}

.hero-left {
  width: 53%;
  flex-shrink: 0;
  padding: 60px 10px 120px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 1100px;
}

.hero-headline .highlight-word { position: relative; display: inline-block; }
.hero-headline .highlight-word::after {
  content: '';
  position: absolute;
  bottom: 0; left: -4px; right: -4px;
  height: 9px;
  background: var(--accent);
  border-radius: 2px;
  z-index: -1;
}
.hero-headline .highlight-word .svg-underline {
  position: absolute;
  bottom: -8px; left: 0;
  width: 100%;
  pointer-events: none;
  overflow: visible;
}
.hero-headline .highlight-word .svg-underline path {
  stroke: var(--accent);
  stroke-width: 8;
  fill: none;
  stroke-linecap: round;
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  font-weight: 400;
}

.hero-form { margin-top: 48px; max-width: 560px; }

.hero-form-row {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.hero-form-row:focus-within { border-color: rgba(255,255,255,0.6); }
.hero-form-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 22px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  min-width: 0;
}
.hero-form-row input::placeholder { color: rgba(255,255,255,0.6); }
.hero-form-row .btn-try {
  background: var(--headline);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 0 28px;
  cursor: pointer;
  border-radius: 10px;
  margin: 4px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.hero-form-row .btn-try:hover { background: #1f2e22; transform: scale(1.02); }

.hero-features { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 22px; }
.hero-feat-item { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: var(--white); }
.hero-feat-item svg { width: 16px; height: 16px; fill: var(--white); flex-shrink: 0; }

.hero-right {
  width: 50%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/sites/9/2025/06/help-desk-hero2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.hero-main-image { position: relative; z-index: 1; width: 100%; max-width: 560px; object-fit: contain; align-self: flex-end; }

.hero-card { position: absolute; z-index: 2; }
.hero-card-1 { left: -140px; top: 350px; width: 526px; }
.hero-card-2 { right: -20px; top: 140px; width: 205px; }
.hero-card-3 { right: -20px; bottom: 38px; width: 168px; }

/* ====================================================
   LOGO CAROUSEL STRIP
   ==================================================== */
.logo-strip {
  border-bottom: 2px solid #F0F0F0;
  padding: 24px 0;
  overflow: hidden;
}
.logo-strip-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}
.logo-strip-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}
.logo-strip-track img:hover { opacity: 1; filter: grayscale(0); }

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====================================================
   SECTION COMMON
   ==================================================== */
.section    { padding: 120px 0; }
.section-sm { padding: 80px 0; }

.section-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--headline);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.section-heading .highlight-word { position: relative; display: inline-block; }
.section-heading .highlight-word .svg-underline {
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%;
  overflow: visible;
  pointer-events: none;
}
.section-heading .highlight-word .svg-underline path {
  stroke: var(--accent);
  stroke-width: 6;
  fill: none;
}

/* ====================================================
   FOOTER CTA
   ==================================================== */
#footer-cta {
  position: relative;
  background-color: var(--dark);
  background-image: url('/wp-content/uploads/sites/9/2025/06/help-desk-footer-scaled.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at center, var(--primary) 25%, rgba(242,41,91,0) 100%);
  pointer-events: none;
}
.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 0;
  gap: 24px;
}
.footer-cta-headline {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  max-width: 1100px;
}
.footer-cta-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-top: 4px; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--headline);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,203,0,0.35);
}

/* ====================================================
   FOOTER MAIN
   ==================================================== */
#footer-main { background: var(--white); }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 80px 10px 96px;
}

.footer-newsletter { flex: 0 0 auto; max-width: 45%; }
.footer-newsletter h3 {
  font-size: 48px;
  font-weight: 600;
  font-style: italic;
  color: var(--headline);
  line-height: 1.15;
  max-width: 370px;
  padding-bottom: 32px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 5px 0;
  max-width: 460px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  color: var(--headline);
  background: transparent;
  padding: 4px 0;
}
.newsletter-form input::placeholder { color: rgba(13,27,18,0.45); }
.newsletter-form button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--headline);
  padding: 6px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--accent); }
.newsletter-form button svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.footer-links-wrapper { display: flex; gap: 60px; flex: 1; justify-content: flex-end; padding-top: 8px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 18px; font-weight: 500; color: var(--headline); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--accent); }

.footer-address-block { flex: 0 0 auto; display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.footer-address { font-size: 18px; font-weight: 500; line-height: 1.6; color: var(--headline); }

.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(0,0,0,0.22);
  border-radius: 100px;
  color: var(--headline);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 48px 10px 20px;
}
.footer-bottom-links { display: flex; gap: 32px; }
.footer-bottom-links a { font-size: 18px; font-weight: 600; color: var(--headline); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-copyright { font-size: 18px; color: var(--headline); }
.footer-copyright a { font-weight: 700; transition: color 0.2s; }
.footer-copyright a:hover { color: var(--accent); }

/* ====================================================
   BACK TO TOP
   ==================================================== */
#back-to-top {
  position: fixed;
  bottom: 84px; right: 28px;
  width: 44px; height: 44px;
  background: #FFCB00;
  color: #0D1B12;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
#back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: #ffe033; }
#back-to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  #hero { min-height: 0; }
  .hero-inner { align-items: stretch; min-height: 0; }
  .hero-left { padding-top: 60px; padding-bottom: 60px; width: 55%; }
  .hero-right { width: 45%; }
  .hero-card-1 { left: -75px; top: 135px; width: 174px; }
  .hero-card-2 { right: 27px; top: 9px; width: 97px; }
  .hero-card-3 { right: 30px; width: 98px; }
  .section { padding: 80px 0; }
  .footer-cta-inner { padding: 80px 0; }
  .footer-top { padding: 40px 10px; }
  .footer-newsletter { max-width: 100%; }
  .footer-newsletter h3 { font-size: 34px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Navbar */
  .nav-inner { height: 64px; }
  .nav-menu   { display: none !important; }
  .btn-signup { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-profile { width: 36px; height: 36px; }
  .nav-profile svg { width: 18px; height: 18px; }

  /* Mobile drawer */
  .mobile-nav { padding-top: 64px; }

  /* Hero */
  #hero { padding-top: 64px; }
  .hero-inner { flex-direction: column; align-items: stretch; }
  .hero-left { width: 100%; padding: 10px; }
  .hero-right { width: 100%; min-height: 320px; }
  .hero-headline { font-size: clamp(42px, 10vw, 60px); }
  .hero-card-1 { left: 0; top: auto; bottom: 120px; width: 200px; }
  .hero-card-2 { right: 0; top: 20px; width: 100px; }
  .hero-card-3 { right: 10px; bottom: 20px; width: 110px; }

  .section { padding: 64px 0; }
  .footer-cta-inner { padding: 64px 20px; }
  .footer-top { flex-direction: column; gap: 40px; padding: 40px 10px 32px; }
  .footer-newsletter { max-width: 100%; }
  .footer-links-wrapper { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-top: 32px; gap: 16px; }
  .logo-strip-track { animation-duration: 20s; }
}

@media (min-width: 769px) {
  .nav-hamburger  { display: none !important; }
  .mobile-nav     { display: none !important; }
  .mobile-overlay { display: none !important; }
}


/* ====================================================
   FOOTER REDESIGN — Suraksha Brand
   ==================================================== */

/* ── Footer CTA Strip ── */
#footer-cta-strip {
  background: var(--dark, #0D1B12);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
#footer-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,203,0,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.footer-cta-glow {
  position: absolute;
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,203,0,0.09) 0%, transparent 70%);
  top: 0; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}

/* ── Big headline ── */
.footer-big-headline {
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 900;
  font-style: italic;
  color: var(--white, #fff);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-align: center;
  position: relative; z-index: 1;
  padding: 0 20px;
}
.footer-big-headline .fhl-yellow {
  background: var(--primary, #FFCB00);
  color: var(--dark, #0D1B12);
  padding: 0 10px 4px;
  border-radius: 6px;
  display: inline-block;
  transform: rotate(-1.2deg);
  transform-origin: left center;
}

/* ── Sub copy ── */
.footer-sub-copy {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 22px;
  position: relative; z-index: 1;
}

/* ── CTA Buttons row ── */
.footer-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
  position: relative; z-index: 1;
}

/* Reuse btn-primary from hero */
.footer-cta-btns .btn-primary {
  display: inline-flex; align-items: stretch;
  background: var(--primary, #FFCB00); color: var(--dark, #0D1B12);
  font-family: var(--font,'Montserrat',sans-serif);
  border-radius: 50px; text-decoration: none; overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.footer-cta-btns .btn-primary:hover {
  background: #ffe033; transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,203,0,0.32);
}
.footer-cta-btns .btn-label {
  font-size: 15px; font-weight: 800;
  padding: 14px 18px 14px 24px;
  display: flex; align-items: center;
  color: var(--dark, #0D1B12);
}
.footer-cta-btns .btn-stores {
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px;
  border-left: 1px solid rgba(13,27,18,0.2);
  color: var(--dark, #0D1B12);
}
.footer-cta-btns .icon-android { width: 19px; height: 19px; flex-shrink: 0; opacity: 0.85; }
.footer-cta-btns .icon-apple   { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.85; margin-top: -2px; }

.footer-cta-btns .btn-outline-light {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: var(--font,'Montserrat',sans-serif);
  font-size: 15px; font-weight: 700;
  padding: 14px 26px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2); text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s; white-space: nowrap;
}
.footer-cta-btns .btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.07); transform: translateY(-2px);
}

/* ── No-app note ── */
.footer-no-app {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.35);
  margin-top: 14px; position: relative; z-index: 1;
}
.footer-no-app svg { width: 13px; height: 13px; color: var(--secondary, #2D7A60); }

/* ── Floating stat chips ── */
.footer-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 60px;
  position: relative; z-index: 1;
  padding: 0 20px;
}
.footer-stat-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-stat-chip:hover {
  background: rgba(255,203,0,0.08); border-color: rgba(255,203,0,0.3); transform: translateY(-2px);
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary, #FFCB00); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── Logo ticker strip ── */
.footer-logo-strip {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.footer-logo-strip::before,
.footer-logo-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.footer-logo-strip::before { left: 0; background: linear-gradient(to right, var(--dark, #0D1B12), transparent); }
.footer-logo-strip::after  { right: 0; background: linear-gradient(to left,  var(--dark, #0D1B12), transparent); }

.footer-ticker-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: footerTick 22s linear infinite;
}
.footer-ticker-track:hover { animation-play-state: paused; }
@keyframes footerTick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ticker-item:hover { color: rgba(255,255,255,0.6); }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary, #FFCB00); opacity: 0.6; flex-shrink: 0; }


/* ====================================================
   FOOTER BOTTOM BAND
   ==================================================== */
#footer-main {
  background: var(--dark, #0D1B12);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-main-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 64px 0 0;
}

/* Logo + tagline */
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 260px; }
.footer-logo-lockup { display: flex; align-items: center; gap: 10px; }
.footer-logo-badge {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary, #FFCB00);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark, #0D1B12); flex-shrink: 0;
}
.footer-logo-word {
  font-size: 22px; font-weight: 800; font-style: italic;
  color: var(--white, #fff); letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

/* Links cols */
.footer-links-grid { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-links-col {}
.footer-links-col h4 {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-links-col a {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: color 0.2s; text-decoration: none;
}
.footer-links-col a:hover { color: var(--primary, #FFCB00); }

/* Address + socials */
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-addr {
  font-size: 14px; font-weight: 500; line-height: 1.65;
  color: rgba(255,255,255,0.42); font-style: normal;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 50px; color: rgba(255,255,255,0.55);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-btn:hover {
  background: var(--primary, #FFCB00); border-color: var(--primary, #FFCB00);
  color: var(--dark, #0D1B12); transform: translateY(-2px);
}
.footer-social-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* Bottom bar */
.footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0 36px;
  margin-top: 56px;
}
.footer-bottom-nav { display: flex; gap: 28px; list-style: none; }
.footer-bottom-nav a {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.35);
  transition: color 0.2s; text-decoration: none;
}
.footer-bottom-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-copy strong { color: rgba(255,255,255,0.5); }
.footer-copy a { color: rgba(255,255,255,0.35); font-weight: 700; transition: color 0.2s; }
.footer-copy a:hover { color: var(--primary, #FFCB00); }

/* Responsive */
@media (max-width: 768px) {
  .footer-big-headline { font-size: clamp(40px, 12vw, 68px); }
  .footer-stats-row { gap: 10px; }
  .footer-stat-chip { font-size: 12px; padding: 8px 14px; }
  .footer-main-inner { gap: 36px; padding: 48px 0 0; }
  .footer-links-grid { gap: 36px; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
  #footer-cta-strip { padding: 64px 0 0; }
}

/* ═══════════════════════════════════════════════
   UNIVERSAL QR — Header additions / overrides
   Add these rules into your main header CSS file
   ═══════════════════════════════════════════════ */

/* ── UQ Badge ─────────────────────────────────── */
.logo-uq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo-uq-light {
  background: rgba(0, 0, 0, 0.18);
  color: #000000;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.logo-uq-dark {
  background: var(--primary, #FFCB00);
  color: var(--dark, #0D1B12);
  border: 1.5px solid transparent;
}

/* Wordmark next to badge */
.logo-wordmark {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-left: 8px;
  white-space: nowrap;
}

.logo-light .logo-wordmark { color: #ffffff; }
.logo-dark  .logo-wordmark { color: var(--color-text-primary, #111827); }

/* ── Shared icon button style (cart + profile) ─ */
/* Matches the exact same circle style as .nav-profile and .nav-hamburger */
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  background: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.92);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.nav-icon-btn svg {
  width: 18px;
  height: 18px;
}

.nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

#navbar.is-scrolled .nav-icon-btn {
  color: var(--headline);
}

#navbar.is-scrolled .nav-icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* ── Cart badge ─────────────────────────────── */
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-primary, #2563eb);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}

/* ── Two store buttons in navbar ──────────────── */
.nav-store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  text-decoration: none; background: #000; color: #fff;
  border: 1.5px solid #333;
  font-family: var(--font, 'Montserrat', sans-serif);
  border-radius: 25px;
  transition: transform 0.18s, opacity 0.18s; white-space: nowrap;
}
.nav-store-btn svg { flex-shrink: 0; }
.nav-store-btn:hover { transform: translateY(-1px); opacity: 0.85; }
.nav-store-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-store-sub { font-size: 7.5px; font-weight: 400; letter-spacing: 0.04em; opacity: 0.75; }
.nav-store-text strong { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
@media (max-width: 900px) { .nav-store-btn { display: none !important; } }

/* ── Large store buttons (hero, footer CTA) ── */
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: 25px;
  text-decoration: none; font-family: var(--font, 'Montserrat', sans-serif);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn-android { background: var(--dark, #0D1B12); color: #fff; }
.store-btn-android:hover { box-shadow: 0 8px 24px rgba(13,27,18,0.3); color: #fff; }
.store-btn-ios { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.2); }
.store-btn-ios:hover { background: rgba(255,255,255,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: #fff; }
.store-btn-ios-light { background: #f5f6f5; color: var(--dark, #0D1B12); border: 1.5px solid #dde4df; }
.store-btn-ios-light:hover { box-shadow: 0 8px 24px rgba(13,27,18,0.12); border-color: #bbb; color: var(--dark, #0D1B12); }
.store-btn svg { flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.2; font-size: 13px; font-weight: 800; }
.store-btn-sub { font-size: 9px; font-weight: 600; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Download App inside mobile drawer ───────── */
.mobile-menu-download {
  margin-top: 12px;
  padding: 0 16px 16px;
}

.mobile-menu-download a.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 20px;
}

/* Remove the chevron arrow layout for this item */
.mobile-menu-download a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ====================================================
   SCROLL PROGRESS BAR — Pick ONE option below
   ==================================================== */


/* ──────────────────────────────────────────────────
   OPTION 1 — Thick Glowing Yellow  🟡
   5px bar, yellow glow that pulses outward
   ────────────────────────────────────────────────── */
/* #scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 5px;
  width: 0%;
  background: #FFCB00;
  z-index: 9999;
  transition: width 0.08s linear;
  border-radius: 0 4px 4px 0;
  pointer-events: none;
  box-shadow:
    0 0 8px  rgba(255, 203, 0, 0.9),
    0 0 20px rgba(255, 203, 0, 0.6),
    0 0 40px rgba(255, 203, 0, 0.3);
} */


/* ──────────────────────────────────────────────────
   OPTION 2 — Thin Gradient Yellow → Pink  🌈
   3px bar, smooth colour sweep left to right
   ────────────────────────────────────────────────── */

#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    #FFCB00 0%,
    #FF8C00 40%,
    #F2295B 100%
  );
  background-size: 100vw 3px;
  z-index: 9999;
  transition: width 0.08s linear;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}



/* ──────────────────────────────────────────────────
   OPTION 3 — Neon Pulse Animation  ⚡
   4px bar, living shimmer that slides along it
   ────────────────────────────────────────────────── */

#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: #FFCB00;
  z-index: 9999;
  transition: width 0.08s linear;
  border-radius: 0 4px 4px 0;
  pointer-events: none;
  overflow: hidden;
}

#scroll-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 100%
  );
  animation: shimmer-scroll 1.6s ease-in-out infinite;
}

@keyframes shimmer-scroll {
  0%   { left: -60%; }
  100% { left: 120%; }
}



/* ──────────────────────────────────────────────────
   OPTION 4 — Minimal Clean Yellow  ✦
   2px razor-thin line, no shadow, just sharp
   ────────────────────────────────────────────────── */
/*
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: #FFCB00;
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0;
  pointer-events: none;
}
*/

/* ====================================================
   CUSTOM SCROLLBAR — Chrome / Edge / Safari
   Right-side main page scrollbar
   ==================================================== */

/* ── Scrollbar track + thumb sizing ── */
::-webkit-scrollbar {
  width: 8px;
}

/* ── Track (background rail) ── */
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 0;
}

/* ── Thumb (the draggable bit) ── */
::-webkit-scrollbar-thumb {
  background: #FFCB00;
  border-radius: 99px;
  border: 2px solid #f0f0f0; /* gives floating pill look */
  transition: background 0.2s;
}

/* ── Thumb hover ── */
::-webkit-scrollbar-thumb:hover {
  background: #e6b800;
}

/* ── Thumb active (while dragging) ── */
::-webkit-scrollbar-thumb:active {
  background: #0D1B12;
}

/* ── Corner (bottom-right where scrollbars meet) ── */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* ── Firefox support ── */
* {
  scrollbar-width: thin;
  scrollbar-color: #FFCB00 #f0f0f0;
}


/* ====================================================
   VARIANTS — uncomment to swap style
   ==================================================== */

/* VARIANT A — Dark track (for dark pages)
::-webkit-scrollbar-track { background: #0D1B12; }
::-webkit-scrollbar-thumb { background: #FFCB00; border: 2px solid #0D1B12; }
::-webkit-scrollbar-thumb:hover { background: #ffe033; }
* { scrollbar-color: #FFCB00 #0D1B12; }
*/

/* VARIANT B — Ultra thin 4px line
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #FFCB00; border-radius: 99px; border: none; }
* { scrollbar-width: thin; scrollbar-color: #FFCB00 transparent; }
*/

/* VARIANT C — Hidden until hover
body::-webkit-scrollbar-thumb { background: transparent; }
body:hover::-webkit-scrollbar-thumb { background: #FFCB00; }
*/

/* ====================================================
   HERO CTA ROW — Mobile one-line fix (ICONS KEPT)
   ==================================================== */

@media (max-width: 768px) {

  .hero-cta-row {
    gap: 8px;
    flex-wrap: nowrap;
  }

  /* ── Download App button ── */
  .hero-cta-row .btn-primary {
    flex: 1;
    border-radius: 12px;
    min-width: 0;
  }

  .hero-cta-row .btn-label {
    font-size: 11px;
    padding: 10px 8px 10px 12px;
    white-space: nowrap;
  }

  .hero-cta-row .btn-stores {
    padding: 0 10px;
    gap: 5px;
  }

  .hero-cta-row .icon-android { width: 15px; height: 15px; }
  .hero-cta-row .icon-apple   { width: 13px; height: 13px; }

  /* ── Buy QR Sticker button ── */
  .hero-cta-row .btn-outline {
    flex: 1;
    border-radius: 12px;
    font-size: 11px;
    padding: 10px 8px;
    gap: 5px;
    min-width: 0;
    white-space: nowrap;
    justify-content: center;
  }

  .hero-cta-row .btn-outline svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

}

/* Very tiny phones — allow stack */
@media (max-width: 360px) {
  .hero-cta-row {
    flex-wrap: wrap;
  }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline {
    flex: 1 1 100%;
  }
}

.nav-cart {
  position: relative; /* needed for badge absolute positioning */
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: #e53e3e;       /* red */
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  font-family: var(--font, 'Montserrat', sans-serif);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  border: 2px solid var(--navbar-bg, #FFCB00); /* matches navbar color */
  pointer-events: none;
  z-index: 10;

  /* pop-in animation when it appears */
  animation: badgePop 0.25s cubic-bezier(0.22,1,0.36,1);
}

@keyframes badgePop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* When navbar is scrolled (white bg), change badge border to white */
#navbar.is-scrolled .cart-badge {
  border-color: #fff;
}

  .btn-primary {
  display: inline-flex; align-items: stretch;
  background: var(--hero-dark); color: #fff;
  font-family: var(--font,'Montserrat',sans-serif);
  border-radius: 50px; text-decoration: none; overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
 background: rgb(0 0 0);
}
.btn-primary:hover {
  background: #1f2e22; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,27,18,0.22);
}
.btn-label {
  font-size: 14px; font-weight: 800;
  padding: 13px 16px 13px 22px;
  display: flex; align-items: center;
}
.btn-stores {
  display: flex; align-items: center; gap: 7px;
  padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
/* Android — simple filled robot face */
.icon-android { width: 19px; height: 19px; flex-shrink: 0; opacity: 0.9; }
/* Apple — clean apple shape */
.icon-apple   { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.9; margin-top: -2px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--hero-dark);
  font-family: var(--font,'Montserrat',sans-serif);
  font-size: 14px; font-weight: 700;
  background: rgba(13,27,18,0.04);
  padding: 13px 24px; border-radius: 50px;
  border: 2px solid #dde4df; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s; white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--hero-dark); background: rgba(13,27,18,0.04); transform: translateY(-2px);
}