/* ═══════════════ FONTS ═══════════════ */
@font-face {
  font-family: 'Aeonik';
  src: url('AeonikTRIAL-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('AeonikTRIAL-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('AeonikTRIAL-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('AeonikTRIAL-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('AeonikTRIAL-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('AeonikTRIAL-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ═══════════════ DESIGN SYSTEM VARIABLES ═══════════════ */
:root {
  --purple: #9E2891;
  --purple-dark: #6A1B9A;
  --purple-deep: #3D0F5A;
  --gold: #FFD23F;
  --teal: #1DE9B6;
  --white: #FFF;
  --off: #FAFAFA;
  --text: #0E0514;
  --muted: #6B5F72;
  --border: rgba(158, 40, 145, 0.12);
  --r: 18px;
  --font: 'Aeonik', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ═══════════════ GENERAL STYLES ═══════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--off);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* ═══════════════ NAVIGATION ═══════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(61, 15, 90, 0.93);
  border-bottom: 1px solid rgba(255, 210, 63, 0.2);
  height: 68px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-logo img {
  height: 38px;
  width: auto;
  transition: transform 0.2s ease;
}

.nav-logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 7px 13px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--purple-deep) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: #e6bc30 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 210, 63, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  margin-right: -8px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animation to 'X' */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(61, 15, 90, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 5vw;
  border-bottom: 2px solid rgba(255, 210, 63, 0.3);
  z-index: 998;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s ease;
}

.mob-menu.open {
  max-height: 480px;
  padding: 16px 5vw 28px;
  opacity: 1;
  pointer-events: auto;
}

.mob-menu a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mob-menu a:last-child {
  border: none;
}

.mob-menu a:hover, 
.mob-menu a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding-left: 16px;
}

.mob-nav-cta {
  background: var(--gold) !important;
  color: var(--purple-deep) !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-top: 14px;
  padding: 12px 20px !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 210, 63, 0.2);
}

.mob-nav-cta:hover {
  background: #e6bc30 !important;
  transform: translateY(-1px);
}

/* ═══════════════ HERO SECTION ═══════════════ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  background: linear-gradient(135deg, var(--purple-deep) 0%, #5B1480 50%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.glow1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 233, 182, 0.18) 0%, transparent 60%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.glow2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 63, 0.12) 0%, transparent 60%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 5vw 60px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(29, 233, 182, 0.5);
  background: rgba(29, 233, 182, 0.1);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-badge span {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}

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

.hero-p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-gold {
  background: var(--gold);
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.btn-gold:hover {
  background: #e6bc30;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 210, 63, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  width: fit-content;
  flex-wrap: wrap;
}

.hstat {
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hstat:last-child {
  border-right: none;
}

.hstat .n {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  letter-spacing: -0.02em;
}

.hstat .l {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.hero-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phones-wrap {
  position: relative;
  width: 320px;
  height: 520px;
}

.phone-float {
  position: absolute;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.9);
}

.phone-float img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-main {
  width: 210px;
  top: 0;
  left: 0;
  z-index: 2;
  animation: floatA 5s ease-in-out infinite;
}

.phone-sec {
  width: 175px;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: floatB 5s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(-3deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

.badge-ai {
  position: absolute;
  top: 180px;
  right: -16px;
  z-index: 3;
  background: var(--teal);
  color: var(--purple-deep);
  font-weight: 800;
  font-size: 0.76rem;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(29, 233, 182, 0.45);
  animation: fc 3s ease-in-out infinite;
  white-space: nowrap;
}

.badge-sc {
  position: absolute;
  bottom: 110px;
  left: -24px;
  z-index: 3;
  background: var(--purple-deep);
  border: 1.5px solid rgba(255, 210, 63, 0.4);
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: fd 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.badge-sc .sv {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  font-weight: 800;
}

@keyframes fc {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fd {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-wave {
  width: 100%;
  display: block;
  margin-top: auto;
}

/* ═══════════════ PROOF BAR ═══════════════ */
.proof-bar {
  background: var(--gold);
  padding: 0 5vw;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  flex-wrap: wrap;
}

.proof-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 16px;
  border-right: 1px solid rgba(106, 27, 154, 0.2);
  min-width: 120px;
}

.proof-item:last-child {
  border-right: none;
}

.proof-item .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-deep);
  letter-spacing: -0.03em;
}

