/* ==========================================================================
   SELLERBUDDIES — "Warm Glass" (light theme)
   White canvas with soft light-orange washes and white frosted-glass panels.

   Designing glass on a light background is the opposite problem to a dark one.
   On dark, transparency alone creates the effect. On white, a white translucent
   panel is invisible, so depth has to come from three things working together:
     1. a faintly tinted backdrop for the glass to sit against and blur,
     2. a warm hairline border that defines the panel edge,
     3. two-layer shadows — a tight neutral one for lift, a wide warm one for glow.

   1  Tokens
   2  Reset & base
   3  Backdrop (warm wash, spotlight, grain)
   4  Glass primitive
   5  Typography & section furniture
   6  Buttons
   7  Preloader
   8  Header, nav, drawer
   9  Hero
   10 Marquee
   11 Services bento
   12 Platform tabs
   13 Process steps
   14 Testimonials & showcase
   15 FAQ accordion
   16 Contact & form
   17 Footer & floating actions
   18 Reveal animation system
   19 Responsive
   20 Reduced motion / print
   ========================================================================== */

/* ---------------------------------------------------------------- 1 TOKENS */
:root {
  /* Canvas */
  --paper: #ffffff;
  --paper-2: #fffaf5;
  --paper-3: #fff5eb;
  --paper-4: #ffeedd;

  /* Brand oranges, split by the contrast job each one has to do:
       --brand      decorative fills, borders, bars, dots (no text over it)
       --brand-fill orange surfaces that carry WHITE text; the lightest stop
                    still clears 3:1 so the label stays legible across a gradient
       --brand-deep hover states and large accent text on white
       --brand-ink  small accent text, where 4.5:1 against white is required */
  --brand: #f97316;
  --brand-hi: #ff9a3d;
  --brand-fill: #ed6a09;
  --brand-deep: #e8590c;
  --brand-ink: #9a3412;
  --amber: #c76a06;
  --bronze: #b45309;
  --rose: #d8484d;
  --slate: #475569;
  --ok: #0f7a4d;

  /* Glass */
  --glass-fill: rgba(255, 255, 255, 0.72);
  --glass-fill-2: rgba(255, 255, 255, 0.86);
  --glass-line: rgba(249, 115, 22, 0.16);
  --glass-line-2: rgba(249, 115, 22, 0.34);
  --glass-blur: 18px;

  /* Ink. --ink-3 is darkened from the usual slate-400 so that even the
     smallest meta text clears 4.5:1 on white. */
  --ink: #101a2c;
  --ink-2: #52627d;
  --ink-3: #647186;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Fluid type scale */
  --t-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --t-sm: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --t-md: clamp(0.94rem, 0.9rem + 0.2vw, 1.04rem);
  --t-lg: clamp(1.05rem, 0.98rem + 0.4vw, 1.25rem);
  --t-xl: clamp(1.3rem, 1.1rem + 0.9vw, 1.85rem);
  --t-2xl: clamp(1.7rem, 1.3rem + 2vw, 2.9rem);
  --t-3xl: clamp(2.1rem, 1.4rem + 3.6vw, 4.4rem);

  /* Fluid space */
  --s-1: clamp(0.35rem, 0.3rem + 0.2vw, 0.5rem);
  --s-2: clamp(0.6rem, 0.5rem + 0.3vw, 0.85rem);
  --s-3: clamp(0.9rem, 0.75rem + 0.5vw, 1.3rem);
  --s-4: clamp(1.3rem, 1rem + 1vw, 2rem);
  --s-5: clamp(1.8rem, 1.3rem + 1.8vw, 3rem);
  --s-6: clamp(2.6rem, 1.8rem + 3vw, 4.6rem);
  --s-sec: clamp(4rem, 2.6rem + 6vw, 8.5rem);
  --gutter: clamp(1.1rem, 0.7rem + 1.6vw, 2rem);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Two-part shadows: neutral for physical lift, warm for ambient glow */
  --shadow-lo:
    0 1px 2px rgba(16, 26, 44, 0.04),
    0 6px 18px rgba(16, 26, 44, 0.05),
    0 12px 34px rgba(249, 115, 22, 0.06);
  --shadow-hi:
    0 2px 4px rgba(16, 26, 44, 0.05),
    0 14px 32px rgba(16, 26, 44, 0.08),
    0 28px 64px rgba(249, 115, 22, 0.12);
  --glow-brand: 0 8px 22px rgba(232, 89, 12, 0.28);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --shell: 1240px;
  --tap: 44px;
  --nav-h: 76px;
}

/* ------------------------------------------------------- 2 RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* clip rather than hidden: does not create a scroll container, so the
     sticky header keeps resolving against the viewport */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-md);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100svh;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

ul, ol { list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

p, li, h1, h2, h3, h4, a, label, blockquote { overflow-wrap: break-word; }

:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: rgba(249, 115, 22, 0.2); color: var(--ink); }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  translate: -50% -160%;
  z-index: 200;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transition: translate 0.3s var(--ease);
}
.skip-link:focus-visible { translate: -50% 0; }

