/* ===================================================
   PEECHY — Design System v3
   Inspired by Claude Design DA · Inter + JetBrains Mono
   =================================================== */

/* --- Custom Properties --- */
:root {
  --deep:        #0A0530;
  --violet:      #1B0B55;
  --violet-2:    #2A0D7A;
  --neon:        #C850FF;
  --neon-bright: #E47BFF;
  --neon-glow:   rgba(200, 80, 255, 0.35);
  --green:       #21D07B;
  --blue:        #5DB3FF;
  --lilac:       #B390FF;
  --white:       #FFFFFF;
  --off:         rgba(255, 255, 255, 0.65);
  --dim:         rgba(255, 255, 255, 0.35);
  --line:        rgba(255, 255, 255, 0.1);
  --line-bright: rgba(255, 255, 255, 0.16);
  --card-bg:     rgba(255, 255, 255, 0.05);
  --card-bg-2:   rgba(255, 255, 255, 0.08);
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, monospace;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --section-pad: clamp(48px, 6vw, 80px);
  --container:   1200px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t-base:      0.3s;
  --t-slow:      0.6s;
}

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

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background: #06021A;
  overflow-x: hidden;
}

/* Fixed neon atmosphere — always visible while scrolling */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 110% 55% at 50% -5%, rgba(200,80,255,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 10% 25%, rgba(27,11,85,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 88% 65%, rgba(42,13,122,0.28) 0%, transparent 60%),
    #06021A;
  pointer-events: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.text-center { text-align: center; }

/* --- Gradient em (headings) --- */
h1 em, h2 em, h3 em,
.hero__title em,
.section__title em,
.cta-block__title em,
.offer-card__name em,
.stats-block__label em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(90deg, var(--neon-bright), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--white {
  background: var(--white);
  color: var(--deep);
  box-shadow: 0 0 30px var(--neon-glow);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--neon-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-bright);
}
.btn--ghost:hover {
  border-color: var(--neon-bright);
  color: var(--neon-bright);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--neon);
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

/* --- Section kicker label --- */
.section__kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-bright);
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(228, 123, 255, 0.1);
  border: 1px solid rgba(228, 123, 255, 0.3);
  margin-bottom: 24px;
}

/* --- Section layout --- */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section--alt {
  background: transparent;
}

.section--cta {
  background: transparent;
  overflow: hidden;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section__title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

/* Decorative neon beam for sections */
.section__neon-beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section__neon-beam::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  top: -25%;
  left: 60%;
  background: linear-gradient(to bottom, transparent, var(--neon) 40%, var(--neon-bright) 60%, transparent);
  transform: rotate(20deg);
  box-shadow: 0 0 40px var(--neon-glow), 0 0 100px rgba(200,80,255,0.1);
  opacity: 0.5;
}
.section > .container { position: relative; z-index: 1; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--t-base) var(--ease), padding var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.navbar--scrolled {
  background: rgba(10, 5, 48, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.navbar__logo img {
  height: 80px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--off);
  transition: color var(--t-base);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--neon-bright);
  transition: width var(--t-base) var(--ease);
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after { width: 100%; }

.navbar__actions { display: flex; align-items: center; gap: 14px; }

.navbar__whatsapp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  flex-shrink: 0;
  animation: waPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.navbar__whatsapp:hover { transform: scale(1.08); }

.navbar__whatsapp--badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep);
  line-height: 1;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.navbar__cta { padding: 10px 22px; font-size: 0.84rem; }

/* WhatsApp floating button — mobile only */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float__badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #06021A;
  line-height: 1;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.navbar__burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}
.navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('fond_peechy.png') center center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(10,5,48,0.3) 0%, transparent 100%),
    linear-gradient(to bottom, transparent 60%, #06021A 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 130px 0 100px;
}

.hero__content { max-width: 860px; margin: 0 auto; }

/* Hero badges */
.hero__badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--white);
}

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

/* Hero title */
.hero__title {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--off);
  max-width: 520px;
  margin: 0 auto 44px;
  font-weight: 400;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero social proof */
.hero__social-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.hero__avatars {
  display: flex;
}
.hero__avatars span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-2), var(--neon));
  border: 2px solid #06021A;
  margin-left: -8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
}
.hero__avatars span:first-child { margin-left: 0; }

.hero__google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__google-stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.hero__google-text {
  font-size: 0.82rem;
  color: var(--off);
}
.hero__google-text strong { color: var(--white); font-weight: 600; }

/* Hero scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--neon-bright), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* --- Marquee Strip --- */
/* --- Logo Carousel --- */
.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #06021A;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-carousel__track {
  display: flex;
  width: max-content;
  animation: logoScroll 40s linear infinite;
}
.logo-carousel__track:hover { animation-play-state: paused; }

