/* ============================================
   UnToque — Ultra-Clean Professional Landing
   Brand: #7702fd  |  Light & Premium
   ============================================ */

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

:root {
  --brand: #1a0f2e;
  --brand-accent: #6b3fc4;
  --brand-light: #2d1f47;
  --brand-lighter: #4a366e;
  --brand-pale: #f8f6fc;
  --brand-surface: rgba(26, 15, 46, 0.02);
  --brand-subtle: rgba(26, 15, 46, 0.05);
  --brand-glow: rgba(0, 0, 0, 0.04);

  --white: #ffffff;
  --bg: #fcfcfc;
  --bg-alt: #f7f6fb;
  --bg-warm: #faf9fe;

  --gray-950: #0f0f10;
  --gray-900: #1a1a1e;
  --gray-800: #2e2e34;
  --gray-700: #44444d;
  --gray-600: #5e5e6a;
  --gray-500: #7a7a88;
  --gray-400: #9d9daa;
  --gray-300: #c2c2cc;
  --gray-200: #e0e0e6;
  --gray-100: #eeeeef;
  --gray-50: #f5f5f6;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;
  --font-logo: 'Syne', sans-serif;

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

  --container: 1140px;
  --container-wide: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-gap: clamp(80px, 10vw, 140px);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-gap) 0; position: relative; }
.text-center { text-align: center; }

/* ---- Typography ---- */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--gray-950);
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gray-950);
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-950);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7702fd;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #7702fd;
  border-radius: 2px;
}
/* ============ PASSWORD GATE ============ */
.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f8f4ff 0%, #efe8fb 30%, #f0eafc 60%, #faf8ff 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.password-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.password-gate__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(119, 2, 253, 0.12);
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(119, 2, 253, 0.08), 0 1px 3px rgba(0,0,0,0.04);
  max-width: 400px;
  width: calc(100% - 48px);
  text-align: center;
}

.password-gate__logo {
  height: 48px;
  width: auto;
  margin-bottom: 28px;
  object-fit: contain;
}

.password-gate__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
}

.password-gate__input-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.password-gate__input {
  flex: 1;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.15em;
  text-align: center;
}

.password-gate__input:focus {
  border-color: #7702fd;
  box-shadow: 0 0 0 4px rgba(119, 2, 253, 0.1);
}