/* ------------------------------------------------------------ 3 BACKDROP */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 760px at 8% -12%, var(--paper-3) 0%, transparent 62%),
    radial-gradient(980px 620px at 100% 4%, var(--paper-4) 0%, transparent 58%),
    radial-gradient(900px 700px at 50% 108%, var(--paper-3) 0%, transparent 60%),
    var(--paper);
}

/* Kept from the dark build but heavily dialled back. On white these read as a
   soft warm haze rather than glowing orbs. */
.aurora__blob {
  position: absolute;
  width: clamp(320px, 44vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(clamp(70px, 9vw, 150px));
  will-change: transform;
}
.aurora__blob--1 { top: -16%; left: -12%; background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 68%); animation: drift1 28s var(--ease-soft) infinite alternate; }
.aurora__blob--2 { top: 16%; right: -14%; background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 68%); animation: drift2 34s var(--ease-soft) infinite alternate; }
.aurora__blob--3 { bottom: 8%; left: 18%; background: radial-gradient(circle, rgba(253, 186, 116, 0.22) 0%, transparent 68%); animation: drift3 31s var(--ease-soft) infinite alternate; }
.aurora__blob--4 { bottom: -18%; right: 6%; background: radial-gradient(circle, rgba(224, 87, 91, 0.12) 0%, transparent 68%); animation: drift1 37s var(--ease-soft) infinite alternate-reverse; }

@keyframes drift1 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(8%, 6%, 0) scale(1.16); } }
@keyframes drift2 { from { transform: translate3d(0,0,0) scale(1.04); } to { transform: translate3d(-10%, 9%, 0) scale(1); } }
@keyframes drift3 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(11%, -8%, 0) scale(1.2); } }

/* Faint ruled grid gives the glass something to distort */
.aurora__grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(rgba(16, 26, 44, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 26, 44, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 78% 58% at 50% 38%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 78% 58% at 50% 38%, #000 35%, transparent 100%);
}

/* Grain is far more visible on white, so it stays very low */
.aurora__noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 560px;
  height: 560px;
  margin: -280px 0 0 -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 62%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
.spotlight.is-on { opacity: 1; }

/* ------------------------------------------------------- 4 GLASS PRIMITIVE */
.glass {
  position: relative;
  background: var(--glass-fill);
  backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lo);
}

/* A white inner hairline reads as the lit edge of the pane and separates the
   panel from the warm wash behind it. */
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

/* ------------------------------------------ 5 TYPOGRAPHY & SECTION FURNITURE */
.section { padding-block: var(--s-sec); position: relative; }
.section--tight { padding-block: calc(var(--s-sec) * 0.68); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  /* Deep burnt orange, not the brand fill: this text is small and needs
     4.5:1 against its own pale background. */
  color: var(--brand-ink);
  padding: 7px 15px 7px 11px;
  border-radius: var(--r-pill);
  background: var(--paper-3);
  border: 1px solid rgba(249, 115, 22, 0.22);
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16); }
  50% { box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.05); }
}

.head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: var(--s-6); }
.head--left { margin-inline: 0; text-align: left; }
.head__title { font-size: var(--t-2xl); margin-top: var(--s-3); text-wrap: balance; }
.head__lede { color: var(--ink-2); font-size: var(--t-lg); margin-top: var(--s-3); }

/* ----------------------------------------------------------- 6 BUTTONS */
.btn {
  --btn-py: 15px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--tap);
  padding: var(--btn-py) 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-md);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* Gradient runs light-to-deep so white label text keeps adequate contrast
   across the whole fill, not just at one end. */
.btn--primary {
  background: linear-gradient(135deg, var(--brand-fill) 0%, var(--brand-deep) 55%, #cf4a04 100%);
  color: #ffffff;
  box-shadow: var(--glow-brand);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.4) 50%, transparent 80%);
  translate: -120% 0;
  transition: translate 0.7s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(232, 89, 12, 0.42); }
.btn--primary:hover::after { translate: 120% 0; }

.btn--ghost {
  background: var(--glass-fill-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-line);
  color: var(--ink);
  box-shadow: var(--shadow-lo);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--glass-line-2);
  color: var(--brand-ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hi);
}

.btn--sm { --btn-py: 11px; padding-inline: 20px; font-size: var(--t-sm); }
.btn--block { display: flex; width: 100%; }
.btn:active { transform: translateY(-1px) scale(0.99); }

/* Behaviour hook: JS nudges these toward the cursor. Declaring will-change
   here keeps the per-frame transform on the compositor. */
.magnetic { will-change: transform; }

/* --------------------------------------------------------- 7 PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; gap: 20px; justify-items: center; }
.preloader__mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  background: linear-gradient(120deg, var(--ink) 25%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.preloader__bar { width: 168px; height: 3px; border-radius: 3px; background: var(--paper-4); overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 40%; border-radius: 3px; background: linear-gradient(90deg, var(--brand), var(--brand-deep)); animation: loadSlide 1.1s var(--ease-soft) infinite; }
@keyframes loadSlide { 0% { translate: -110% 0; } 100% { translate: 320% 0; } }

/* ------------------------------------------------ 8 HEADER, NAV, DRAWER */
.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  padding-block: 14px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(16, 26, 44, 0.06);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.is-stuck {
  padding-block: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(16, 26, 44, 0.06);
}

