.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loading {
  overflow: hidden;
}

.page-loader-mark {
  position: relative;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
}

.page-loader-mark img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.page-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(214, 255, 58, 0.14);
  border-top-color: var(--volt);
  animation: loader-spin 0.85s linear infinite;
}

.page-loader-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: rgba(214, 255, 58, 0.45);
  animation: loader-spin 1.35s linear infinite reverse;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   Valtara Sports — custom sportswear manufacturer site
   ========================================================= */

:root {
  --ink: #08090c;
  --ink-2: #101218;
  --ink-3: #171b22;
  --ink-4: #222733;
  --paper: #f6f3ec;
  --paper-2: #ece7dc;
  --paper-3: #e2dccf;
  --muted: #9aa0ab;
  --muted-2: #6e7480;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(8, 9, 12, 0.1);
  --volt: #d6ff3a;
  --volt-2: #c3ef1f;
  --mint: #3dffc2;
  --white: #fff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
  --header: 78px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Syne", "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul,
ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--volt);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-alt {
  background: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 14px;
}

.section-light .eyebrow {
  color: #5a6b12;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
.display {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--muted);
  max-width: 58ch;
}

.section-light .lede {
  color: var(--muted-2);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
  max-width: 720px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-head.center .lede {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav-link:focus-visible,
.icon-btn:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
}

.btn-volt {
  background: var(--volt);
  color: var(--ink);
}

.btn-volt:hover {
  background: var(--volt-2);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Topbar */
.topbar {
  display: none;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-links,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a:hover {
  color: var(--volt);
}

.dot-sep::before {
  content: "•";
  margin-right: 18px;
  color: var(--ink-4);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 12, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 9, 12, 0.94);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  width: 34px;
  height: 34px;
}

.nav {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--paper);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--paper);
  position: relative;
  transition: 0.25s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  inset: var(--header) 12px auto;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav .btn {
  margin-top: 8px;
}

/* Hero */
.about-split {
  display: grid;
  gap: 22px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 40px 0 56px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.2) 0%, rgba(8, 9, 12, 0.55) 42%, rgba(8, 9, 12, 0.96) 100%),
    linear-gradient(90deg, rgba(8, 9, 12, 0.55), transparent 55%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.hero-copy h1 span {
  color: var(--volt);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--paper);
}

.hero-panel {
  width: min(100%, 380px);
  justify-self: start;
  background: linear-gradient(165deg, rgba(214, 255, 58, 0.1), rgba(8, 9, 12, 0.82) 38%);
  border: 1px solid rgba(214, 255, 58, 0.22);
  border-radius: 24px;
  padding: 26px 24px 10px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-panel-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 8px;
}

.hero-panel h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.stat-mini {
  display: grid;
  margin: 12px 0 0;
}

.stat-mini li {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini b {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--volt);
  letter-spacing: -0.04em;
}

.stat-mini span {
  font-size: 0.92rem;
  font-weight: 700;
  color: #e8e4d8;
  line-height: 1.3;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.marquee-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--volt);
  border-radius: 50%;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
}

.stat-card b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--volt);
  letter-spacing: -0.04em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

/* Category bento */
.bento {
  display: grid;
  gap: 14px;
}

.cat-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 9, 12, 0.88) 100%);
}

.cat-card .body {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.cat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.cat-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cat-card.large {
  min-height: 340px;
}

/* Audience */
.audience {
  display: grid;
  gap: 14px;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.audience-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--volt);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.audience-card p {
  color: var(--muted-2);
  margin-top: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.audience-card .tag-row {
  margin-top: auto;
  padding-top: 18px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper-2);
}

/* Why */
.why-grid {
  display: grid;
  gap: 14px;
}

.why-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink-3);
  border: 1px solid var(--line);
}

.why-card .num {
  font-family: var(--display);
  color: var(--volt);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--muted);
  margin-top: 8px;
}

/* Process preview */
.process-list {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.process-item .idx::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--volt);
}

.process-item p {
  color: var(--muted);
  margin-top: 4px;
}

/* Testimonials */
.slider {
  position: relative;
}

.slides {
  display: grid;
  gap: 14px;
}