.password-gate__input.shake {
  animation: shakeInput 0.4s ease;
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.password-gate__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7702fd;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.password-gate__btn:hover {
  background: #5e01cc;
  transform: scale(1.05);
}

.password-gate__error {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ef4444;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.password-gate__error.visible {
  opacity: 1;
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

/* ============ NAV (Floating Pill) ============ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1100px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s var(--ease-smooth);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__links a:hover { color: #7702fd; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav__mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Floating shapes deleted */

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 150px 0 60px;
  background: radial-gradient(circle at top right, rgba(243,232,255,0.4) 0%, var(--bg-warm) 40%, var(--white) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content { max-width: 580px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  background: rgba(119, 2, 253, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(119, 2, 253, 0.25);
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(119, 2, 253, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  animation: fadeInUp 0.7s var(--ease-out) forwards;
  opacity: 0;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
}

.hero__badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7702fd;
}

.hero__title {
  margin-bottom: 24px;
  animation: fadeInUp 0.7s var(--ease-out) 0.08s forwards;
  opacity: 0;
}

.hero__title .accent {
  color: var(--brand);
  font-family: var(--font-logo);
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInUp 0.7s var(--ease-out) 0.16s forwards;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s var(--ease-out) 0.24s forwards;
  opacity: 0;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.02) inset;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
  color: var(--gray-950);
  border-color: var(--gray-300);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-secondary:hover svg { transform: translateX(4px); }

/* Hero trust line */
.hero__trust {
  animation: fadeInUp 0.7s var(--ease-out) 0.32s forwards;
  opacity: 0;
}

.hero__trust-line {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Benefit chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  animation: fadeInUp 0.7s var(--ease-out) 0.4s forwards;
  opacity: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--brand-surface);
  border: 1px solid rgba(119, 2, 253, 0.08);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--gray-700);
  font-weight: 600;
}

.chip svg { width: 14px; height: 14px; color: var(--brand); }

/* Hero visual / 3D card */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  animation: fadeIn 1.2s var(--ease-out) 0.3s forwards;
  opacity: 0;
  transform: translate(24px, 0px);
}

.hero__card-wrapper {
  position: relative;
  width: 320px;
  height: 450px;
  transform-style: preserve-3d;
  transform: scale(2.3) rotateX(60deg) rotateZ(-30deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__card-wrapper.is-tracking {
  transition: transform 0.05s linear;
}

/* Shadow pulse removed */

.hero__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
  transition: transform 0.15s ease-out;
}

/* CSS hack to remove black background from previous images on light backgrounds */
.light-card-img {
  mix-blend-mode: multiply; /* Will darken, effectively removing white backgrounds but we have black backgrounds */
}
/* Better fix: if the image has a solid black background, screen works best on dark, but on light we need to invert and screen or just apply a mask. 
   Since I generated new images without black background, I don't need this hack anymore, I will swap the image SRC below */

.hero__card-back {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  filter: blur(4px);
  transform: translateZ(-40px) rotateY(3deg);
}

.hero__card-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* NFC Waves removed */

/* ============ TRUST & LOGOS SEPARATE SECTION ============ */
.trust-and-logos {
  position: relative;
  z-index: 5;
  background: var(--white);
  padding: 60px 0 40px;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 64px 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.trust-badge__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.trust-badge__content {
  display: flex;
  flex-direction: column;
}

.trust-badge__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge__stars {
  display: flex;
  gap: 2px;
}

.trust-badge__stars svg { width: 16px; height: 16px; fill: #FBB040; }

.trust-badge__score {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gray-900);
}

.trust-badge__label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============ ENTERPRISE LOGOS ============ */
.logos-strip {
  text-align: center;
}

.logos-strip__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.logos-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 64px);
  flex-wrap: wrap;
}

.logo-img {
  height: 38px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) contrast(0%) brightness(130%);
  mix-blend-mode: multiply;
  opacity: 0.6;
  transition: all 0.3s ease;
  user-select: none;
}

.logo-img:hover { 
  opacity: 1;
  filter: grayscale(100%) contrast(0%) brightness(80%);
  transform: scale(1.05);
}

.logo-text {
  font-size: 28px;
  color: #999;
  user-select: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.logo-text:hover {
  opacity: 1;
  color: #777;
  transform: scale(1.05);
}

.logo-text--rapanui { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -1px; }
.logo-text--luccianos { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }

/* ============ PROBLEM ============ */
.problem {
  background: var(--bg-alt);
}

.problem__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem__text {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 16px;
}

.problem__highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7702fd;
  padding: 10px 28px;
  background: rgba(119, 2, 253, 0.05);
  border: 1px solid rgba(119, 2, 253, 0.2);
  border-radius: var(--radius-pill);
}

/* ============ SOLUTION ============ */
.solution { background: var(--white); }

.solution__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.step-card {
  position: relative;
  padding: 64px 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease-smooth);
}

.step-card:hover {
  border-color: var(--gray-300);
  background: var(--white);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--brand);
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px var(--brand-glow);
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============ SHOWCASE ============ */
.showcase { background: var(--bg-alt); }

.showcase__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.showcase__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.35s ease;
}

.showcase__item:hover {
  border-color: var(--gray-300);
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.showcase__item:hover img { transform: scale(1.04); }

.showcase__item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ============ BENEFITS BENTO ============ */
.benefits { background: var(--white); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.bento-card {
  position: relative;
  padding: 64px 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease-smooth);
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--gray-300);
  background: var(--white);
}

.bento-card--wide { grid-column: span 2; }

.bento-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-subtle);
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--brand);
}