.nav__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform-origin: 0 50%;
  scale: 0 1;
  background: linear-gradient(90deg, var(--brand-hi), var(--brand), var(--brand-deep));
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }

.brand { display: flex; align-items: center; flex-shrink: 0; min-width: 0; }
.brand__img { height: clamp(30px, 3.4vw, 42px); width: auto; object-fit: contain; object-position: left center; }

.nav__links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.nav__pill {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  width: 0;
  border-radius: var(--r-pill);
  background: var(--paper-3);
  border: 1px solid rgba(249, 115, 22, 0.2);
  opacity: 0;
  transition: transform 0.45s var(--ease), width 0.45s var(--ease), opacity 0.3s ease;
  pointer-events: none;
}

.nav__link {
  position: relative;
  padding: 9px 17px;
  border-radius: var(--r-pill);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.3s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--brand-ink); }

.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.burger {
  display: none;
  width: var(--tap);
  height: var(--tap);
  border-radius: 13px;
  background: var(--paper-3);
  border: 1px solid rgba(249, 115, 22, 0.22);
  place-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.burger span {
  display: block;
  width: 19px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.25s ease, background 0.3s ease;
}
.burger[aria-expanded="true"] { background: linear-gradient(135deg, var(--brand-fill), var(--brand-deep)); border-color: transparent; }
.burger[aria-expanded="true"] span { background: #fff; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 118;
  background: rgba(16, 26, 44, 0.32);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.drawer-scrim.is-open { opacity: 1; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 119;
  width: min(330px, 86vw);
  height: 100vh;
  height: 100dvh;
  border-radius: 0;
  border: 0;
  border-inline-start: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: -14px 0 44px rgba(16, 26, 44, 0.12);
  padding: calc(var(--nav-h) + 26px) var(--s-4) calc(var(--s-4) + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  translate: 100% 0;
  visibility: hidden;
  transition: translate 0.44s var(--ease), visibility 0.44s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { translate: 0 0; visibility: visible; }
.drawer::before { display: none; }

.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  padding: 15px 6px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 26, 44, 0.07);
  transition: color 0.25s ease, padding-left 0.3s var(--ease);
}
.drawer__link:hover { color: var(--brand-deep); padding-left: 14px; }
.drawer__foot { display: grid; gap: 14px; padding-top: var(--s-4); }
.drawer__meta { font-size: var(--t-sm); color: var(--ink-3); text-align: center; }

/* -------------------------------------------------------------- 9 HERO */
.hero { position: relative; padding-top: clamp(2.5rem, 1.5rem + 4vw, 5rem); padding-bottom: 0; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--s-6);
  align-items: center;
}
.hero__copy { display: grid; justify-items: start; gap: var(--s-3); }

.hero__title {
  font-size: var(--t-3xl);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

/* Word-level reveal. JS wraps each word in .word > span so the inner span
   can slide up behind the clipped parent. */
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__title .word > span {
  display: inline-block;
  translate: 0 110%;
  transition: translate 0.85s var(--ease);
}
.hero__title.is-in .word > span { translate: 0 0; }

.rotator { display: block; }
.rotator__mask {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  padding-bottom: 0.12em;
}
.rotator__word {
  grid-area: 1 / 1;
  font-weight: 800;
  background: linear-gradient(100deg, var(--brand-deep) 0%, var(--brand) 45%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  translate: 0 100%;
  opacity: 0;
  transition: translate 0.7s var(--ease), opacity 0.5s ease;
}
.rotator__word.is-active { translate: 0 0; opacity: 1; }
.rotator__word.is-out { translate: 0 -100%; opacity: 0; }

.hero__lede { color: var(--ink-2); font-size: var(--t-lg); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(16, 26, 44, 0.09);
  width: 100%;
}
.hero__proof li { display: grid; gap: 2px; }
.hero__proof strong {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.hero__proof span { font-size: var(--t-sm); color: var(--ink-3); }

/* ------------------------------------------------ 3D CURVED BANNER CAROUSEL */
.hero__slides {
  position: relative;
  display: grid;
  width: 100%;
}

.hero__slide {
  grid-area: 1 / 1;
  display: grid;
  justify-items: start;
  gap: var(--s-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0.55s;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.txt-gradient {
  background: linear-gradient(100deg, var(--brand-deep) 0%, var(--brand) 45%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero__stage {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.curved-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}

.curved-carousel__stage {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.banner-card {
  position: absolute;
  width: 290px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 44px -8px rgba(16, 26, 44, 0.18);
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.55s ease, filter 0.55s ease, box-shadow 0.4s ease;
  cursor: pointer;
  user-select: none;
}

.banner-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.banner-card:hover .banner-card__img {
  transform: scale(1.04);
}

.banner-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(16, 26, 44, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-card__overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  z-index: 3;
  padding: 28px 16px 16px;
  background: linear-gradient(0deg, rgba(16, 26, 44, 0.88) 0%, rgba(16, 26, 44, 0.4) 65%, transparent 100%);
  color: #ffffff;
  font-size: var(--t-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 3D Curved Arc Transformations */
.banner-card.is-active {
  transform: translate3d(0, 0, 45px) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 3;
  filter: brightness(1);
  box-shadow: 0 24px 50px -10px rgba(16, 26, 44, 0.28), 0 0 30px rgba(249, 115, 22, 0.15);
}

.banner-card.is-prev {
  transform: translate3d(-105px, 0, -60px) scale(0.84) rotateY(16deg);
  opacity: 0.65;
  z-index: 2;
  filter: brightness(0.85);
}

.banner-card.is-next {
  transform: translate3d(105px, 0, -60px) scale(0.84) rotateY(-16deg);
  opacity: 0.65;
  z-index: 2;
  filter: brightness(0.85);
}

.banner-card.is-hidden {
  transform: translate3d(0, 0, -120px) scale(0.7);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Controls */
.curved-carousel__controls {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  z-index: 5;
  margin-top: var(--s-2);
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 26, 44, 0.12);
  transition: all 0.25s var(--ease);
}

.carousel-btn:hover {
  background: var(--brand-deep);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: rgba(16, 26, 44, 0.22);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--brand-deep);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
}
.bars i:nth-child(1) { animation-delay: 0.1s; }
.bars i:nth-child(2) { animation-delay: 0.18s; }
.bars i:nth-child(3) { animation-delay: 0.26s; }
.bars i:nth-child(4) { animation-delay: 0.34s; }
.bars i:nth-child(5) { animation-delay: 0.42s; }
.bars i:nth-child(6) { animation-delay: 0.5s; }
@keyframes growBar { from { scale: 1 0; } to { scale: 1 1; } }

.ring { position: relative; width: 58px; height: 58px; flex-shrink: 0; display: grid; place-items: center; }
.ring svg { position: absolute; inset: 0; width: 100%; height: 100%; rotate: -90deg; }
.ring circle { fill: none; stroke-width: 3.4; }
.ring__track { stroke: var(--paper-4); }
.ring__value {
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-dasharray: 100.5;
  /* --pct is supplied inline on .ring; the fallback keeps the arc valid if it
     is ever missing rather than collapsing the whole declaration. */
  stroke-dashoffset: calc(100.5 - (100.5 * var(--pct, 0) / 100));
  animation: ringIn 1.4s var(--ease) backwards;
}
@keyframes ringIn { from { stroke-dashoffset: 100.5; } }
.ring > span { font-family: var(--font-display); font-weight: 800; font-size: var(--t-md); color: var(--ink); }

/* ------------------------------------------------ 10 CONVEYOR BELT MARQUEE */
.conveyor {
  position: relative;
  width: 100%;
  margin-top: var(--s-6);
  padding-top: 10px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

/* Back Safety Rail (Behind rollers) */
.conveyor__top-rail {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #dcdfe6 50%, #9ba1ad 100%);
  border-top: 1px solid #ffffff;
  border-bottom: 1.5px solid #626772;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.45);
}

/* 3D Cylindrical Roller Bed */
.conveyor__bed {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 126px;
  background: repeating-linear-gradient(
    130deg,
    #13151a 0px,
    #222630 3px,
    #4a5160 7px,   /* Roller top highlight */
    #222630 11px,
    #0e0f13 15px,  /* Deep groove shadow */
    #13151a 18px
  );
  background-size: 72px 100%;
  box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.75), inset 0 -6px 12px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: flex-end;
  padding-bottom: 2px;
  animation: beltRoll 1.5s linear infinite;
  overflow: hidden;
}

@keyframes beltRoll {
  0% { background-position-x: 0px; }
  100% { background-position-x: 72px; }
}

.conveyor__track {
  display: flex;
  width: max-content;
  animation: conveyorSlide 24s linear infinite;
}

.conveyor:hover .conveyor__track,
.conveyor:hover .conveyor__bed {
  animation-play-state: paused;
}

@keyframes conveyorSlide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.conveyor__group {
  display: flex;
  align-items: flex-end;
  gap: clamp(45px, 6vw, 75px);
  padding-right: clamp(45px, 6vw, 75px);
}

/* 3D Perspective Cardboard Box Container */
.c-box-3d {
  position: relative;
  width: 180px;
  height: 115px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0px;
  transition: transform 0.35s var(--ease);
  cursor: pointer;
}

.box3d-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: transform 0.35s var(--ease);
}

.c-box-3d:hover .box3d-svg {
  transform: translateY(-8px) scale(1.04);
}

/* Front Stainless Steel Rail Bar with 3D Rivets */
.conveyor__rail {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #e0e3e9 12%, #b2b6c0 35%, #7a7f8a 75%, #c4c8d2 100%);
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #464952;
  box-shadow: 0 10px 22px rgba(16, 26, 44, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
}

/* Front Rail Center Metal Groove */
.conveyor__rail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.rivet {
  position: relative;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #b2b6c2 35%, #525762 70%, #1c1e23 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

/* --------------------------------------------------- 11 SERVICES BENTO */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.tile, .tile--wide {
  grid-column: span 1;
  padding: var(--s-4);
  display: grid;
  align-content: start;
  gap: var(--s-2);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.5s var(--ease);
}
.tile:hover { border-color: var(--glass-line-2); box-shadow: var(--shadow-hi); }

.tile__ico {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: var(--s-1);
  background: var(--paper-3);
  border: 1px solid rgba(249, 115, 22, 0.18);
  transition: transform 0.5s var(--ease), background 0.4s ease;
}
.tile__ico svg { width: 24px; height: 24px; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tile:hover .tile__ico { transform: translateY(-3px) rotate(-6deg); }

/* Accents stay inside one warm family plus a single neutral, which reads far
   more considered than a multi-hue palette on a light background. */
.tile__ico[data-accent="orange"] svg { stroke: var(--brand-deep); }
.tile__ico[data-accent="amber"] svg { stroke: var(--amber); }
.tile__ico[data-accent="bronze"] svg { stroke: var(--bronze); }
.tile__ico[data-accent="slate"] svg { stroke: var(--slate); }
.tile__ico[data-accent="rose"] svg { stroke: var(--rose); }

.tile__title { font-size: var(--t-lg); }
.tile__text { color: var(--ink-2); font-size: var(--t-sm); }

.ticks { display: grid; gap: 7px; margin-top: var(--s-1); }
.ticks li { position: relative; padding-left: 24px; font-size: var(--t-sm); color: var(--ink-2); }
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  rotate: -45deg;
  border-radius: 1px;
}

/* Cursor-follow highlight, coordinates written by JS */
.tile__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(249, 115, 22, 0.09), transparent 62%);
  pointer-events: none;
}
.tile:hover .tile__shine { opacity: 1; }

/* ------------------------------------------------ 12 PLATFORM TABS */
.panel { padding: clamp(1.2rem, 0.8rem + 1.6vw, 2.6rem); border-radius: var(--r-xl); }

.tabs {
  position: relative;
  display: flex;
  gap: 4px;
  padding: 5px;
  margin-bottom: var(--s-5);
  border-radius: var(--r-pill);
  background: var(--paper-3);
  border: 1px solid rgba(249, 115, 22, 0.16);
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tabs__ink {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--brand-fill) 0%, var(--brand-deep) 100%);
  box-shadow: 0 5px 14px rgba(232, 89, 12, 0.3);
  transition: transform 0.5s var(--ease), width 0.5s var(--ease);
  pointer-events: none;
}

.tab {
  position: relative;
  z-index: 1;
  padding: 11px 24px;
  min-height: var(--tap);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--ink-2);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.35s ease;
}
.tab.is-active { color: #ffffff; }

.pane { display: none; }
.pane.is-active { display: block; animation: paneIn 0.6s var(--ease); }
@keyframes paneIn { from { opacity: 0; translate: 0 14px; } to { opacity: 1; translate: 0 0; } }

.pane__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: var(--s-5); align-items: center; }
.pane__title { font-size: var(--t-xl); margin-bottom: var(--s-2); }
.pane__text { color: var(--ink-2); margin-bottom: var(--s-4); }

.deflist { display: grid; gap: var(--s-3); }
.deflist > div { padding-left: var(--s-3); border-left: 2px solid rgba(249, 115, 22, 0.4); }
.deflist dt { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: var(--t-md); }
.deflist dd { color: var(--ink-2); font-size: var(--t-sm); margin-top: 2px; }

.mock { padding: var(--s-4); border-radius: var(--r-md); background: #ffffff; }
.mock__head { font-family: var(--font-display); font-weight: 700; color: var(--brand-ink); padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid rgba(16, 26, 44, 0.08); }
.mock__list { display: grid; gap: 10px; }
.mock__list li { position: relative; padding-left: 24px; font-size: var(--t-sm); color: var(--ink-2); }
.mock__list li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.mock__rate { margin-top: 16px; font-weight: 700; font-size: var(--t-sm); color: var(--bronze); }
.mock__rate span { color: #f59e0b; }

/* ----------------------------------------------------- 13 PROCESS STEPS */
.steps { position: relative; display: grid; gap: var(--s-4); padding-left: clamp(46px, 6vw, 72px); }
.steps__rail {
  position: absolute;
  left: clamp(17px, 2.2vw, 26px);
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: var(--paper-4);
  overflow: hidden;
}
.steps__rail i {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  background: linear-gradient(180deg, var(--brand-hi), var(--brand), var(--brand-deep));
  transition: height 0.25s linear;
}

.step { position: relative; }
.step__no {
  position: absolute;
  left: calc(clamp(46px, 6vw, 72px) * -1);
  top: 0;
  width: clamp(36px, 4.6vw, 52px);
  height: clamp(36px, 4.6vw, 52px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-sm);
  color: var(--ink-3);
  background: #ffffff;
  border: 1px solid rgba(16, 26, 44, 0.1);
  box-shadow: var(--shadow-lo);
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.step.is-in .step__no {
  border-color: var(--brand);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12);
  color: var(--brand-deep);
}

.step__body { padding: var(--s-4); border-radius: var(--r-md); }
.step__body h3 { font-size: var(--t-lg); margin-bottom: 8px; }
.step__body p { color: var(--ink-2); font-size: var(--t-sm); }
.step__tag {
  display: inline-block;
  margin-top: var(--s-2);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-ink);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--paper-3);
  border: 1px solid rgba(249, 115, 22, 0.22);
}

/* ------------------------------------------- 14 TESTIMONIALS & SHOWCASE */
.quotes { max-width: 900px; margin-inline: auto; }
.quotes__viewport { overflow: hidden; border-radius: var(--r-lg); }
.quotes__track { display: flex; transition: transform 0.7s var(--ease); }

.quote { flex: 0 0 100%; padding: var(--s-5); display: grid; gap: var(--s-3); }
.quote__stars { color: #f59e0b; letter-spacing: 0.15em; font-size: var(--t-md); }
.quote blockquote { font-family: var(--font-display); font-size: var(--t-xl); font-weight: 500; line-height: 1.42; letter-spacing: -0.015em; color: var(--ink); text-wrap: pretty; }
.quote figcaption { display: flex; align-items: center; gap: 14px; margin-top: var(--s-1); }
.quote figcaption > span:last-child { display: grid; }
.quote figcaption b { font-family: var(--font-display); font-size: var(--t-md); }
.quote figcaption i { font-style: normal; font-size: var(--t-sm); color: var(--ink-3); }

.avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-sm);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: var(--shadow-lo);
}
.avatar[data-av="1"] { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); }
.avatar[data-av="2"] { background: linear-gradient(135deg, var(--amber), var(--bronze)); }
.avatar[data-av="3"] { background: linear-gradient(135deg, #fb923c, var(--rose)); }

.quotes__nav { display: flex; align-items: center; justify-content: center; gap: var(--s-3); margin-top: var(--s-4); }
.rnd {
  width: var(--tap);
  height: var(--tap);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-lo);
  transition: background 0.3s ease, transform 0.3s var(--ease), border-color 0.3s ease;
}
.rnd svg { width: 19px; height: 19px; fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s ease; }
.rnd:hover { background: linear-gradient(135deg, var(--brand-fill), var(--brand-deep)); border-color: transparent; transform: scale(1.08); }
.rnd:hover svg { stroke: #fff; }

.dots { display: flex; align-items: center; gap: 8px; }
.dots button {
  width: 9px;
  height: 9px;
  border-radius: var(--r-pill);
  background: rgba(249, 115, 22, 0.26);
  transition: width 0.4s var(--ease), background 0.3s ease;
  position: relative;
}
.dots button::after { content: ''; position: absolute; inset: -16px -6px; }
.dots button.is-active { width: 30px; background: linear-gradient(90deg, var(--brand), var(--brand-deep)); }

.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-6); }
.showcase__item { overflow: hidden; border-radius: var(--r-md); padding: 0; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.showcase__item:hover { box-shadow: var(--shadow-hi); }
.showcase__item img { width: 100%; height: clamp(180px, 22vw, 250px); object-fit: cover; }
.showcase__item figcaption { padding: 14px var(--s-3); font-size: var(--t-sm); font-weight: 600; color: var(--ink-2); }
.showcase__note { padding: var(--s-4); border-radius: var(--r-md); display: grid; align-content: center; gap: 8px; }
.showcase__big { font-family: var(--font-display); font-size: var(--t-xl); font-weight: 800; color: var(--brand-deep); }
.showcase__note p:last-child { color: var(--ink-2); font-size: var(--t-sm); }

/* ------------------------------------------------- 15 FAQ ACCORDION */
.faq__wrap { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: var(--s-6); align-items: start; }
.faq__wrap .head { margin-bottom: 0; display: grid; justify-items: start; gap: var(--s-2); }

.acc { display: grid; gap: var(--s-2); }
.acc__item { border-radius: var(--r-md); overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.acc__item.is-open { border-color: var(--glass-line-2); box-shadow: var(--shadow-hi); }

.acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  min-height: var(--tap);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}
.acc__q:hover { color: var(--brand-deep); }

.acc__q i {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.acc__q i::before, .acc__q i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
.acc__q i::before { width: 10px; height: 1.8px; }
.acc__q i::after { width: 1.8px; height: 10px; }
.acc__item.is-open .acc__q i::after { transform: rotate(90deg); opacity: 0; }
.acc__item.is-open .acc__q { color: var(--brand-deep); }

/* Animating grid-template-rows avoids hardcoding a max-height */
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.acc__item.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a p { overflow: hidden; padding: 0 var(--s-4); color: var(--ink-2); font-size: var(--t-sm); }
.acc__item.is-open .acc__a p { padding-bottom: var(--s-4); }

/* ------------------------------------------------- 16 CONTACT & FORM */
.cta {
  position: relative;
  padding: clamp(1.4rem, 1rem + 2vw, 3.4rem);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 235, 0.8) 100%);
}
.cta__glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.cta__grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--s-6); }
.cta__left { display: grid; align-content: start; justify-items: start; gap: var(--s-3); }
.cta__title { font-size: var(--t-2xl); text-wrap: balance; }
.cta__lede { color: var(--ink-2); }

.branches { width: 100%; margin-top: var(--s-2); }
.branches__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-pill);
  background: var(--paper-3);
  border: 1px solid rgba(249, 115, 22, 0.16);
  margin-bottom: var(--s-3);
}
.btab {
  padding: 9px 18px;
  min-height: 40px;
  border-radius: var(--r-pill);
  font-size: var(--t-sm);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink-2);
  white-space: nowrap;
  transition: background 0.35s var(--ease), color 0.35s ease, box-shadow 0.35s ease;
}
.btab.is-active { background: #ffffff; color: var(--brand-ink); box-shadow: var(--shadow-lo); }

.binfo { display: grid; gap: var(--s-3); }
.binfo li { display: flex; gap: 14px; align-items: flex-start; }
.binfo li > span:last-child { display: grid; gap: 2px; min-width: 0; }
.binfo b { font-family: var(--font-display); font-size: var(--t-sm); font-weight: 700; }
.binfo i, .binfo a { font-style: normal; font-size: var(--t-sm); color: var(--ink-2); transition: color 0.25s ease; }
.binfo a:hover { color: var(--brand-deep); }
.binfo__ic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.2);
  box-shadow: var(--shadow-lo);
}
.binfo__ic svg { width: 19px; height: 19px; fill: none; stroke: var(--brand-deep); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.form { display: grid; gap: var(--s-3); align-content: start; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }

/* Floating-label pattern driven by :placeholder-shown */
.field { position: relative; min-width: 0; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: var(--tap);
  padding: 22px 16px 10px;
  border-radius: var(--r-sm);
  background: #ffffff;
  border: 1px solid rgba(16, 26, 44, 0.12);
  color: var(--ink);
  font-size: var(--t-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }

.field label {
  position: absolute;
  left: 17px;
  top: 15px;
  font-size: var(--t-md);
  color: var(--ink-3);
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform 0.28s var(--ease), color 0.28s ease;
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field--select select:focus ~ label,
.field--select select.has-value ~ label {
  transform: translateY(-11px) scale(0.76);
  color: var(--brand-ink);
}
.field .opt { color: var(--ink-3); font-weight: 400; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.field--select { position: relative; }
.field--select select { padding-top: 22px; cursor: pointer; }
.field--select option { background: #fff; color: var(--ink); }
.field--select::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 26px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  rotate: 45deg;
  pointer-events: none;
}

.field.is-bad input, .field.is-bad select, .field.is-bad textarea { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12); }
.field__err { display: block; min-height: 1.1em; margin-top: 5px; font-size: var(--t-xs); color: #b91c1c; }

.form__fine { font-size: var(--t-xs); color: var(--ink-3); text-align: center; }
.form__ok {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: rgba(15, 122, 77, 0.08);
  border: 1px solid rgba(15, 122, 77, 0.28);
  color: #0b6b42;
  font-size: var(--t-sm);
  font-weight: 600;
  text-align: center;
}
.form__ok a { text-decoration: underline; }

/* --------------------------------------- 17 FOOTER & FLOATING ACTIONS */
.foot {
  position: relative;
  margin-top: var(--s-6);
  padding-block: var(--s-6) var(--s-4);
  border-top: 1px solid rgba(249, 115, 22, 0.16);
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%);
}
.foot::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.5;
}
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--s-5); }
.foot__brand { display: grid; gap: var(--s-3); align-content: start; }
.foot__brand img { height: clamp(34px, 3.6vw, 46px); width: auto; object-fit: contain; object-position: left center; }
.foot__brand p { color: var(--ink-2); font-size: var(--t-sm); max-width: 42ch; }
.foot__col { display: grid; gap: 11px; align-content: start; }
.foot__col h3 { font-size: var(--t-sm); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 4px; }
.foot__col a { color: var(--ink-2); font-size: var(--t-sm); transition: color 0.25s ease, translate 0.25s ease; width: fit-content; }
.foot__col a:hover { color: var(--brand-deep); translate: 4px 0; }

