/* ============================================
   ORXARO - Landing Page Styles
   High-converting design with premium CRO
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1d29;
  background: #fff;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Defensive: nothing should ever blow out the viewport horizontally */
img, svg, video, canvas, iframe { max-width: 100%; height: auto; }
.container, section, header, footer, main, aside { max-width: 100%; }

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

:root {
  --primary: #6d28d9;
  --primary-dark: #5b21b6;
  --primary-light: #8b5cf6;
  --accent: #f59e0b;
  --accent-2: #ef4444;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  --gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-light: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%);
  --dark: #0b1220;
  --dark-2: #1a1d29;
  --gray-1: #f9fafb;
  --gray-2: #f3f4f6;
  --gray-3: #e5e7eb;
  --gray-4: #9ca3af;
  --gray-5: #4b5563;
  --green: #10b981;
  --green-light: #d1fae5;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 8px rgba(13, 18, 32, .06);
  --shadow: 0 10px 30px rgba(13, 18, 32, .08);
  --shadow-md: 0 18px 50px rgba(13, 18, 32, .12);
  --shadow-lg: 0 30px 80px rgba(13, 18, 32, .18);
  --shadow-purple: 0 18px 40px rgba(124, 58, 237, .35);
  --radius: 14px;
  --radius-lg: 22px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ====== Headings ====== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.grad-text-light {
  background: linear-gradient(135deg, #ffd86b, #ff7eb6, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.underline-pop {
  position: relative;
  display: inline-block;
}
.underline-pop::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, rgba(245,158,11,.5), rgba(236,72,153,.4));
  z-index: -1;
  border-radius: 4px;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  font-family: inherit;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-xl { padding: 18px 28px; font-size: 1.1rem; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-purple);
  background-size: 180% 180%;
  background-position: 0% 50%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(124, 58, 237, .45);
  background-position: 100% 50%;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-3);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(124, 58, 237, .04);
}

.btn-light {
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover {
  background: #20bd5b;
  transform: translateY(-2px);
}

/* Shine animation */
.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shine 2.8s infinite;
}
@keyframes shine {
  0% { left: -100%; }
  60% { left: 200%; }
  100% { left: 200%; }
}

/* ====== Sticky phone bar (always visible top) ====== */
.phone-bar {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-size: .85rem;
  padding: 6px 16px;
  position: relative;
  z-index: 101;
  font-weight: 500;
}
.phone-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  white-space: nowrap;
  font-size: .87rem;
  transition: opacity .2s ease;
}
.pb-item:hover { opacity: .85; }
.pb-item strong { letter-spacing: .03em; font-weight: 800; }
.pb-call strong { color: #fef3c7; font-size: .95rem; }
.pb-divider { color: rgba(255,255,255,.4); font-weight: 300; }
.pb-text { opacity: .9; }

/* ====== Urgency bar ====== */
.urgency-bar {
  background: linear-gradient(90deg, #1a1d29 0%, #2d1b69 50%, #1a1d29 100%);
  color: #fff;
  font-size: .88rem;
  text-align: center;
  padding: 7px 16px;
  position: relative;
  z-index: 100;
  font-weight: 500;
}
.urgency-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-bar strong { color: #fbbf24; letter-spacing: .03em; }
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ef4444;
  display: inline-block;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}
.countdown {
  font-family: 'Plus Jakarta Sans', monospace;
  font-weight: 800;
  background: rgba(239, 68, 68, .15);
  padding: 3px 9px;
  border-radius: 6px;
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, .3);
  letter-spacing: .03em;
  min-width: 84px;
  display: inline-block;
}
.urgency-cta {
  background: var(--accent);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: .85rem;
  margin-left: 6px;
}
.urgency-cta:hover { background: #fbbf24; }

/* ====== Header ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, .7);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 1.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  letter-spacing: -.03em;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-purple);
}
.logo-dot { color: var(--accent-2); }

.nav { display: flex; gap: 26px; }
.nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-5);
  position: relative;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--dark);
  font-size: .92rem;
}
.header-phone svg { color: var(--primary); }
.header-phone:hover { color: var(--primary); }
.header-btn { padding: 10px 20px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 18px 0 60px;
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 14s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  top: -180px; left: -120px;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #fbcfe8, transparent 70%);
  bottom: -260px; right: -180px;
  animation-delay: -4s;
}
.blob-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #fde68a, transparent 70%);
  top: -120px; right: -150px;
}
.blob-4 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, #fbcfe8, transparent 70%);
  bottom: -200px; left: -150px;
  animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.06); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content { animation: slideUp .8s ease both; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .87rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.tp-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  min-width: 0;
}
.tp-item svg { color: var(--primary); flex-shrink: 0; }
.tp-item strong { font-weight: 800; color: var(--dark); }
.tp-rating .stars { color: #f59e0b; letter-spacing: .04em; font-size: .9rem; }
.tp-sep { color: var(--gray-4); font-weight: 300; flex-shrink: 0; }
.stars { color: #f59e0b; letter-spacing: .05em; }
.tp-full-only-suffix { display: none; } /* longer suffix never shown by default */

/* Mobile: ultra compact 1-line pill with icons (uses parent width, never viewport) */
@media (max-width: 768px) {
  .trust-pill {
    padding: 5px 11px;
    font-size: .72rem;
    gap: 6px;
    margin-bottom: 8px;
    max-width: 100%;            /* never wider than parent — no horizontal overflow */
    width: max-content;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .tp-item { gap: 4px; min-width: 0; }
  .tp-item svg { width: 12px; height: 12px; }
  .tp-rating .stars { font-size: .76rem; }
  .tp-full-only { display: none; }       /* hide "/5", "businesses" verbose text */
  .tp-short { display: inline; }
}
@media (max-width: 480px) {
  .trust-pill { padding: 4px 10px; font-size: .68rem; gap: 5px; }
  .tp-sep { font-size: .65rem; }
  .tp-item svg { width: 11px; height: 11px; }
  .tp-rating .stars { font-size: .7rem; letter-spacing: .02em; }
}
@media (max-width: 360px) {
  /* on the smallest phones, drop "countries" word entirely and lean on the globe icon */
  .tp-short { display: none; }
  .trust-pill { font-size: .66rem; gap: 4px; padding: 3px 9px; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-5);
  margin-bottom: 22px;
  max-width: 620px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--dark-2);
}
.hero-bullets svg {
  color: var(--green);
  background: var(--green-light);
  padding: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .6);
  padding: 10px 14px;
  border-radius: 50px;
  border: 1px solid var(--gray-3);
  backdrop-filter: blur(8px);
}
.avatars { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.avatar:first-child { margin-left: 0; }
.avatar-more {
  background: var(--dark) !important;
  font-size: .7rem;
}
.proof-text { font-size: .85rem; line-height: 1.3; }
.proof-text strong { color: var(--dark); }
.muted { color: var(--gray-4); font-size: .78rem; }

/* ====== Lead Form Card ====== */
.hero-form-wrap {
  position: relative;
  animation: slideUp 1s ease both;
}
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229, 231, 235, .7);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient);
}