.logo-carousel__slide {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
}

.logo-carousel__slide img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity var(--t-base);
  flex-shrink: 0;
}
.logo-carousel__slide img:hover { opacity: 0.85; }

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel__track { animation: none; }
}

/* --- Pain Points --- */
.tips-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--white);
  transition: border-color var(--t-base), background var(--t-base);
}
.tip:hover {
  border-color: var(--line-bright);
  background: var(--card-bg-2);
}

.tip__check {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-bright), var(--neon));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 16px rgba(228, 123, 255, 0.45);
}
.tip__check::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* --- Process --- */
.process-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: border-color var(--t-base), background var(--t-base);
}
.process-row:hover {
  border-color: var(--line-bright);
  background: var(--card-bg-2);
}

.process-row__num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--neon-bright), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 44px;
  flex-shrink: 0;
}

.process-row__label {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  flex: 1;
  letter-spacing: -0.01em;
}

.process-row__dur {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* --- Stats Block --- */
.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stats-block__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-bright);
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(228, 123, 255, 0.1);
  border: 1px solid rgba(228, 123, 255, 0.3);
  display: inline-block;
  margin-bottom: 20px;
}

.stats-block__number {
  display: flex;
  align-items: flex-start;
  line-height: 0.85;
}

.stat-card__number {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(6rem, 14vw, 11rem);
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, var(--white) 0%, var(--neon-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.85;
}

.stats-block__unit {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.04em;
  color: var(--white);
  margin-top: 0.05em;
}

.stats-block__label {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  margin-top: 20px;
  letter-spacing: -0.02em;
}

.stats-block__dim {
  color: var(--off);
  font-weight: 400;
}

.stats-block__counters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-pill {
  padding: 28px 32px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: border-color var(--t-base);
}
.stat-pill:hover { border-color: var(--line-bright); }

.stat-pill__number {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--neon-bright), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-pill__suffix {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--neon-bright), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-pill__label {
  font-size: 0.88rem;
  color: var(--off);
  margin-top: 6px;
}

/* --- Stats Row (compact — peechy.fr style) --- */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 40px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  max-width: 860px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}

.stat-item__number {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--white) 0%, var(--neon-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: inline-block;
}

.stat-item__suffix {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--white) 0%, var(--neon-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item__label {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--off);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.stat-item__divider {
  width: 1px;
  height: 60px;
  background: var(--line-bright);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-row {
    flex-direction: column;
    gap: 0;
    padding: 32px 24px;
  }
  .stat-item__divider {
    width: 60px;
    height: 1px;
    margin: 4px 0;
  }
}

/* --- Offer Cards --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  backdrop-filter: blur(10px);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.offer-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.offer-card--featured {
  border-color: rgba(200, 80, 255, 0.4);
  background: rgba(200, 80, 255, 0.06);
}
.offer-card--featured:hover {
  border-color: var(--neon-bright);
  box-shadow: 0 20px 60px rgba(200,80,255,0.2);
}

.offer-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet-2), var(--neon));
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  padding: 5px 20px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px var(--neon-glow);
  white-space: nowrap;
}

.offer-card__type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-bright);
  display: block;
  margin-bottom: 10px;
}

.offer-card__name {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--white);
}

.offer-card__desc {
  font-size: 0.88rem;
  color: var(--off);
  line-height: 1.6;
}

.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-card__price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.offer-card__price-period {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off);
}

.offer-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.offer-card__features li {
  font-size: 0.88rem;
  color: var(--off);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.offer-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-bright), var(--neon));
}

/* --- Projects --- */
/* ===================================================
   Portfolio Marquee (two infinite rows)
   =================================================== */

.portfolio-marquee {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0;
  /* fade left & right edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.5) 6%,
    #000 18%,
    #000 82%,
    rgba(0,0,0,0.5) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.5) 6%,
    #000 18%,
    #000 82%,
    rgba(0,0,0,0.5) 94%,
    transparent 100%
  );
}

.portfolio-marquee__row {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.portfolio-marquee__row--left  { animation: pmLeft  90s linear infinite; }
.portfolio-marquee__row--right { animation: pmRight 90s linear infinite; }

/* Pause entire row on hover so the hovered card stays still */
.portfolio-marquee__row:hover { animation-play-state: paused; }

@keyframes pmLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes pmRight { from { transform: translateX(-50%); } to { transform: translateX(0); }    }

/* --- Portfolio card --- */
.pm-card {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0e0a2a;
}

.pm-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.55s var(--ease);
}

.pm-card:hover .pm-card__img { transform: scale(1.05); }

.pm-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px 16px;
  background: linear-gradient(to top, rgba(6,2,26,0.9) 0%, rgba(6,2,26,0.35) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.pm-card:hover .pm-card__overlay { opacity: 1; }

.pm-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3px;
}

.pm-card__cat {
  font-size: 0.7rem;
  color: var(--neon-bright);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Arrow icon top-right on hover */
.pm-card__arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.pm-card:hover .pm-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section subtitle --- */
.section__subtitle {
  font-size: 0.88rem;
  color: var(--dim);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-top: 10px;
}

/* --- Testimonials Grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(12px);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.testimonial-card:hover {
  border-color: rgba(228, 123, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(200, 80, 255, 0.1);
}

/* Header row: author left · Google logo right */
.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  display: block;
  background: linear-gradient(135deg, var(--violet-2), var(--neon));
}

.testimonial-card__author-info {
  min-width: 0;
}
.testimonial-card__author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-card__author-info span {
  font-size: 0.78rem;
  color: var(--dim);
  white-space: nowrap;
}

.testimonial-card__google {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Stars + verified badge row */
.testimonial-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card__stars {
  color: #FBBC05;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}

.testimonial-card__verified {
  display: flex;
  align-items: center;
}

/* Review text */
.testimonial-card__quote {
  font-family: var(--sans);
  font-size: 0.91rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--off);
  flex: 1;
}

/* --- Trust Logos --- */
.trust__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust__g {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
  position: relative;
  flex-shrink: 0;
}
.trust__g::after {
  content: 'G';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
}

.trust__rating-txt { text-align: left; }
.trust__stars { color: #FBBC05; letter-spacing: 0.1em; font-size: 1rem; display: block; }
.trust__score { font-weight: 600; font-size: 1rem; color: var(--white); display: block; }
.trust__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off);
  display: block;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.logo-card {
  aspect-ratio: 2 / 1;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  transition: border-color var(--t-base), background var(--t-base);
}
.logo-card img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--t-base);
}
.logo-card:hover {
  border-color: var(--line-bright);
  background: var(--card-bg-2);
}
.logo-card:hover img {
  opacity: 1;
}