.testimonial {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.stars {
  color: var(--volt);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial p {
  font-size: 1.05rem;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.person small {
  color: var(--muted);
}

.slider-nav {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq-item button span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--volt);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item .answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted-2);
}

.faq-item.open .answer {
  display: block;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(2.2rem, 5vw, 4rem);
  background: var(--volt);
  color: var(--ink);
}

.cta-band h2 {
  max-width: 14ch;
}

.cta-band p {
  margin-top: 10px;
  max-width: 48ch;
  font-weight: 600;
}

.cta-band .btn {
  margin-top: 22px;
}

/* Team */
.team-grid {
  display: grid;
  gap: 14px;
}

.team-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card .body {
  padding: 16px 18px 20px;
}

.team-card small {
  color: var(--volt);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Products */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  font-weight: 800;
  font-size: 0.84rem;
  background: var(--white);
  color: var(--ink);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--volt);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  gap: 14px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d8d2c6;
  display: block;
}

.product-card .body {
  padding: 16px 18px 20px;
}

.product-card .cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6b12;
}

.hidden {
  display: none !important;
}

/* Process page */
.stage-grid {
  display: grid;
  gap: 14px;
}

.stage {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.stage .kicker {
  font-family: var(--display);
  color: var(--volt);
  margin-bottom: 10px;
}

.stage ul {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.stage li {
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.stage li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.55em;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-card,
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line-dark);
}

.info-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row b {
  display: block;
}

.info-row span,
.info-row a {
  color: var(--muted-2);
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  padding: 0 14px;
}

textarea {
  min-height: 140px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--volt);
  border-color: transparent;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted-2);
}

.form-success {
  display: none;
  padding: 14px;
  border-radius: 12px;
  background: #e9f8c8;
  font-weight: 700;
}

.form-success.show {
  display: block;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Page hero */
.page-hero {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0 2.4rem;
  background:
    radial-gradient(800px 280px at 10% 0%, rgba(214, 255, 58, 0.12), transparent 60%),
    var(--ink);
}

.page-hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
}

/* Footer */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 32px;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 36ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--paper);
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  padding: 5px 0;
}

.footer-col a:hover {
  color: var(--volt);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.powered-by {
  color: var(--volt);
  font-weight: 600;
}

.powered-by:hover {
  color: var(--volt-2);
}

/* Float helpers */
.float-whatsapp,
.back-top {
  position: fixed;
  right: 16px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.float-whatsapp {
  bottom: 84px;
  background: #25d366;
}

.float-whatsapp img,
.float-whatsapp svg {
  width: 30px;
  height: 30px;
  display: block;
}

.float-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.float-whatsapp:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.back-top {
  bottom: 22px;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(8, 9, 12, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.mobile-cta .btn {
  min-height: 44px;
  padding: 0 10px;
  font-size: 0.84rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.values {
  display: grid;
  gap: 12px;
}

.value {
  padding: 20px;
  border-radius: 16px;
  background: var(--paper-2);
  color: var(--ink);
}

.value p {
  margin-top: 6px;
  color: var(--muted-2);
}

.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert {
  min-width: 110px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 759px) {
  body {
    padding-bottom: 76px;
  }

  .back-top {
    left: 16px;
    right: auto;
    bottom: 84px;
  }
}

/* Desktop */
@media (min-width: 760px) {
  .container {
    width: min(100% - 48px, var(--max));
  }

  .hero {
    min-height: calc(100svh - var(--header) - 38px);
  }

  .topbar {
    display: block;
  }

  .menu-toggle,
  .mobile-nav,
  .mobile-cta {
    display: none !important;
  }

  .nav,
  .header-cta {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 40px;
  }

  .hero-panel {
    justify-self: end;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .cat-card.large {
    grid-row: span 2;
    min-height: 520px;
  }

  .audience {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slides {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid,
  .product-grid,
  .stage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid,
  .about-split,
  .cta-inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-split,
  .cta-inner,
  .contact-grid {
    display: grid;
    gap: 28px;
    align-items: center;
  }

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

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

  .float-whatsapp {
    bottom: 22px;
  }
}

@media (min-width: 1024px) {
  .audience {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .page-loader-ring,
  .page-loader-ring::after {
    animation: none !important;
    border-color: var(--volt);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