/* Old ribbon kept for compatibility but hidden — replaced by form-top-strip */
.form-ribbon { display: none; }

/* New professional top strip (replaces ribbon) */
.form-top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #fef3c7, #fde68a, #fef3c7);
  background-size: 200% 100%;
  animation: stripShimmer 3s linear infinite;
  border-bottom: 1px solid rgba(245, 158, 11, .25);
  padding: 7px 14px;
  margin: -19px -22px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: #92400e;
  position: relative;
}
@media (max-width: 768px) {
  .form-top-strip {
    margin: -13px -16px 14px;
    padding: 7px 12px;
    font-size: .76rem;
  }
}
@keyframes stripShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.fts-icon { font-size: 1rem; }
.fts-text strong {
  color: #b45309;
  font-weight: 800;
  letter-spacing: .02em;
}
.fts-pulse {
  width: 7px; height: 7px;
  background: #ef4444;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.6s infinite;
}
.fts-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #ef4444;
  animation: ringPulse 1.6s ease-out infinite;
}

/* Live indicators bar (CRO) — redesigned */
.form-live-bar {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 12px;
  font-size: .78rem;
}
.fl-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  padding: 7px 10px;
  border-radius: 9px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 0;
  justify-content: center;
}
.fl-viewers {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7;
  color: #047857;
}
.fl-rating {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fcd34d;
  color: #92400e;
}
.fl-text { font-size: .78rem; }
.fl-text strong { font-weight: 800; }
.fl-viewers strong { color: #065f46; }
.fl-rating strong { color: #78350f; }
.live-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: ringPulse 1.6s ease-out infinite;
}
.fl-stars {
  color: #f59e0b;
  letter-spacing: .04em;
  font-size: .8rem;
  flex-shrink: 0;
}
.fl-muted { color: inherit; opacity: .7; font-weight: 600; font-size: .72rem; }

/* Quick bullets under form sub heading */
.form-quick-bullets {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.fqb-item {
  font-size: .74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 30px;
  white-space: nowrap;
}
.fqb-item:nth-child(1) {
  background: rgba(124,58,237,.08);
  color: var(--primary);
}
.fqb-item:nth-child(1) svg { color: #ec4899; }
.fqb-item:nth-child(2) {
  background: rgba(245,158,11,.1);
  color: #b45309;
}
.fqb-item:nth-child(2) svg { color: #f59e0b; }
.fqb-item:nth-child(3) {
  background: rgba(16,185,129,.1);
  color: #047857;
}
.fqb-item:nth-child(3) svg { color: #10b981; }
@media (max-width: 480px) {
  .form-quick-bullets { gap: 6px; }
  .fqb-item { font-size: .68rem; padding: 3px 8px; }
}

/* Work section trust row (icons in proper line) */
.work-trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.wt-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wt-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.wt-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .work-trust-row { gap: 8px; margin-top: 16px; }
  .wt-item { padding: 7px 12px; font-size: .78rem; gap: 7px; }
  .wt-icon { width: 26px; height: 26px; }
  .wt-icon svg { width: 13px; height: 13px; }
}

.form-header {
  text-align: center;
  margin-bottom: 14px;
  position: relative;
}
.badge-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.badge-50 {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  padding: 5px 14px;
  border-radius: 30px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(245,158,11,.3);
}
.badge-trust {
  display: inline-block;
  background: rgba(124,58,237,.1);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 30px;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .03em;
}
.form-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
  line-height: 1.25;
}
.form-title .plus {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.form-sub {
  color: var(--gray-5);
  font-size: .88rem;
  line-height: 1.45;
}

/* Form steps */
.form-step { display: none; animation: slideUp .35s ease both; }
.form-step.active { display: block; }

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark-2);
}
.form-label:first-child { margin-top: 0; }
.label-text { display: flex; align-items: center; gap: 6px; }
.label-hint {
  font-size: .73rem;
  color: var(--primary);
  font-weight: 700;
  background: rgba(124,58,237,.08);
  padding: 3px 9px;
  border-radius: 30px;
}
.opt { color: var(--gray-4); font-weight: 500; font-size: .8rem; }

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-3);
  border-radius: 11px;
  font-size: 1rem;
  font-family: inherit;
  transition: border .2s ease, box-shadow .2s ease;
  background: #fafbff;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}
.form-input::placeholder { color: #a8aebd; }

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-3);
  border-radius: 11px;
  background: #fafbff;
  transition: border .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.phone-input-wrap:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}
.country-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 1rem;
  border-right: 2px solid var(--gray-3);
  height: 100%;
  background: #f3f4f6;
  white-space: nowrap;
}
.flag { font-size: 1.1rem; }
.phone-input-wrap input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  letter-spacing: .03em;
}

.error-msg {
  color: var(--accent-2);
  font-size: .82rem;
  margin-top: 6px;
  min-height: 18px;
  font-weight: 500;
}

/* Spots progress bar (Scarcity CRO) */
.form-spots {
  margin-top: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #fef3ff, #fff7ed);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: 10px;
}
.spots-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  margin-bottom: 6px;
  color: var(--dark-2);
  font-weight: 600;
}
.spots-label strong {
  color: #ef4444;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.spots-bar {
  height: 8px;
  background: rgba(0,0,0,.08);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}