.bento-card__icon svg { width: 24px; height: 24px; }

.bento-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.bento-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============ REDIRECTION ============ */
.redirection { background: var(--bg-alt); }

.redirection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 64px;
}

.redirection__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.redirection__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

.redirection__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Admin mockup */
.admin-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.admin-mockup__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.admin-mockup__dot { width: 12px; height: 12px; border-radius: 50%; }
.admin-mockup__dot--red { background: #ff5f56; }
.admin-mockup__dot--yellow { background: #ffbd2e; }
.admin-mockup__dot--green { background: #27c93f; }

.admin-mockup__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-mockup__field {
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.admin-mockup__field-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
}

.admin-mockup__field-value {
  font-size: 0.9rem;
  color: var(--gray-900);
  font-weight: 600;
}

.admin-mockup__field--active {
  border-color: var(--brand);
  background: rgba(119, 2, 253, 0.04);
}

.admin-mockup__field--active .admin-mockup__field-value { color: var(--brand); }

/* ============ USE CASES ============ */
.usecases { background: var(--white); }

.usecases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.usecase-card {
  padding: 48px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.35s ease;
  text-align: center;
}

.usecase-card:hover {
  background: var(--white);
  border-color: var(--gray-300);
}

.usecase-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  display: block;
  opacity: 0.8;
}

.usecase-card__name {
  font-size: 1rem;
  font-weight: 650;
  color: var(--gray-900);
}

/* ============ SOCIAL PROOF ============ */
.social-proof { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  padding: 56px 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  border-color: var(--gray-300);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg { width: 18px; height: 18px; fill: #FBB040; }

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-surface);
  border: 1px solid var(--brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  display: block;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-pale) 100%);
  padding: clamp(100px, 12vw, 140px) 0;
  overflow: hidden;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta__subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
  margin-top: 16px;
}

.final-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-900);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.btn-whatsapp:hover {
  background: #f0fdf4;
  border-color: #86efac;
  color: #15803d;
}

.btn-whatsapp svg { width: 22px; height: 22px; fill: #25D366; }

/* ============ FOOTER ============ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
}

.footer__logo img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

.footer__text {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--gray-900); }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardFloat {
  0%, 100% { transform: scale(2.3) rotateX(60deg) rotateZ(-30deg) translateY(0px); }
  50% { transform: scale(2.3) rotateX(58deg) rotateZ(-28deg) translateY(-20px); }
}

@keyframes cardFloatMobile {
  0%, 100% { transform: scale(1.3) rotateX(60deg) rotateZ(-30deg) translateY(0px); }
  50% { transform: scale(1.3) rotateX(58deg) rotateZ(-28deg) translateY(-15px); }
}

@keyframes shadowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* Wave expand removed */

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 0 40px;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle { max-width: 500px; }
  .hero__ctas { justify-content: center; }
  .hero__chips { justify-content: center; }

  .hero__visual { order: -1; margin-bottom: 24px; transform: none; }

  .hero__card-wrapper { 
    width: 260px; 
    height: 360px; 
    animation: cardFloatMobile 6s ease-in-out infinite;
  }
  .hero__trust { justify-content: center; }

  .solution__steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav { top: 10px; width: calc(100% - 32px); }
  .nav__logo img { height: 26px; }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .logos-strip__row { gap: 24px; }
  .trust-bar__inner { gap: 20px; flex-direction: column; }
}

@media (max-width: 640px) {
  .heading-xl { font-size: 2.4rem; }
  .hero { padding: 90px 0 40px; }
  .hero__card-wrapper { width: 220px; height: 310px; }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .usecases__grid { gap: 12px; }
  .usecase-card { padding: 24px 16px; }

  .final-cta__buttons {
    flex-direction: column;
  }

  .final-cta__buttons .btn-primary,
  .final-cta__buttons .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .trust-badge { width: 100%; justify-content: center; }
  .logo-item { font-size: 1.05rem; }

  .shape--1, .shape--3 { display: none; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