.foot__bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(16, 26, 44, 0.08);
  font-size: var(--t-xs);
  color: var(--ink-3);
}
.foot__legal a:hover { color: var(--brand-deep); }

.wa, .totop {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right));
  z-index: 110;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.3s ease, visibility 0.3s ease;
}
.wa {
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.34);
}
.wa svg { width: 28px; height: 28px; }
.wa:hover { transform: scale(1.08) rotate(-6deg); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.46); }

.totop {
  bottom: calc(84px + env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-lo);
  opacity: 0;
  visibility: hidden;
}
.totop svg { width: 19px; height: 19px; fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.totop.is-on { opacity: 1; visibility: visible; }
.totop:hover { transform: translateY(-3px); box-shadow: var(--shadow-hi); }

/* ---------------------------------------------- 18 REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 0.75s var(--ease), translate 0.75s var(--ease);
  transition-delay: var(--rd, 0ms);
}
[data-reveal].is-in { opacity: 1; translate: 0 0; }

/* Elements that only reveal once JS is present would be invisible without
   it, so fall back to visible when JS is unavailable. */
.no-js [data-reveal] { opacity: 1; translate: 0 0; }
.no-js .hero__title .word > span { translate: 0 0; }
.no-js .preloader { display: none; }

/* ------------------------------------------------------ 19 RESPONSIVE */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero__stage { min-height: 420px; order: -1; }
  .pane__grid { grid-template-columns: 1fr; }
  .mock { max-width: 420px; }
  .faq__wrap { grid-template-columns: 1fr; gap: var(--s-5); }
  .cta__grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .tile, .tile--wide { grid-column: span 1; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .burger { display: grid; }
  .showcase { grid-template-columns: 1fr 1fr; }
  .showcase__note { grid-column: span 2; }
}

@media (max-width: 640px) {
  :root { --nav-h: 66px; }
  .bento { grid-template-columns: 1fr; gap: var(--s-3); }
  .tile, .tile--wide { grid-column: span 1; }
  .hero__stage { min-height: 350px; }
  .curved-carousel__stage { height: 320px; }
  .banner-card { width: 230px; height: 300px; }
  .banner-card.is-prev { transform: translate3d(-75px, 0, -45px) scale(0.82) rotateY(12deg); }
  .banner-card.is-next { transform: translate3d(75px, 0, -45px) scale(0.82) rotateY(-12deg); }
  .form__row { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__note { grid-column: span 1; }
  .foot__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .quote { padding: var(--s-4); }
  .hero__proof { gap: var(--s-3); }
  .hero__proof li { flex: 1 1 40%; }
  .btn { width: 100%; }
  .hero__cta { width: 100%; }
  .nav__actions [data-cta] { display: none; }
  .totop { bottom: calc(78px + env(safe-area-inset-bottom)); }
  /* 16px minimum stops iOS Safari zooming the page on field focus */
  .field input, .field select, .field textarea { font-size: 16px; }
}

@media (max-width: 400px) {
  .steps { padding-left: 42px; }
  .step__no { left: -42px; width: 32px; height: 32px; font-size: 0.72rem; }
  .quote blockquote { font-size: var(--t-lg); }
}

/* ========================================================== INSTAGRAM REELS */
.reels-section {
  position: relative;
  padding-bottom: var(--s-6);
  overflow: hidden;
}

.reels-carousel {
  position: relative;
  margin-top: var(--s-4);
  width: 100%;
}

.reels-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(16, 26, 44, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}
.reels-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.25);
  color: var(--brand-deep);
}
.reels-btn--prev { left: 16px; }
.reels-btn--next { right: 16px; }
.reels-btn svg { width: 22px; height: 22px; }