.proof-item .sm {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ═══════════════ SECTION UTILITIES ═══════════════ */
.sw {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.sl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(158, 40, 145, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.sl.light {
  color: var(--teal);
  background: rgba(29, 233, 182, 0.12);
}

.sl.gold {
  color: var(--gold);
  background: rgba(255, 210, 63, 0.15);
}

.st {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.st em {
  font-style: normal;
  color: var(--purple);
}

.st.wh {
  color: #fff;
}

.st.wh em {
  color: var(--gold);
}

.ss {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
}

.ss.wh {
  color: rgba(255, 255, 255, 0.6);
}

.hc {
  text-align: center;
}

.hc .ss {
  margin: 0 auto;
}

/* ═══════════════ HOW IT WORKS (STEPS) ═══════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.sc {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: 0.3s ease;
  overflow: hidden;
}

.sc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.sc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(158, 40, 145, 0.12);
}

.sc:hover::before {
  transform: scaleX(1);
}

.sn {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(158, 40, 145, 0.08);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.si {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(158, 40, 145, 0.1), rgba(106, 27, 154, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.si svg {
  width: 26px;
  height: 26px;
  color: var(--purple);
}

.sc h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.sc p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ═══════════════ APP SHOWCASE ═══════════════ */
.showcase-bg {
  padding: 110px 5vw;
  background: linear-gradient(160deg, var(--purple-deep) 0%, #5B1480 60%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

.dots-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.showcase-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.showcase-text {
  flex: 1;
}

.showcase-screens {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex: 0 0 auto;
}

.scp {
  width: 175px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
}

.scp:hover {
  transform: translateY(-10px) scale(1.02);
}

.scp img {
  width: 100%;
  height: auto;
  display: block;
}

.scp.tall {
  width: 195px;
}

.feat-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fr {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  transition: 0.2s ease;
  border: 1.5px solid transparent;
}

.fr:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.fd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.fd.t { background: var(--teal); }
.fd.g { background: var(--gold); }
.fd.p { background: #D68BFF; }

.fr h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.fr p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════ SERVICES ═══════════════ */
.sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.svc {
  background: #fff;
  border-radius: 24px;
  padding: 34px 26px;
  border: 1.5px solid var(--border);
  transition: 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(158, 40, 145, 0.1);
}

.svc-ico {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-ico.p { background: rgba(158, 40, 145, 0.1); }
.svc-ico.g { background: rgba(255, 210, 63, 0.15); }
.svc-ico.t { background: rgba(29, 233, 182, 0.12); }

.svc-ico svg {
  width: 27px;
  height: 27px;
}

.svc h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.svc p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  flex-grow: 1;
}

.stag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  padding: 5px 12px;
  width: fit-content;
}

.stag.p { color: var(--purple); background: rgba(158, 40, 145, 0.1); }
.stag.g { color: #9a7200; background: rgba(255, 210, 63, 0.2); }
.stag.t { color: #00917a; background: rgba(29, 233, 182, 0.15); }

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

.av {
  position: relative;
}

.aiw {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(158, 40, 145, 0.2);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  padding: 40px 32px 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.aiw img {
  width: 190px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.achip {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(255, 210, 63, 0.4);
  text-align: center;
  z-index: 5;
}

.achip .yr {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--purple-deep);
  display: block;
  letter-spacing: -0.03em;
}

.achip .alb {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
}

.atags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tag {
  background: rgba(158, 40, 145, 0.07);
  color: var(--purple);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.77rem;
  font-weight: 600;
}

.at p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}

.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 24px;
  border-radius: 50px;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testi-bg {
  padding: 110px 5vw;
  background: linear-gradient(160deg, var(--purple-deep), #5B1480);
  position: relative;
  overflow: hidden;
}

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

.tc {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px 26px;
  transition: 0.3s ease;
}

.tc:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.tc p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  font-style: italic;
}

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

.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.tau .name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.tau .role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════ CTA BAND ═══════════════ */
.cta-band {
  background: var(--gold);
  padding: 80px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--purple-deep);
  max-width: 580px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-band .btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--purple-deep);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-dark:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(61, 15, 90, 0.25);
}

.btn-outline-dark {
  background: transparent;
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2.5px solid var(--purple-deep);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-dark:hover {
  background: rgba(61, 15, 90, 0.08);
}

/* ═══════════════ CONTACT SECTION ═══════════════ */
.cg {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.ci-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.ci {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(158, 40, 145, 0.1), rgba(106, 27, 154, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-ico svg {
  width: 20px;
  height: 20px;
  color: var(--purple);
}

.ci h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.ci p, .ci a {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.5;
}

.ci a:hover {
  color: var(--purple);
}

.cfw {
  background: #fff;
  border-radius: 26px;
  padding: 42px 38px;
  box-shadow: 0 12px 48px rgba(158, 40, 145, 0.08);
  border: 1.5px solid var(--border);
}

.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 11px 15px;
  border-radius: 11px;
  border: 1.5px solid #E8E0EF;
  background: #FAFAFA;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}

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

.fg textarea {
  min-height: 105px;
}

.fsub {
  width: 100%;
  padding: 14px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.fsub:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(158, 40, 145, 0.25);
}

.fok {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(29, 233, 182, 0.1);
  border-radius: 13px;
  margin-top: 12px;
  color: #00917a;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1.5px solid rgba(29, 233, 182, 0.3);
}

/* ═══════════════ LEGAL PAGES ═══════════════ */
.lw {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 5vw 90px;
}

.lw h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.lw .ld {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 44px;
  display: block;
}

.lw h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple);
  margin: 34px 0 14px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.lw p, .lw li {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 12px;
}

.lw ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 20px;
}

.lw li {
  margin-bottom: 6px;
}

.lw strong {
  color: var(--text);
}

/* ═══════════════ PAGE HEADER BANNER ═══════════════ */
.ptop {
  background: linear-gradient(135deg, var(--purple-deep), #5B1480);
  padding: 130px 5vw 70px;
  position: relative;
  overflow: hidden;
}

.ptop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}

.ptop h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  max-width: 700px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.ptop h1 em {
  font-style: normal;
  color: var(--gold);
}

.ptop p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ═══════════════ FOOTER ═══════════════ */
footer {
  background: var(--purple-deep);
  border-top: 2px solid rgba(255, 210, 63, 0.2);
  padding: 72px 5vw 32px;
}

.fg-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
}

.fb p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 14px;
}

.fb img {
  height: 34px;
  width: auto;
}

.fc h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 17px;
}

.fc a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 9px;
  transition: 0.2s ease;
}

.fc a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.soc {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.soc:hover {
  background: var(--gold);
}

.soc:hover svg {
  color: var(--purple-deep) !important;
}

.soc svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.fdivider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px auto 24px;
  max-width: 1160px;
}

.fbot {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.fbot p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.fbot a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 18px;
  transition: 0.2s ease;
}

.fbot a:hover {
  color: var(--gold);
}

/* ═══════════════ RESPONSIVE STYLES ═══════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .sg { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .fg-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .showcase-screens { display: none; }
  .showcase-inner { flex-direction: column; }
  .hero-inner { gap: 40px; }
}

/* ── Mobile ── */
@media (max-width: 800px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Sections: override all inline padding with more breathing room */
  section { padding: 72px 18px !important; }
  .testi-bg { padding: 72px 18px !important; }
  .cta-band { padding: 68px 18px !important; }
  .ptop { padding: 120px 18px 68px !important; }
  footer { padding: 68px 18px 40px !important; }
  .lw { padding: 110px 18px 80px !important; }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    padding: 48px 18px 40px;
    gap: 0;
    text-align: center;
    align-items: center;
  }
  .hero-left { width: 100%; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-p { 
    margin-left: auto; 
    margin-right: auto; 
    max-width: 100%; 
    margin-bottom: 32px;
  }
  .hero-btns { 
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
  }
  .hero-right { width: 100%; order: 2; margin-top: 48px; }

  /* Phone mockup collage on hero - larger and cleaner */
  .mock-wrap {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
  }
  .phone-mock {
    position: absolute;
    width: 200px;
  }
  .phone-mock.elevated {
    transform: rotate(-7deg) translateX(-85px) translateY(-5px) !important;
    animation: none !important;
    z-index: 2;
  }
  .phone-mock.base {
    transform: rotate(6deg) translateX(85px) translateY(5px) !important;
    animation: none !important;
    z-index: 1;
  }
  /* Hide floating badges on mobile — they bleed off-screen in collage layout */
  .hero-badge-float { display: none; }

  /* Proof bar: 2-column card grid with better spacing */
  .proof-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 16px;
    gap: 12px;
    background: var(--gold);
  }
  .proof-item {
    border-right: none !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.22);
    padding: 22px 14px;
    min-width: 0;
  }
  .proof-item:last-child {
    grid-column: 1 / -1;
  }
  .proof-item .big { font-size: 1.8rem; }
  .proof-item .sm { font-size: 0.68rem; }

  /* About grid */
  .ag {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .av { display: flex; flex-direction: column; align-items: center; }
  .achip {
    position: static;
    display: inline-block;
    margin-top: 16px;
    align-self: center;
  }
  .aiw { min-height: 280px; padding: 30px 24px 0; }

  /* Grids */
  .sg { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .tgrid { grid-template-columns: 1fr; gap: 20px; }
  .product-grid { display: flex !important; flex-direction: column !important; grid-template-columns: 1fr !important; gap: 24px !important; margin-top: 48px !important; }
  .product-features { display: none !important; } /* Limit content on mobile */
  .product-card { max-width: 100% !important; width: 100% !important; }
  
  /* Section headers - better spacing on mobile */
  .hc { margin-bottom: 48px !important; }
  .hc .sl { margin-bottom: 14px; }
  .hc .st { 
    font-size: 1.7rem; 
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .hc .ss { 
    font-size: 1rem; 
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  .cg { grid-template-columns: 1fr; gap: 40px; }
  .fr2 { grid-template-columns: 1fr; }
  .fg-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Product cards - improved spacing */
  .product-card { 
    padding: 32px 24px; 
    border-radius: 24px;
    border: 1.5px solid var(--border);
  }
  .product-card::before {
    height: 5px;
  }
  .product-card h3 { 
    font-size: 1.15rem; 
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
  }
  .product-card p { 
    font-size: 0.95rem; 
    margin-bottom: 18px; 
    line-height: 1.65;
    color: var(--muted);
  }
  .product-badge { 
    margin-bottom: 16px;
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  .tc { 
    padding: 28px 22px; 
    border-radius: 18px;
  }
  .tc p { 
    font-size: 0.96rem; 
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* Service cards: clean vertical layout on mobile */
  .svc {
    flex-direction: column;
    padding: 26px 22px;
    gap: 0;
    border-radius: 20px;
  }
  .svc-ico { width: 50px; height: 50px; margin-bottom: 16px; }
  .svc-ico svg { width: 24px; height: 24px; }
  .svc h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .svc p { font-size: 0.9rem; line-height: 1.65; }
  .stag { margin-top: 12px; }

  /* How It Works steps: clean vertical layout on mobile */
  .sc {
    display: block;
    padding: 28px 22px;
    border-radius: 20px;
  }
  .sn { font-size: 2.4rem; margin-bottom: 12px; }
  .si { margin-bottom: 16px; width: 48px; height: 48px; }
  .sc h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .sc p { font-size: 0.9rem; line-height: 1.65; }

  /* About section: hide image panel, limit text */
  .av { display: none !important; }
  .ag { grid-template-columns: 1fr; gap: 0; }
  .at > p:not(:first-of-type) { display: none; }
  .at > .btn-purple { display: none; }
  .at h2 { font-size: 1.8rem; margin-bottom: 16px; }
  .at > p:first-of-type { 
    font-size: 0.96rem; 
    line-height: 1.75;
    margin-bottom: 20px;
  }

  /* CTA Band */
  .cta-band {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .cta-band h2 { font-size: 1.6rem; }
  .cta-band .btns { justify-content: center; }

  /* Footer */
  .fg-grid { grid-template-columns: 1fr; }
  .fbot { flex-direction: column; text-align: center; align-items: center; }
  .fbot a { margin-left: 10px; margin-right: 10px; }
  .fb p { max-width: 100%; }
}

/* ── Small Mobile ── */
@media (max-width: 500px) {
  /* Hero text - better hierarchy */
  .hero-h1 { 
    font-size: 2rem; 
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .hero-badge { 
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 20px;
  }
  .hero-p { 
    font-size: 0.92rem; 
    line-height: 1.7;
    margin-bottom: 28px;
  }

  /* Phone mockup sizing - larger for readability */
  .phone-mock { width: 175px; }
  .mock-wrap { height: 340px; }
  .phone-mock.elevated { transform: rotate(-7deg) translateX(-75px) translateY(-8px) !important; }
  .phone-mock.base { transform: rotate(6deg) translateX(75px) translateY(8px) !important; }

  /* Cards */
  .product-card { 
    padding: 28px 22px; 
    border-radius: 22px;
  }
  .product-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
  .product-card p { font-size: 0.92rem; margin-bottom: 14px; }
  .product-badge { font-size: 0.76rem; margin-bottom: 14px; }
  .tc { padding: 26px 20px; }
  .svc { padding: 24px 18px; }
  .sc { padding: 24px 18px; }
  .cfw { padding: 26px 18px; }

  /* Section subtitles */
  .st { font-size: 1.55rem; margin-bottom: 14px; }
  .sl { font-size: 0.68rem; }
  .ss { font-size: 0.96rem; }
  .ptop h1 { font-size: 1.8rem; }

  /* Proof bar numbers */
  .proof-item .big { font-size: 1.6rem; }
  .proof-item .sm { font-size: 0.65rem; }

  /* CTA Band */
  .cta-band h2 { font-size: 1.4rem; }
  .btn-dark, .btn-outline-dark { width: 100%; justify-content: center; }
  .cta-band .btns { width: 100%; flex-direction: column; }

  /* Better button sizing */
  .btn-gold { 
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .btn-ghost { 
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ── Extra Small ── */
@media (max-width: 360px) {
  .phone-mock { width: 155px; }
  .mock-wrap { height: 320px; }
  .phone-mock.elevated { transform: rotate(-7deg) translateX(-68px) translateY(-8px) !important; }
  .phone-mock.base { transform: rotate(6deg) translateX(68px) translateY(8px) !important; }
  
  .hero-h1 { font-size: 1.8rem; }
  .st { font-size: 1.5rem; }
  section { padding: 60px 14px !important; }
}

/* ═══════════════ PHONE MOCKUP SYSTEM ═══════════════ */
.mock-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.phone-mock {
  width: 210px;
  background: #110628;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  flex-shrink: 0;
}

.phone-mock.elevated {
  transform: translateY(-30px);
  animation: floatA 5s ease-in-out infinite;
}

.phone-mock.base {
  animation: floatB 5s ease-in-out infinite;
  animation-delay: .8s;
}

.p-screen {
  background: var(--purple-deep);
  border-radius: 28px;
  overflow: hidden;
  min-height: 370px;
  display: flex;
  flex-direction: column;
}

.p-notch {
  width: 68px; height: 18px;
  background: #110628;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  flex-shrink: 0;
}

.p-status {
  display: flex;
  justify-content: space-between;
  padding: 4px 14px 0;
  font-size: .48rem;
  color: rgba(255,255,255,.4);
  font-weight: 700;
  letter-spacing: .02em;
}

.p-header {
  padding: 10px 14px 6px;
}

.p-title {
  font-size: .68rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}

.p-sub {
  font-size: .5rem;
  color: rgba(255,255,255,.4);
  margin-top: 1px;
}

/* ── App Mockup ── */
.mock-streak {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,210,63,.1);
  border: 1px solid rgba(255,210,63,.25);
  border-radius: 9px;
  padding: 6px 10px;
  margin: 2px 10px 8px;
}

.mock-streak-num {
  font-size: .85rem;
  font-weight: 800;
  color: var(--gold);
}

.mock-streak-lbl {
  font-size: .44rem;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mock-card {
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 8px 10px;
  margin: 3px 10px;
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background .2s;
}

.mock-card-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}

.mock-card-ico.p { background: rgba(158,40,145,.35); }
.mock-card-ico.g { background: rgba(255,210,63,.2); }
.mock-card-ico.t { background: rgba(29,233,182,.2); }
.mock-card-ico.v { background: rgba(214,139,255,.2); }

.mock-card-name {
  font-size: .54rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  display: block;
}

.mock-card-meta {
  font-size: .44rem;
  color: rgba(255,255,255,.4);
  margin-top: 1px;
  display: block;
}

.mock-card-prog {
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden;
}

.mock-card-prog-fill {
  height: 100%;
  border-radius: 2px;
}

.mock-card-prog-fill.p { background: var(--purple); width: 65%; }
.mock-card-prog-fill.g { background: var(--gold); width: 42%; }
.mock-card-prog-fill.t { background: var(--teal); width: 78%; }
.mock-card-prog-fill.v { background: #D68BFF; width: 30%; }

.mock-section-label {
  font-size: .48rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  padding: 8px 14px 4px;
}

/* ── Language Lab Mockup ── */
.lab-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.lab-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.lab-name {
  font-size: .55rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.lab-status {
  font-size: .44rem;
  color: var(--teal);
  display: block;
}

.lab-chat {
  flex: 1;
  padding: 8px 0 4px;
  overflow: hidden;
}

.lab-bubble {
  border-radius: 10px 10px 10px 3px;
  padding: 7px 10px;
  margin: 3px 12px 3px 10px;
  max-width: 130px;
}

.lab-bubble.ai {
  background: rgba(255,255,255,.09);
  border-radius: 10px 10px 10px 3px;
}

.lab-bubble.user {
  background: rgba(158,40,145,.45);
  border-radius: 10px 10px 3px 10px;
  margin-left: auto;
  margin-right: 10px;
}

.lab-bubble-text {
  font-size: .48rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}

.lab-wave-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 0 6px;
}

.lab-bar {
  width: 4px;
  border-radius: 3px;
  background: var(--teal);
  animation: wavebar 1.3s ease-in-out infinite;
}

.lab-bar:nth-child(1) { height: 8px;  animation-delay: 0s; }
.lab-bar:nth-child(2) { height: 18px; animation-delay: .12s; }
.lab-bar:nth-child(3) { height: 28px; animation-delay: .24s; }
.lab-bar:nth-child(4) { height: 14px; animation-delay: .36s; }
.lab-bar:nth-child(5) { height: 24px; animation-delay: .48s; }
.lab-bar:nth-child(6) { height: 10px; animation-delay: .60s; }
.lab-bar:nth-child(7) { height: 20px; animation-delay: .72s; }

@keyframes wavebar {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50%       { transform: scaleY(1.8); opacity: 1; }
}

.lab-mic-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #7B1FA2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  position: relative;
  box-shadow: 0 6px 20px rgba(158,40,145,.5);
}

.lab-mic-btn::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(158,40,145,.35);
  animation: micpulse 2s ease-in-out infinite;
}

@keyframes micpulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%       { transform: scale(1.25); opacity: 0; }
}

.lab-score-row {
  display: flex;
  gap: 4px;
  padding: 4px 10px 6px;
}

.lab-score-pill {
  flex: 1;
  background: rgba(29,233,182,.1);
  border: 1px solid rgba(29,233,182,.2);
  border-radius: 7px;
  padding: 5px 4px;
  text-align: center;
}

.lab-score-val {
  font-size: .68rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}

.lab-score-lbl {
  font-size: .38rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Floating badges on hero ── */
.hero-badge-float {
  position: absolute;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
  z-index: 10;
}

.hbf-teal {
  background: var(--teal);
  color: var(--purple-deep);
  top: 40px;
  right: -18px;
  box-shadow: 0 8px 24px rgba(29,233,182,.4);
  animation: fc 3.5s ease-in-out infinite;
}

.hbf-gold {
  background: var(--purple-deep);
  color: #fff;
  border: 1.5px solid rgba(255,210,63,.4);
  bottom: 60px;
  left: -22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  animation: fd 4s ease-in-out infinite;
  animation-delay: .6s;
}

.hbf-gold .score-val {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
}

/* ── Two-product showcase section ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.product-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 36px;
  border: 1.5px solid var(--border);
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  transition: .3s;
}

.product-card.app::before  { background: linear-gradient(90deg, var(--purple), #D68BFF); }
.product-card.lab::before  { background: linear-gradient(90deg, var(--teal), var(--gold)); }
.product-card.yt::before   { background: linear-gradient(90deg, #FF0000, #ff4d4d); }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(158,40,145,.1);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 5px 13px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.product-badge.app { background: rgba(158,40,145,.1); color: var(--purple); }
.product-badge.lab { background: rgba(29,233,182,.12); color: #00917a; }
.product-badge.yt { background: rgba(255,0,0,.08); color: #d30000; }

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.product-card p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
}

.pf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pf-dot.p { background: var(--purple); }
.pf-dot.t { background: var(--teal); }
.pf-dot.g { background: var(--gold); }

/* Product grid mobile override is now handled in the main responsive block above */