.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  border-radius: 30px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.spots-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.spots-hint {
  font-size: .76rem;
  color: var(--gray-5);
  font-weight: 500;
  text-align: center;
}
.spots-hint strong { color: #ef4444; font-weight: 800; }

/* Bonus stack (Value CRO) */
.form-bonuses {
  margin-top: 10px;
  padding: 12px;
  background: linear-gradient(135deg, #1a1d29, #2d1b69);
  border-radius: 12px;
  color: #fff;
}
.bonus-title {
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 6px;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.form-bonuses ul {
  margin-bottom: 8px;
}
.form-bonuses ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.95);
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.form-bonuses ul li:last-child { border: none; }
.bcheck {
  width: 18px; height: 18px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  flex-shrink: 0;
}
.form-bonuses ul li em {
  margin-left: auto;
  font-style: normal;
  color: #fbbf24;
  font-weight: 700;
  font-size: .78rem;
}
.bonus-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  border: 1px dashed rgba(251,191,36,.4);
  margin-top: 6px;
}
.bonus-total span { font-size: .82rem; color: rgba(255,255,255,.9); font-weight: 600; }
.bonus-total strong {
  color: #fbbf24;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
}

/* Money-back guarantee badge (Risk reversal CRO) */
.form-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  padding: 8px 11px;
  margin-top: 10px;
}
.g-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.form-guarantee strong {
  display: block;
  font-size: .85rem;
  color: #065f46;
  margin-bottom: 1px;
}
.form-guarantee span {
  font-size: .75rem;
  color: #047857;
  display: block;
  line-height: 1.4;
}

/* Recent winner ticker (Social Proof CRO) */
.form-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 8px 11px;
  background: #fafbff;
  border: 1px solid var(--gray-3);
  border-radius: 10px;
  animation: tickerSlide .5s ease;
}
@keyframes tickerSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ticker-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s infinite;
  box-shadow: 0 0 0 0 rgba(16,185,129,.5);
}
.ticker-text { line-height: 1.3; flex: 1; min-width: 0; }
.ticker-text strong {
  display: block;
  font-size: .82rem;
  color: var(--dark);
}
.ticker-text span {
  font-size: .73rem;
  color: var(--gray-5);
}

.form-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--gray-5);
  font-weight: 500;
}
.trust-item svg { color: var(--green); }

/* Step 2 success notice */
.step2-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-light);
  border: 1px solid #6ee7b7;
  padding: 12px 14px;
  border-radius: 11px;
  margin-bottom: 18px;
}
.success-icon {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step2-success strong {
  display: block;
  color: #065f46;
  font-size: .92rem;
}
.step2-success span { font-size: .82rem; color: #047857; }

.btn-skip {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding: 8px;
  color: var(--gray-4);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: underline;
}
.btn-skip:hover { color: var(--primary); }

/* Success step */
.success-step { text-align: center; padding: 8px 0; }
.success-anim { margin: 0 auto 14px; }
.circle-anim {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircle 1s ease forwards;
}
.check-anim {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck .5s .8s ease forwards;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.success-step h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--green);
}
.success-step p {
  color: var(--gray-5);
  margin-bottom: 18px;
  font-size: .95rem;
}
.bonuses-unlocked {
  background: var(--gradient-light);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  text-align: left;
  border: 1px solid #fbbf24;
}
.bonuses-unlocked h4 {
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.bonuses-unlocked ul li {
  padding: 4px 0;
  font-size: .87rem;
  color: var(--dark-2);
  font-weight: 500;
}

/* Floating note */
.floating-note {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: bounce 2s ease infinite;
}
.floating-note .dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ====== Logo Strip ====== */
.logo-strip {
  padding: 50px 0 30px;
  background: #fff;
  border-bottom: 1px solid var(--gray-2);
}
.logo-strip-title {
  text-align: center;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-4);
  margin-bottom: 22px;
  font-weight: 700;
}
.marquee {
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll 38s linear infinite;
  width: fit-content;
}
.marquee-track:hover { animation-play-state: paused; }
img.logo-item {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  filter: opacity(.85);
  transition: filter .3s ease, transform .3s ease;
  object-fit: contain;
}
img.logo-item:hover {
  filter: opacity(1) drop-shadow(0 4px 10px rgba(0,0,0,.15));
  transform: scale(1.15);
}
/* Text-based logo mark fallback (always renders, never broken) */
.logo-text-mark {
  display: inline-flex;
  align-items: center;
  height: 36px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -.04em;
  line-height: 1;
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .3s ease, transform .3s ease;
}
.logo-text-mark:hover {
  opacity: 1;
  transform: scale(1.15);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== Section heads ====== */
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(124,58,237,.1);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.kicker.light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.section-sub {
  color: var(--gray-5);
  font-size: 1.05rem;
  margin-top: 14px;
  line-height: 1.7;
}

/* ====== Problem ====== */
.problem {
  padding: 90px 0;
  background: #fafbff;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.problem-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-2);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.problem-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  border-radius: 4px 0 0 0;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
}
.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.problem-card p {
  color: var(--gray-5);
  font-size: .92rem;
  line-height: 1.65;
}

/* ====== Services ====== */
.services {
  padding: 90px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.service-card.featured {
  background: linear-gradient(135deg, #fff 0%, #fef3ff 100%);
  border-color: var(--primary-light);
}
.service-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--gradient);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-purple);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-card > p {
  color: var(--gray-5);
  font-size: .92rem;
  margin-bottom: 16px;
  line-height: 1.65;
}
.service-features {
  margin-bottom: 18px;
  border-top: 1px dashed var(--gray-3);
  padding-top: 14px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--dark-2);
  line-height: 1.4;
}
.sf-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(16,185,129,.3);
}
.service-card.featured .sf-check {
  background: var(--gradient);
  box-shadow: 0 3px 8px rgba(124,58,237,.35);
}
/* High-CTR Service CTA button */
.btn-service-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #fafbff, #f3eaff);
  color: var(--primary);
  border: 2px solid rgba(124,58,237,.18);
  border-radius: 11px;
  font-weight: 800;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
  margin-top: auto;
}
.btn-service-cta:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(124,58,237,.35);
}
.btn-service-cta:hover svg { transform: translateX(3px); }
.btn-service-cta svg { transition: transform .25s ease; }
.service-card { display: flex; flex-direction: column; }