.reels-track-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  cursor: grab;
}
.reels-track-container::-webkit-scrollbar {
  display: none;
}
.reels-track-container.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.reels-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
}

.reels-group {
  display: flex;
  gap: 24px;
}

/* 9:16 Aspect Ratio Glassmorphic Smartphone Reel Card with Real Instagram Embed */
.reel-card {
  position: relative;
  width: 326px;
  height: 560px;
  flex-shrink: 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(16, 26, 44, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.5);
}

.reel-card__iframe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.reel-card__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
}

.reel-card__user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.reel-card__user:hover { opacity: 0.9; }

.reel-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}
.reel-card__avatar--alt {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.reel-card__handle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.reel-card__verified {
  width: 14px;
  height: 14px;
}

.reel-card__ig-icon {
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, color 0.25s ease;
}
.reel-card__ig-icon:hover {
  transform: scale(1.15);
  color: #ff6b00;
}

/* Reel Video Body */
.reel-card__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0d131f;
  overflow: hidden;
}

.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.reel-card.is-playing .reel-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
}

/* Center Pulse Play Trigger */
.reel-card__play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.35s ease, opacity 0.3s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.play-icon-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.5) 0%, transparent 70%);
  animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.9; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.reel-card:hover .reel-card__play-trigger {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.reel-card.is-playing .reel-card__play-trigger {
  opacity: 0;
  pointer-events: none;
}
.reel-card.is-playing:hover .reel-card__play-trigger {
  opacity: 0.85;
  pointer-events: auto;
}

.reel-card__tag {
  position: absolute;
  top: 60px;
  right: 14px;
  z-index: 5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 107, 0, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Reel Footer Caption & Controls */
.reel-card__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  pointer-events: auto;
}

.reel-card__caption {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.reel-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.reel-card__stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.reel-card__mute-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.reel-card__mute-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .reel-card {
    width: 230px;
    height: 410px;
  }
  .reels-btn {
    width: 38px;
    height: 38px;
  }
  .reels-btn--prev { left: 6px; }
  .reels-btn--next { right: 6px; }
}

/* Without backdrop-filter the panels would read as near-white on white, so
   raise them to a solid surface instead. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .nav, .drawer, .btn--ghost, .rnd, .totop { background: #ffffff; }
  .glass { box-shadow: var(--shadow-lo); }
}

/* ----------------------------------------- 20 REDUCED MOTION / PRINT */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .aurora__blob, .orbit::before, .marquee__track, .bars i,
  .ring__value, .eyebrow__dot, .card-float, .preloader__bar i {
    animation: none !important;
  }

  /* Anything that arrives via transition needs its end state applied */
  [data-reveal] { opacity: 1 !important; translate: 0 0 !important; }
  .hero__title .word > span { translate: 0 0 !important; }
  .rotator__word { position: static; }
  .rotator__word:not(.is-active) { display: none; }
  .rotator__word.is-active { translate: 0 0 !important; opacity: 1 !important; }
  .spotlight { display: none; }
  .bars i { scale: 1 1 !important; }
  .ring__value { stroke-dashoffset: calc(100.5 - (100.5 * var(--pct, 0) / 100)) !important; }
}

@media print {
  .aurora, .spotlight, .preloader, .nav, .drawer, .drawer-scrim,
  .wa, .totop, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
  .glass { border: 1px solid #ccc; box-shadow: none; background: #fff; }
}