/* --- CTA Block --- */
.cta-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  margin: 20px 0 24px;
}

.cta-block__text {
  font-size: 1rem;
  color: var(--off);
  margin-bottom: 40px;
  line-height: 1.75;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-base);
  gap: 16px;
}
.faq-item__question:hover { color: var(--neon-bright); }

.faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease);
  color: var(--dim);
}
.faq-item.active .faq-item__icon { transform: rotate(180deg); color: var(--neon-bright); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item__answer p {
  padding-bottom: 24px;
  font-size: 0.93rem;
  color: var(--off);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  background: #0A0530;
  color: var(--off);
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo img { height: 70px; width: auto; }

.footer__tagline {
  font-size: 0.82rem;
  margin-top: 6px;
  color: var(--dim);
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.85rem;
  color: var(--off);
  transition: color var(--t-base);
}
.footer__nav a:hover { color: var(--neon-bright); }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--off);
  transition: all var(--t-base);
}
.footer__social a:hover {
  background: var(--white);
  color: var(--deep);
  border-color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__sponsor a {
  color: var(--neon-bright);
  transition: opacity var(--t-base);
}
.footer__sponsor a:hover { opacity: 0.75; }

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-grid .offer-card:last-child {
    grid-column: 1 / -1;
    max-width: none;
    margin: 0 auto;
  }
  .stats-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats-block__counters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-pill { min-width: 200px; text-align: center; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__actions { display: none; }

  .navbar__burger { display: flex; }

  .wa-float { display: flex; }

  .navbar__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 48, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }
  .navbar__links.mobile-open a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
  }
  .navbar__actions.mobile-open {
    display: flex;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 48px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    gap: 12px;
  }

  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__social-proof { flex-wrap: wrap; justify-content: center; }

  .offers-grid { grid-template-columns: 1fr; }
  .offers-grid .offer-card { min-height: 540px; }
  .offers-grid .offer-card:last-child { grid-column: auto; max-width: none; }

  .projects-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

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

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

  .footer__inner { flex-direction: column; text-align: center; align-items: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__nav { justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .stats-block__counters { flex-direction: column; }
  .stat-pill { min-width: 0; }

  .process-row { padding: 18px 20px; gap: 16px; }
  .process-row__label { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero__badges { gap: 8px; }
  .hero__badge { font-size: 0.78rem; padding: 7px 14px; }
  .testimonial-card { padding: 22px 20px 20px; }
  .offer-card { padding: 28px 20px 24px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}