/* ====== Big Offer ====== */
.big-offer {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1d29 0%, #2d1b69 60%, #1a1d29 100%);
  position: relative;
  overflow: hidden;
}
.big-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,158,11,.15), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(236,72,153,.15), transparent 50%);
  pointer-events: none;
}
.offer-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.offer-left { color: #fff; position: relative; }
/* Old wobbling stamp removed — replaced by clean offer-pills */
.offer-stamp { display: none; }

/* New professional offer pills */
.offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.op-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.op-pill-discount {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1d29;
  box-shadow: 0 6px 18px rgba(245,158,11,.35);
}
.op-pill-time {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.offer-left h2 { color: #fff; }
.offer-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin: 16px 0 26px;
  line-height: 1.7;
}

.offer-includes h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.offer-includes ul { margin-bottom: 22px; }
.offer-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: .92rem;
  color: rgba(255,255,255,.92);
  border-bottom: 1px dashed rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.offer-includes .check {
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.offer-includes .value {
  margin-left: auto;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 700;
}

.value-stack {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 22px;
}
.value-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.strike { text-decoration: line-through; color: rgba(255,255,255,.5); }
.price-now {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.value-row.save {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
  margin-top: 6px;
  color: var(--green);
  font-weight: 800;
}
.value-row.save span:last-child { font-size: 1.2rem; }

.offer-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.g-item {
  text-align: center;
  padding: 14px 10px;
  background: rgba(255,255,255,.04);
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.1);
}
.g-item strong {
  display: block;
  font-size: .85rem;
  color: #fff;
  margin-bottom: 4px;
}
.g-item span { font-size: .75rem; color: rgba(255,255,255,.65); }

/* Ticket */
.offer-right { display: flex; justify-content: center; }
.ticket {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: rotate(2deg);
  transition: transform .3s ease;
}
.ticket:hover { transform: rotate(0); }
.ticket-top {
  background: var(--gradient);
  padding: 28px 24px;
  color: #fff;
  text-align: center;
}
.ticket-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .9;
  margin-bottom: 8px;
}
.ticket-discount {
  font-size: 3.4rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.ticket-product { font-size: .92rem; font-weight: 600; opacity: .95; }

.ticket-divider {
  display: flex;
  align-items: center;
  height: 26px;
  position: relative;
  background: var(--gradient);
}
.hole {
  width: 22px; height: 22px;
  background: var(--dark);
  border-radius: 50%;
  position: absolute;
}
.hole.left { left: -11px; }
.hole.right { right: -11px; }
.dashed {
  flex: 1;
  border-top: 2px dashed rgba(255,255,255,.45);
  margin: 0 16px;
}

.ticket-bottom {
  padding: 22px 24px 24px;
}
.ticket-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: .87rem;
  border-bottom: 1px dashed var(--gray-3);
}
.ticket-row:last-of-type { border: none; margin-bottom: 14px; }
.ticket-row span { color: var(--gray-5); }
.ticket-row strong { color: var(--dark); font-weight: 800; }

/* ====== Work / Portfolio ====== */
.work {
  padding: 90px 0;
  background: #fafbff;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.work-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-2);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.work-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16,185,129,.95);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(16,185,129,.3);
  backdrop-filter: blur(6px);
}
.work-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-2);
}
.work-image-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.work-card:hover .work-image-real {
  transform: scale(1.07);
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,18,32,0) 40%, rgba(13,18,32,.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-view {
  background: #fff;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow);
}
.work-view:hover { background: var(--accent); }

.work-info { padding: 22px 22px 20px; }
.work-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.work-tag {
  display: inline-block;
  background: var(--gradient-light);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.work-domain {
  font-size: .78rem;
  color: var(--gray-4);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', monospace;
}
.work-info h3 { margin-bottom: 4px; }
.work-info > p {
  color: var(--gray-5);
  font-size: .87rem;
  margin-bottom: 16px;
}
.work-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px dashed var(--gray-3);
  padding-top: 14px;
}
.work-stats div { text-align: center; }
.work-stats strong {
  display: block;
  font-size: 1.05rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
}
.work-stats span {
  font-size: .72rem;
  color: var(--gray-4);
  font-weight: 600;
}

.work-cta {
  text-align: center;
  margin-top: 40px;
}

/* ====== Stats ====== */
.stats {
  padding: 60px 0;
  background: var(--dark);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-num span { color: #fbbf24; -webkit-text-fill-color: #fbbf24; }
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  letter-spacing: .04em;
}

/* ====== Process ====== */
.process {
  padding: 90px 0;
  background: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  position: relative;
}
.process-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-2);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.step-num {
  font-size: 2.6rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(124,58,237,.15);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.process-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.process-card p {
  color: var(--gray-5);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.step-time {
  display: inline-block;
  background: var(--gradient-light);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}

/* ====== Testimonials ====== */
.testimonials {
  padding: 90px 0;
  background: #fafbff;
}
/* Review aggregate platforms strip */
.review-aggregate {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--gray-2);
  box-shadow: var(--shadow-sm);
}
.ra-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fafbff;
  border: 1px solid var(--gray-2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ra-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ra-card img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.ra-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: .9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.ra-icon svg { display: block; }
.ra-card strong {
  display: block;
  font-size: .82rem;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: .02em;
}
.ra-card span {
  font-size: .72rem;
  color: var(--gray-5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.t-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.t-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: .08em;
}
.t-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-1);
  padding: 4px 10px 4px 4px;
  border-radius: 30px;
  font-size: .72rem;
  color: var(--gray-5);
  font-weight: 600;
}
.t-source img { width: 14px; height: 14px; }
.t-src-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}
.testimonial-card > p {
  color: var(--dark-2);
  font-size: .94rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed var(--gray-3);
  padding-top: 14px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.t-author-info { line-height: 1.3; min-width: 0; flex: 1; }
.t-author strong {
  display: block;
  font-size: .92rem;
  color: var(--dark);
}
.t-author .verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #1d9bf0;
  color: #fff;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 800;
  margin-left: 4px;
  vertical-align: middle;
}
.t-author span {
  font-size: .78rem;
  color: var(--gray-5);
}
.t-author small {
  display: block;
  font-size: .7rem;
  color: var(--gray-4);
  margin-top: 2px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 14px 22px;
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}
.trust-card strong {
  display: block;
  font-size: .95rem;
  color: var(--dark);
}
.trust-card span {
  font-size: .8rem;
  color: var(--gray-5);
  margin-top: 2px;
  display: block;
}

/* ====== Why Us ====== */
.why-us {
  padding: 90px 0;
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content > p {
  color: var(--gray-5);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 16px 0 28px;
}
.why-list { margin-bottom: 28px; }
.why-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--gray-3);
}
.why-item:last-child { border: none; }
.why-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--gradient-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-item p { color: var(--gray-5); font-size: .9rem; line-height: 1.6; }

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.comp-col {
  padding: 26px 22px;
  border-radius: var(--radius);
  position: relative;
}
.comp-col.bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.comp-col.good {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
  border: 2px solid var(--green);
  box-shadow: 0 18px 40px rgba(16,185,129,.15);
}
.comp-col h4 { font-size: 1.05rem; margin-bottom: 14px; }
.comp-col.bad h4 { color: #991b1b; }
.comp-col.good h4 { color: #047857; }
.comp-col ul li {
  padding: 7px 0;
  font-size: .87rem;
  color: var(--dark-2);
  border-bottom: 1px dashed rgba(0,0,0,.06);
}
.comp-col ul li:last-child { border: none; }
.comp-tag {
  position: absolute;
  top: -12px; right: 12px;
  background: var(--green);
  color: #fff;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
}

/* ====== Pricing ====== */
.pricing {
  padding: 90px 0;
  background: #fafbff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}
.price-card {
  background: #fff;
  padding: 30px 26px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-2);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.price-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fef3ff 0%, #fff 60%);
  transform: scale(1.04);
  box-shadow: 0 24px 50px rgba(124,58,237,.18);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.popular-tag {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(124,58,237,.4);
}
.pc-header { margin-bottom: 12px; }
.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-weight: 800;
}
.price-desc {
  color: var(--gray-5);
  font-size: .85rem;
  line-height: 1.55;
  min-height: 42px;
}

.pc-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.ps-badge {
  display: inline-block;
  background: rgba(16,185,129,.1);
  color: #047857;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.ps-badge-hot {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}
.ps-customers {
  font-size: .73rem;
  color: var(--gray-5);
  font-weight: 600;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.strike-price {
  text-decoration: line-through;
  color: var(--gray-4);
  font-size: 1.05rem;
  font-weight: 600;
}
.price .now {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.price-once {
  font-size: .82rem;
  color: var(--gray-4);
  font-weight: 600;
}

.pc-tagline {
  display: inline-block;
  background: var(--gray-1);
  border-left: 3px solid var(--primary);
  padding: 7px 12px;
  border-radius: 0 8px 8px 0;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 18px;
  width: 100%;
}
.pc-tagline-hot {
  background: linear-gradient(135deg, #fef3ff, #fde8ff);
  border-left-color: #ec4899;
  color: #831843;
}

.price-features {
  margin-bottom: 22px;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-3);
  flex-grow: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--dark-2);
  line-height: 1.5;
}
.pf-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #d1fae5;
  color: #047857;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.pf-check-hot {
  background: var(--gradient);
  color: #fff;
}
.pf-includes {
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 8px !important;
  border-bottom: 1px dashed var(--gray-3);
  margin-bottom: 4px;
}

/* Pricing CTA buttons */
.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
  margin-bottom: 12px;
}
.btn-pricing svg { transition: transform .25s ease; }
.btn-pricing:hover svg { transform: translateX(3px); }
.btn-pricing-outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-pricing-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-purple);
  transform: translateY(-2px);
}
.btn-pricing-primary {
  background: var(--gradient);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: var(--shadow-purple);
  background-size: 180% 180%;
  background-position: 0% 50%;
}
.btn-pricing-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 24px 50px rgba(124,58,237,.45);
}
.pc-guarantee {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-5);
  font-weight: 500;
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  background: linear-gradient(135deg, #fef3ff, #fff);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px dashed var(--primary);
  font-size: .95rem;
  color: var(--gray-5);
}
.pricing-note a {
  color: var(--primary);
  font-weight: 700;
  margin-left: 6px;
}
.pricing-note a:hover { text-decoration: underline; }

/* ====== FAQ ====== */
.faq {
  padding: 90px 0;
  background: #fff;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fafbff;
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border .25s ease, background .25s ease;
}
.faq-item[open] {
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--dark);
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform .25s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 12px;
  color: var(--gray-5);
  font-size: .92rem;
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-3);
}

/* ====== Final CTA ====== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1d29 0%, #5b21b6 100%);
  position: relative;
  overflow: hidden;
}
.final-bg { position: absolute; inset: 0; }
.final-card {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.final-card h2 { color: #fff; margin: 14px 0 16px; }
.final-card > p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.final-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  background: rgba(255,255,255,.08);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
}
.final-stats div { text-align: center; }
.final-stats strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}
.final-stats span {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

.final-note {
  margin-top: 16px;
  font-size: .87rem;
  color: rgba(255,255,255,.6);
}

/* ====== Footer ====== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col .logo { color: #fff; margin-bottom: 14px; }
.footer-col > p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col ul li { padding: 5px 0; font-size: .9rem; }
.footer-col ul li a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: background .25s ease, transform .25s ease;
}
.socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: #fff; }

/* ====== Sticky Bottom (mobile) ====== */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-2);
  padding: 10px 14px;
  display: none;
  gap: 8px;
  z-index: 80;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.stick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
}
.stick-call {
  background: var(--gray-2);
  color: var(--dark);
  flex: .6;
}
.stick-wa {
  background: var(--whatsapp);
  color: #fff;
  flex: .8;
}
.stick-cta {
  background: var(--gradient);
  color: #fff;
  flex: 1.4;
  box-shadow: var(--shadow-purple);
}

/* ====== Floating WhatsApp ====== */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 70;
  box-shadow: 0 14px 40px rgba(37, 211, 102, .5);
  transition: transform .25s ease;
}
.float-wa:hover { transform: scale(1.08); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--whatsapp);
  animation: ringPulse 1.6s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ====== Live Notification ====== */
.live-notify {
  position: fixed;
  bottom: 26px;
  left: 26px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-2);
  max-width: 320px;
  z-index: 75;
  transform: translateY(150%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.live-notify.show {
  transform: translateY(0);
  opacity: 1;
}
.ln-avatar {
  width: 40px; height: 40px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
}
.ln-text { line-height: 1.3; }
.ln-text strong {
  display: block;
  font-size: .85rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.ln-text span {
  display: block;
  font-size: .8rem;
  color: var(--gray-5);
}
.ln-text small {
  font-size: .72rem;
  color: var(--gray-4);
  display: block;
  margin-top: 4px;
}
.ln-close {
  position: absolute;
  top: 6px; right: 8px;
  font-size: 1.2rem;
  color: var(--gray-4);
  line-height: 1;
}
.ln-close:hover { color: var(--dark); }

/* ====== Exit Intent Popup ====== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,18,32,.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.exit-overlay.show {
  display: flex;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.exit-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 740px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: popUp .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: var(--shadow-lg);
}
@keyframes popUp {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  font-size: 1.5rem;
  color: var(--dark);
  z-index: 2;
  transition: background .25s ease;
}
.exit-close:hover { background: rgba(0,0,0,.15); }

.exit-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}
.exit-left {
  padding: 36px 30px;
}
.exit-tag {
  display: inline-block;
  background: var(--accent-2);
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.exit-left h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.exit-left > p {
  color: var(--gray-5);
  font-size: .95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.exit-bonus { margin-bottom: 18px; }
.exit-bonus li {
  padding: 5px 0;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark-2);
}
.exit-form .phone-input-wrap { margin-bottom: 12px; }
.exit-mini {
  text-align: center;
  margin-top: 12px;
  font-size: .85rem;
  color: var(--gray-5);
}
.exit-mini a { color: var(--primary); font-weight: 700; }

.exit-right {
  background: var(--gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: #fff;
  position: relative;
}
.exit-discount {
  text-align: center;
  line-height: 1;
}
.exit-discount span {
  display: block;
  font-size: .85rem;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
  opacity: .9;
}
.exit-discount strong {
  font-size: 5rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: block;
  margin: 8px 0;
  text-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.exit-stamp {
  margin-top: 24px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  /* MOBILE HERO: trust + headline + FORM ALL above fold; rest below */
  .hero { padding: 6px 0 30px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    display: flex;
    flex-direction: column;
  }
  .hero-content {
    text-align: center;
    display: contents;
  }
  /* Above fold: trust(1) > title(2) > FORM(3); below fold: sub(4) > bullets(5) > CTAs(6) > proof(7) */
  .hero-content > .trust-pill { order: 1; margin: 0 auto 4px; font-size: .74rem; padding: 4px 10px; }
  .hero-content > .hero-title {
    order: 2;
    margin-bottom: 6px;
    font-size: clamp(1.35rem, 4.8vw, 1.9rem);
    line-height: 1.2;
  }
  .hero-form-wrap { order: 3; margin-bottom: 6px; }
  .hero-content > .hero-sub {
    order: 4;
    margin: 12px auto 12px;
    font-size: .9rem;
    max-width: 600px;
  }
  .hero-content > .hero-bullets {
    order: 5;
    margin: 0 auto 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
    max-width: 380px;
  }
  .hero-content > .hero-bullets li { font-size: .85rem; }
  .hero-content > .hero-cta-row { order: 6; justify-content: center; margin: 0 0 14px; }
  .hero-content > .hero-proof { order: 7; margin: 0 auto; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-card { grid-template-columns: 1fr; gap: 40px; }
  .offer-stamp { right: 10px; top: -20px; width: 80px; height: 80px; }
  .offer-stamp span:first-child { font-size: 1.4rem; }

  .nav { display: none; }
  .header-cta .header-phone { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .urgency-bar { font-size: .72rem; padding: 4px 12px; }
  .urgency-cta { display: none; }
  .header-inner { height: 48px; }
  .logo-mark { width: 28px; height: 28px; font-size: .92rem; }
  .logo-text { font-size: 1.05rem; }
  .header-btn { padding: 7px 12px; font-size: .8rem; }

  .hero { padding: 4px 0 28px; }
  .hero-bullets { grid-template-columns: 1fr; text-align: left; gap: 6px 0; }
  .hero-bullets li { font-size: .88rem; }

  /* COMPACT FORM for 1st-fold visibility on mobile */
  .form-card { padding: 14px 14px 14px; border-radius: 14px; }
  .form-top-strip { display: none; } /* hide on mobile to save vertical space */
  .form-title { font-size: 1.05rem; line-height: 1.25; margin-bottom: 4px; }
  .form-sub { font-size: .78rem; line-height: 1.4; }
  .form-sub br { display: none; }
  .form-ribbon { display: none; }
  .form-header { margin-bottom: 10px; }
  .badge-row { margin-bottom: 8px; }
  .badge-50 { font-size: .68rem; padding: 3px 10px; }
  .badge-trust { font-size: .66rem; padding: 3px 9px; }
  .form-live-bar { gap: 6px; margin-bottom: 10px; }
  .fl-item { padding: 6px 8px; font-size: .68rem; gap: 5px; }
  .fl-text { font-size: .68rem; }
  .fl-stars { font-size: .7rem; }
  .form-quick-bullets { gap: 8px; margin-top: 6px; }
  .form-quick-bullets span { font-size: .68rem; }
  .form-label { font-size: .8rem; margin-bottom: 5px; margin-top: 8px; }
  .label-hint { font-size: .65rem; padding: 2px 7px; }
  .phone-input-wrap input { padding: 11px 14px; font-size: .95rem; }
  .country-code { padding: 0 9px; font-size: .88rem; }
  .btn-xl { padding: 13px 18px; font-size: .98rem; }
  /* Below-fold form items (still important, just compact) */
  .form-trust { gap: 12px; margin-top: 10px; }
  .trust-item { font-size: .72rem; }
  .form-spots { padding: 9px 11px; margin-top: 11px; }
  .spots-label { font-size: .74rem; }
  .spots-hint { font-size: .7rem; }
  .form-bonuses { padding: 11px; margin-top: 10px; }
  .bonus-title { font-size: .82rem; }
  .form-bonuses ul li { font-size: .74rem; padding: 3px 0; }
  .form-bonuses ul li em { font-size: .68rem; }
  .bonus-total span { font-size: .76rem; }
  .bonus-total strong { font-size: .98rem; }
  .form-guarantee { padding: 8px 10px; margin-top: 9px; }
  .g-icon { font-size: 1.2rem; }
  .form-guarantee strong { font-size: .76rem; }
  .form-guarantee span { font-size: .68rem; }
  .form-ticker { padding: 8px 10px; margin-top: 9px; }
  .ticker-text strong { font-size: .74rem; }
  .ticker-text span { font-size: .66rem; }

  .hero-cta-row .btn { width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-bottom { display: flex; }
  .float-wa { bottom: 86px; right: 16px; width: 52px; height: 52px; }
  .live-notify { left: 12px; right: 12px; bottom: 86px; max-width: none; }

  .exit-grid { grid-template-columns: 1fr; }
  .exit-right { order: -1; padding: 22px; }
  .exit-discount strong { font-size: 3.6rem; }
  .exit-left { padding: 26px 22px; }
  .exit-left h2 { font-size: 1.4rem; }

  .offer-includes li { font-size: .85rem; }
  .offer-includes .value { font-size: .75rem; }

  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }

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

  .header-btn { padding: 9px 14px; font-size: .85rem; }
  .logo { font-size: 1.2rem; }
  .logo-mark { width: 32px; height: 32px; font-size: 1rem; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .urgency-inner { font-size: .75rem; }
  .countdown { padding: 2px 6px; min-width: 70px; }

  .footer { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .urgency-inner strong { display: none; }
  .price .now { font-size: 2rem; }
  .ticket-discount { font-size: 2.6rem; }
  .container { padding: 0 16px; }
}

/* mobile menu opened */
.nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0; right: 0;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid var(--gray-2);
  box-shadow: var(--shadow);
  gap: 16px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ====== Footer Badges & Contact (replaces non-working socials) ====== */
.footer-badges {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.fb-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 10px 14px;
  border-radius: 10px;
  flex: 1;
}
.fb-item strong {
  display: block;
  color: #fbbf24;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}
.fb-item span {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
  display: block;
}
.footer-contact li { padding: 6px 0; }
.footer-contact li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.footer-contact li a svg { color: #10b981; flex-shrink: 0; }

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-meta a:hover { color: #fff; }
.dot-sep { color: rgba(255,255,255,.3); }

/* ====== LEFT-SIDE SCROLL POPUP ====== */
.left-popup {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(calc(-100% - 30px));
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 60px rgba(13,18,32,.24);
  border: 1px solid rgba(124,58,237,.15);
  z-index: 60;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  opacity: 0;
}
.left-popup::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  border-radius: 16px 16px 0 0;
}
.left-popup.show {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.lp-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-2);
  color: var(--gray-5);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.lp-close:hover { background: var(--gray-3); color: var(--dark); }

.lp-head { margin-bottom: 14px; }
.lp-tag {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(245,158,11,.25);
}
.lp-head h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  line-height: 1.25;
}
.lp-head p {
  font-size: .82rem;
  color: var(--gray-5);
  line-height: 1.55;
}
.lp-form .phone-input-wrap { margin-bottom: 6px; }
.lp-form .phone-input-wrap input { padding: 12px 14px; font-size: .95rem; }
.lp-form .country-code { padding: 0 10px; font-size: .9rem; }
.lp-form .btn { padding: 12px 18px; font-size: .92rem; }
.lp-error {
  color: var(--accent-2);
  font-size: .76rem;
  min-height: 16px;
  margin-bottom: 6px;
  font-weight: 500;
}
.lp-trust {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--gray-3);
}
.lp-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  color: var(--gray-5);
  font-weight: 600;
}
.lp-trust span svg { color: var(--green); }

/* Minimized tab — moved up to 38% so it doesn't sit too low */
.left-tab {
  position: fixed;
  left: 0;
  top: 38%;
  transform: translateY(-50%) translateX(-100%);
  background: var(--gradient);
  color: #fff;
  padding: 14px 10px;
  border-radius: 0 12px 12px 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .03em;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 4px 0 14px rgba(124,58,237,.35);
  transition: transform .35s ease, padding .25s ease;
  writing-mode: horizontal-tb;
  animation: tabPulse 2.8s ease-in-out infinite;
}
@keyframes tabPulse {
  0%, 100% { box-shadow: 4px 0 14px rgba(124,58,237,.35); }
  50% { box-shadow: 4px 0 24px rgba(236,72,153,.55); }
}
.left-tab.show { transform: translateY(-50%) translateX(0); }
.left-tab:hover {
  padding-left: 14px;
  padding-right: 14px;
  animation-play-state: paused;
}
.left-tab svg { margin-bottom: 2px; }
.left-popup {
  top: 42%;
}

/* Left popup mobile: shows as bottom-sheet style */
@media (max-width: 768px) {
  .left-popup {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 80px;
    top: auto;
    transform: translateY(calc(100% + 100px));
    padding: 18px 18px 14px;
  }
  .left-popup.show {
    transform: translateY(0);
  }
  .left-tab {
    top: auto;
    bottom: 150px;
    padding: 10px 8px;
    font-size: .68rem;
    border-radius: 0 10px 10px 0;
  }
  .left-tab.show { transform: translateX(0); }
}

/* Mobile-specific: stack phone bar items */
@media (max-width: 768px) {
  .phone-bar { padding: 7px 12px; font-size: .78rem; }
  .phone-bar-inner { gap: 8px; }
  .pb-divider, .pb-text { display: none; }
  .pb-item { font-size: .8rem; }
  .pb-call strong { font-size: .85rem; }
}

@media (max-width: 480px) {
  .phone-bar-inner { gap: 6px; }
  .pb-call svg, .pb-wa svg { width: 12px; height: 12px; }
  .pb-call span:not(strong) { display: none; }
}

/* ====== Final Overlap Fixes ====== */

/* Hide live notification when left popup is showing (prevent overlap) */
.left-popup.show ~ .live-notify {
  display: none !important;
}

/* Avoid floating WhatsApp overlap with sticky bottom on mobile */
@media (max-width: 768px) {
  .float-wa {
    bottom: 76px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
  .float-wa svg { width: 26px; height: 26px; }
  .live-notify {
    bottom: 76px;
    left: 8px;
    right: 8px;
    max-width: none;
    padding: 12px 14px;
  }
  .ln-text strong { font-size: .8rem; }
  .ln-text span { font-size: .75rem; }
}

/* Fix offer-stamp on tablet — was overlapping h2 */
@media (max-width: 1024px) and (min-width: 769px) {
  .offer-stamp {
    top: -14px;
    right: 24px;
    width: 80px;
    height: 80px;
  }
  .offer-stamp span:first-child { font-size: 1.5rem; }
  .offer-left h2 { padding-right: 100px; }
}

/* Ensure header doesn't get squished on smaller laptops */
@media (max-width: 1100px) and (min-width: 1025px) {
  .nav { gap: 18px; }
  .header-phone { font-size: .85rem; }
}

/* Form ribbon hide on smaller screens to prevent overlap */
@media (max-width: 1024px) {
  .form-ribbon { display: none; }
}

/* Hero form spacing on tablet */
@media (max-width: 1024px) {
  .hero-form-wrap { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* Ticket positioning safety on tablet */
@media (max-width: 768px) {
  .ticket { transform: rotate(0); margin-top: 20px; }
  .offer-stamp {
    top: -10px;
    right: 10px;
    width: 70px;
    height: 70px;
    border-width: 3px;
  }
  .offer-stamp span:first-child { font-size: 1.3rem; }
  .offer-stamp span:last-child { font-size: .7rem; }
  .offer-left h2 { padding-right: 80px; }
}

/* Marquee mobile adjustments */
@media (max-width: 768px) {
  .marquee-track { gap: 36px; }
  img.logo-item { height: 26px; }
  .logo-strip-title { font-size: .75rem; }
}

/* Work card hover overlay - always visible on mobile (no hover) */
@media (max-width: 768px) {
  .work-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(13,18,32,0) 60%, rgba(13,18,32,.7) 100%);
  }
}

/* FAQ summary wrap on small screens */
@media (max-width: 480px) {
  .faq-item summary { font-size: .92rem; }
  .faq-item { padding: 14px 18px; }
}

/* Hide mobile-only sticky bottom on left popup show on mobile to prevent crowding */
@media (max-width: 768px) {
  body.left-popup-open .sticky-bottom {
    transform: translateY(100%);
    transition: transform .3s ease;
  }
}

/* Body scroll-padding so sticky elements don't cover anchored sections */
html {
  scroll-padding-top: 140px;
}
@media (max-width: 768px) {
  html { scroll-padding-top: 120px; }
}

/* Ensure footer-bottom wraps cleanly on small screens */
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-meta { justify-content: center; }
}

/* Avoid scrollbar from horizontal overflow */
body { overflow-x: hidden; }

/* Form ribbon clip safety */
.form-card { isolation: isolate; }

/* Container max width safety on very large screens */
@media (min-width: 1400px) {
  .container { max-width: 1240px; }
}

/* ====== Mobile overlap & overflow fixes ====== */
@media (max-width: 768px) {
  /* "3 slots left at this price" — switch from absolute to inline so it doesn't overlap content below the form */
  .floating-note {
    position: static;
    transform: none;
    margin: 14px auto 4px;
    bottom: auto;
    left: auto;
    animation: none;
    font-size: .78rem;
    padding: 8px 14px;
    display: inline-flex;
    width: fit-content;
  }
  /* Center the floating note container on mobile */
  .hero-form-wrap {
    text-align: center;
  }

  /* Form live bar — keep both chips readable on small screens */
  .form-live-bar {
    flex-wrap: wrap;
    gap: 6px;
  }
  .fl-item {
    flex: 1 1 100%;
    min-width: 0;
    padding: 6px 10px;
    font-size: .74rem;
  }
  .fl-text { font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
}

@media (max-width: 480px) {
  /* Even tighter — drop the "· 15K+ reviews" suffix on phones < 480px */
  .fl-muted { display: none; }
  .fl-item { font-size: .7rem; padding: 5px 9px; }
  .fl-stars { font-size: .72rem; }
  .floating-note { font-size: .74rem; padding: 7px 12px; }
}

/* General: prevent any element from overflowing on small screens */
@media (max-width: 768px) {
  /* Force every key container to fit inside its parent — no exceptions */
  .hero,
  .hero-grid,
  .hero-content,
  .hero-form-wrap,
  .form-card,
  .form-step,
  .form-header,
  .form-live-bar,
  .form-bonuses,
  .form-spots,
  .form-guarantee,
  .form-ticker,
  .phone-input-wrap,
  .lead-form,
  .container {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-form-wrap { margin: 0 auto !important; }

  /* Center the form-card content on mobile (prevents flex column stretching weirdly) */
  .hero-grid > * { align-self: stretch; }

  /* Long-text safety on every text container in the hero */
  .hero-title, .hero-sub, .form-title, .form-sub,
  .form-bonuses ul li, .form-spots, .form-guarantee strong, .form-guarantee span,
  .ticker-text strong, .ticker-text span, .form-quick-bullets {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-width: 0;
  }

  /* Bonuses: items wrap, value badge stays right-aligned */
  .form-bonuses ul li {
    flex-wrap: wrap;
    gap: 6px;
  }
  .form-bonuses ul li em {
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Phone input wrap — never overflow the form */
  .phone-input-wrap {
    width: 100%;
    overflow: hidden;
  }
  .phone-input-wrap input {
    min-width: 0;     /* lets the flex:1 child actually shrink */
    width: 100%;
  }

  /* Buttons in form must shrink on tiny screens */
  .btn-block, .btn-xl { width: 100% !important; max-width: 100%; }
}

/* Last-resort: nothing inside the hero is allowed to be wider than viewport */
.hero, .hero-grid { overflow-x: hidden; }
