html {
  scroll-behavior: smooth;
}

:root {
  --primary: #ff5722;
  --primary-dark: #e64a19;
  --primary-ink: #9a3412;
  --primary-button: #c2410c;
  --primary-button-hover: #9a3412;
  --primary-light: #fff3f0;
  --accent: #ffb300;
  --accent2: #4caf50;
  --blue: #1565c0;
  --blue-light: #e3f2fd;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #2c2c2c;
  --text2: #5a5a5a;
  --border: #e8e8e8;
  --white: #ffffff;
  --bg: #ffffff;
  --card: #ffffff;
  --surface-soft: #ffffff;
  --surface-muted: #ffffff;
  --muted-3: #a8a8a8;
  --page-light-section: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow2: 0 8px 40px rgba(255, 87, 34, 0.15);
  --nav-bg: #ffffff;
  --footer-bg: #ffffff;
  --r: 16px;
  --r2: 24px;
  --font-head: "Baloo 2", sans-serif;
  --font-body: "Noto Sans", sans-serif;
}

body.dark-mode {
  --bg: #0f172a;
  --card: #1e293b;
  --white: #1e293b;
  --text: #f8fafc;
  --text2: #94a3b8;
  --border: rgba(255, 255, 255, 0.06);
  --surface-soft: #162133;
  --surface-muted: #111827;
  --muted-3: #64748b;
  --page-dark-section: #162133;
  --primary-light: rgba(255, 87, 34, 0.1);
  --primary-ink: #ffb08f;
  --primary-button: #ea580c;
  --primary-button-hover: #c2410c;
  --blue-light: rgba(21, 101, 192, 0.1);
  --nav-bg: #162133;
  --footer-bg: #070b14;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  --dark: #f8fafc;
  --dark2: #1e293b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Thin Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  background-clip: content-box;
}

.dark-mode ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  background-clip: content-box;
}

.dark-mode ::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  background-clip: content-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.dark-mode html {
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  background: color-mix(in srgb, var(--nav-bg) 82%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 5vw;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
  transform: translateZ(0);
}

body:not(.dark-mode) nav {
  background: #ffffff;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 15px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.3s;
}

.menu-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  cursor: pointer;
}

.logo span {
  color: var(--dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  display: block;
}

.theme-toggle:hover {
  transform: rotate(15deg) scale(1.1);
  background: var(--primary);
}

.theme-toggle:hover svg {
  fill: #fff;
}

.dark-mode .theme-toggle {
  background: #0f172a;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.dark-mode .theme-toggle:hover {
  background: var(--accent);
  color: #000;
}

.nav-cta {
  background: linear-gradient(
    135deg,
    rgba(255, 87, 34, 0.82),
    rgba(230, 74, 25, 0.72)
  );
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.34);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 87, 34, 0.3);
}

.nav-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  font-weight: 700;
  vertical-align: middle;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)),
    url("../images/hero_business_bg.png");
  background-size: cover;
  background-position: center;
  padding: 70px 5vw 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 87, 34, 0.2), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255, 179, 0, 0.15), transparent 50%);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -1px;
}

.hero h1 .hl {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255, 179, 0, 0.3);
}

.hero h1 .hl2 {
  color: #64ffda;
  text-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 36px;
  position: relative;
  line-height: 1.7;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.hero-bullets span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.hero-bullets span svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  stroke: var(--accent);
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  padding: 13px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  font-family: var(--font-head);
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.btn-hero2 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 13px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: 14px;
  transition: all 0.3s;
}

.btn-hero2:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.hero-timer {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  position: relative;
}

.hero-timer span {
  color: var(--accent);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

.hero-stat {
  text-align: center;
  min-width: 90px;
}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .lbl {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
}

/* SECTION GENERIC */
section {
  padding: 56px 5vw;
  background: var(--bg);
}

.sec-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-tag {
  display: inline-block;
  background: rgba(255, 216, 193, 0.3);
  border: 1px solid rgba(255, 87, 34, 0.14);
  color: var(--primary-ink);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge,
.sec-tag,
.coming-soon-badge,
.coming-soon-chip,
.comp-badge,
.price-badge,
.testi-badge,
.nav-badge {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.sec-tag-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-family:
    "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji",
    "Segoe UI Symbol", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.sec-title .hl {
  color: var(--primary);
}

.sec-sub {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.center {
  text-align: center;
}

.center .sec-sub {
  margin-left: auto;
  margin-right: auto;
}

.usp-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: 24px;
  list-style: none;
}

.usp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.usp-card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--r2);
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.usp-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(255, 87, 34, 0.12);
}

.usp-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.usp-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.usp-card:hover .usp-icon {
  transform: scale(1.1) rotate(5deg);
}

.usp-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.3;
}

.usp-card p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* HOW IT WORKS */
.how-bg .sec-title {
  color: var(--dark);
}

.how-bg .sec-sub {
  color: var(--text2);
}

.how-bg .sec-tag {
  background: rgba(255, 87, 34, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 179, 0, 0.3);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  display: none;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step p {
  color: var(--text2);
  font-size: 0.83rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.process-note {
  background: rgba(255, 179, 0, 0.1);
  border: 1.5px solid rgba(255, 179, 0, 0.3);
  border-radius: var(--r);
  padding: 18px 24px;
  display: inline-block;
  max-width: 480px;
}

.process-note p {
  color: var(--text);
  font-size: 0.9rem;
}

.process-note p strong {
  color: var(--accent);
}

.process-note p strong.note-highlight {
  color: var(--blue);
}

/* COMING SOON OVERLAY */
.coming-soon-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 3000;
}

.coming-soon-modal.active {
  display: flex;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 0, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 87, 34, 0.24),
      transparent 30%
    ),
    rgba(8, 11, 19, 0.7);
  backdrop-filter: blur(12px);
}

.coming-soon-card {
  position: relative;
  width: min(100%, 920px);
  min-height: min(78vh, 760px);
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 196, 0, 0.22),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 247, 238, 0.92)
    );
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.coming-soon-card::before,
.coming-soon-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.coming-soon-card::before {
  width: 280px;
  height: 280px;
  top: -90px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.42), transparent 68%);
}

.coming-soon-card::after {
  width: 340px;
  height: 340px;
  bottom: -150px;
  left: -90px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.28), transparent 70%);
}

.coming-soon-shell {
  width: 100%;
  max-width: 760px;
  padding: 64px 40px 48px;
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(194, 65, 12, 0.14);
  color: var(--primary-button);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb300, #ff5722);
  box-shadow: 0 0 0 8px rgba(255, 87, 34, 0.12);
  animation: comingSoonPulse 1.8s ease-in-out infinite;
}

.coming-soon-title {
  margin: 26px 0 10px;
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #18181b;
  text-transform: uppercase;
}

.coming-soon-highlight {
  display: block;
  color: #c2410c;
  text-shadow: 0 12px 30px rgba(194, 65, 12, 0.16);
}

.coming-soon-copy {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 1.06rem;
  line-height: 1.85;
  color: #4b5563;
}

.coming-soon-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 0;
}

.coming-soon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #1f2937;
  font-weight: 700;
  font-size: 0.92rem;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.coming-soon-btn {
  min-width: 180px;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.coming-soon-btn:hover {
  transform: translateY(-2px);
}

.coming-soon-btn-primary {
  background: linear-gradient(135deg, #ff7a18, #ff5722);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 87, 34, 0.24);
}

.coming-soon-btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  border-color: rgba(15, 23, 42, 0.08);
}

.coming-soon-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #6b7280;
}

.coming-soon-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.coming-soon-close:hover {
  transform: rotate(90deg);
  background: #ffffff;
}

@keyframes comingSoonPulse {
  0%,
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.15);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
  }
}

/* FEATURE LIST */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  position: relative;
  isolation: isolate;
  padding: 82px 28px;
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-grid-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  opacity: 0.4;
  z-index: -2;
  pointer-events: none;
}

body.dark-mode .feature-grid-bg-img {
  opacity: 0.96;
}

.feature-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(244, 246, 251, 0.45),
    rgba(244, 246, 251, 0.35)
  );
  z-index: -1;
}

body.dark-mode .feature-grid::after {
  background: linear-gradient(
    180deg,
    rgba(9, 14, 22, 0.42),
    rgba(9, 14, 22, 0.7)
  );
}

.feature-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r);
  padding: 18px 16px;
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 12px;
  -webkit-backdrop-filter: blur(12px) saturate(145%);
  backdrop-filter: blur(12px) saturate(145%);
  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.dark-mode .feature-item {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(255, 87, 34, 0.12);
}

.feature-item .fi-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(255, 87, 34, 0.82),
    rgba(230, 74, 25, 0.72)
  );
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 12px 28px rgba(255, 87, 34, 0.28),
    0 4px 10px rgba(15, 23, 42, 0.12);
}

.feature-item .fi-icon i {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
}

.feature-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text2);
}

/* COMPARISON TABLE */
.comp-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comp-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--dark);
  color: #fff;
  padding: 16px 24px;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.comp-head .col-h {
  text-align: center;
}

.comp-head .col-h.active {
  color: var(--accent);
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 24px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.88rem;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row:nth-child(even) {
  background: var(--surface-muted);
}

.comp-row .feature-name {
  color: var(--text);
  font-weight: 500;
}

.comp-row .val {
  text-align: center;
  font-weight: 600;
}

.comp-row .val.yes {
  color: var(--accent2);
}

.comp-row .val.no {
  color: var(--muted-3);
}

.comp-row .val.price {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.comp-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  font-weight: 700;
}

/* PRICING */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 30px 24px;
  position: relative;
  transition: all 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow2);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    var(--primary-button),
    var(--primary-dark)
  );
  color: #fff;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.plan-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.plan-price .period {
  font-size: 0.8rem;
  color: var(--text2);
  font-weight: 500;
}

.plan-old {
  font-size: 0.85rem;
  color: var(--muted-3);
  text-decoration: line-through;
  margin-left: 8px;
}

.plan-save {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

.plan-features {
  margin: 20px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: "✓";
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 4px;
}

.btn-plan.primary {
  background: var(--primary-button);
  color: #fff;
}

.btn-plan.primary:hover {
  background: var(--primary-button-hover);
}

.btn-plan.outline {
  background: transparent;
  color: var(--primary-ink);
  border: 2px solid var(--primary-button);
}

.btn-plan.outline:hover {
  background: var(--primary-light);
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 0.96;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-body p {
  font-size: 0.82rem;
  color: var(--text2);
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-price .new {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.product-price .old {
  font-size: 0.85rem;
  color: var(--muted-3);
  text-decoration: line-through;
}

.product-price .pct {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

.product-action {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 14px;
  color: var(--primary-button);
  border: 2px solid var(--primary-button);
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

.btn-plan.outline.product-action:hover {
  background: var(--primary-button);
  color: #fff;
  border-color: var(--primary-button);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
  transform: translateY(-1px);
}

.product-stock-note {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: 0.2px;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.testi-card {
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testi-card[data-testi-clone="true"] {
  display: none;
}

.testi-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.testi-biz {
  font-size: 0.78rem;
  color: var(--text2);
}

.testi-badge {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: auto;
  white-space: nowrap;
}

.testi-slider {
  width: 100%;
}

.testi-dots {
  display: none;
}

/* OLD vs NEW */
.cmp2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cmp2-box {
  border-radius: var(--r2);
  padding: 28px 24px;
}

.cmp2-box.old {
  border: 1.5px solid #ffcdd2;
}

.cmp2-box.new {
  border: 1.5px solid #c5e1a5;
}

.cmp2-head {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cmp2-box.old .cmp2-head {
  color: #b91c1c;
}

.cmp2-box.new .cmp2-head {
  color: #166534;
}

.cmp2-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cmp2-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
}

.cmp2-list.old li::before {
  content: "✕";
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.cmp2-list.new li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.faq-q {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  color: var(--dark);
}

.faq-q::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--dark), #0f3460);
  border-radius: var(--r2);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 0.95rem;
  position: relative;
}

.cta-banner .cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  font-family: var(--font-head);
  transition: all 0.2s;
}

.btn-wa:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn-demo {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.2s;
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* DEMO MODAL */
body.modal-open {
  overflow: hidden;
}

.demo-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.demo-modal.active {
  display: flex;
}

.demo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(2px);
}

.demo-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 28px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-head {
  position: relative;
  padding: 0 52px 12px 0;
}

.demo-modal-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.demo-modal-card p {
  color: var(--text2);
  font-size: 0.9rem;
}

.demo-body {
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.demo-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.demo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--surface-muted);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
}

.demo-close:hover {
  background: var(--primary-light);
}

.demo-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.demo-form-fields {
  display: grid;
  gap: 12px;
}

.demo-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.demo-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  transition: all 0.2s;
}

.demo-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.demo-submit {
  margin-top: 6px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 87, 34, 0.25);
}

.demo-form-actions,
.wa-actions {
  margin-top: 12px;
}

/* PROCESS MODAL */
.process-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.process-modal.active {
  display: flex;
}

.process-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(2px);
}

.process-modal-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 28px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.process-modal-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--primary);
  text-align: center;
  font-weight: 800;
}

.process-modal-card p {
  color: var(--text2);
  font-size: 0.92rem;
  margin-top: 16px;
  margin-bottom: 16px;
}

.process-intro {
  font-weight: 700;
  color: var(--text) !important;
}

.process-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
}

.process-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--surface-muted);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
}

.process-close:hover {
  background: var(--primary-light);
}

.process-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.process-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.process-check {
  color: var(--accent2);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* WHATSAPP POPUP */
.wa-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.wa-modal.active {
  display: flex;
}

.wa-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(2px);
}

.wa-modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: center;
  z-index: 1;
}

.wa-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-modal-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.wa-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #25d366;
  margin: 6px 0 16px;
}

.wa-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  justify-content: center;
  width: 100%;
}

.wa-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--surface-muted);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
}

/* TRUST BAR */
.trust-bar {
  background: var(--primary-light);
  border-top: 1px solid rgba(255, 87, 34, 0.1);
  border-bottom: 1px solid rgba(255, 87, 34, 0.1);
  padding: 18px 5vw;
  overflow: hidden;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.trust-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  color: currentColor;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.why-visual {
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: block;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.why-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.why-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 6px;
  flex-shrink: 0;
}

.why-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* BUSINESS TYPES */
.biz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.biz-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.biz-box {
  background: var(--card);
  border: 1px solid rgba(255, 87, 34, 0.15);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.08);
}

.biz-box .biz-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: block;
}

.biz-list-wrap {
  width: 100%;
  margin-top: 8px;
  display: grid;
  gap: 18px;
}

.biz-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.biz-marquee-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  will-change: transform;
  animation: bizMarqueeLeft 34s linear infinite;
}

.biz-marquee-track.is-reverse {
  animation-name: bizMarqueeRight;
}

.biz-chip {
  background: var(--card);
  border: none;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow:
    inset 0 0 0 1px rgba(255, 87, 34, 0.2),
    0 8px 18px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.22s ease;
}

.biz-chip:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 87, 34, 0.34),
    0 8px 18px rgba(15, 23, 42, 0.04);
}

.biz-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  min-width: 1.2em;
  font-size: 1.02rem;
  line-height: 1;
  flex: 0 0 auto;
  font-family:
    "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji",
    "Segoe UI Symbol", sans-serif;
  font-weight: 400;
}

.biz-cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@keyframes bizMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@keyframes bizMarqueeRight {
  from {
    transform: translateX(calc(-50% - 5px));
  }

  to {
    transform: translateX(0);
  }
}

/* VIDEO SECTION */
.video-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border-radius: var(--r2);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  border: none;
  background: transparent;
  overflow: hidden;
}

.video-controls-wrap {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 0;
}

.video-player-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.demo-youtube-player {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.video-overlay-toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  pointer-events: auto;
  transition: background 0.2s ease;
}

.video-overlay-toggle:hover {
  background: rgba(15, 23, 42, 0.08);
}

.video-overlay-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: -4px;
}

.video-overlay-pill {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.video-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 22px 0;
}

.video-progress-wrap {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.video-time {
  min-width: 42px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text2);
}

.video-progress {
  width: 100%;
  accent-color: var(--primary-button);
  cursor: pointer;
}

.video-action-row {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
}

.video-control {
  border: 1px solid rgba(255, 87, 34, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 243, 240, 0.96),
    rgba(255, 236, 228, 0.92)
  );
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.video-control .video-icon {
  font-size: 1rem;
  line-height: 1;
}

.video-control:disabled,
.video-progress:disabled,
.video-overlay-toggle:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.video-control:hover:not(:disabled) {
  border-color: rgba(255, 87, 34, 0.32);
  transform: translateY(-1px);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-dup {
  display: none;
}

/* USP MOBILE - normal stack */

/* FOOTER */
footer {
  color: var(--text2);
  padding: 80px 5vw 40px;
  position: relative;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--primary);
  opacity: 1 !important;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text2);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-acc-head {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  width: 100%;
  position: relative;
}

.footer-contact-item {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  background: none;
  border-radius: 0;
  text-decoration: none;
  color: var(--text2);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* DARK MODE FIXES */
.dark-mode .sec-tag {
  background: rgba(255, 87, 34, 0.12);
  border-color: rgba(255, 87, 34, 0.22);
}

.dark-mode .usp-icon {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
}

.dark-mode .fi-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 87, 34, 0.82),
    rgba(230, 74, 25, 0.72)
  ) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2) !important;
}

.dark-mode .coming-soon-backdrop {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 179, 0, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 87, 34, 0.16),
      transparent 28%
    ),
    rgba(2, 6, 14, 0.82);
}

.dark-mode .coming-soon-card {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 196, 0, 0.16),
      transparent 28%
    ),
    linear-gradient(145deg, rgba(11, 18, 28, 0.98), rgba(16, 23, 35, 0.96));
}

.dark-mode .coming-soon-badge,
.dark-mode .coming-soon-chip,
.dark-mode .coming-soon-btn-secondary,
.dark-mode .coming-soon-close {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.dark-mode .coming-soon-title {
  color: #f8fafc;
}

.dark-mode .coming-soon-highlight {
  color: #ffb300;
  text-shadow: 0 14px 34px rgba(255, 179, 0, 0.12);
}

.dark-mode .coming-soon-copy,
.dark-mode .coming-soon-note {
  color: #cbd5e1;
}

.dark-mode .feature-grid {
  background: linear-gradient(
    135deg,
    rgba(20, 27, 37, 0.72),
    rgba(12, 18, 27, 0.84)
  );
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
}

.dark-mode .feature-item {
  background: rgba(17, 24, 39, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.dark-mode .feature-item:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.dark-mode .feature-item h4 {
  color: #f8fafc;
}

.dark-mode .feature-item p {
  color: #cbd5e1;
}

.dark-mode .biz-box {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.dark-mode .biz-chip {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.dark-mode .video-wrap {
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .video-control {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .video-time {
  color: rgba(255, 255, 255, 0.72);
}

.dark-mode .cmp2-box.old {
  border-color: rgba(211, 47, 47, 0.2);
}

.dark-mode .cmp2-box.new {
  border-color: rgba(56, 142, 60, 0.2);
}

.dark-mode .gpb-box {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .product-img,
.dark-mode .testi-avatar,
.dark-mode .faq-item {
  background: rgba(255, 255, 255, 0.03) !important;
}

.dark-mode .comp-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.dark-mode .g-promo-box {
  background: #1e293b;
  color: var(--primary);
  border-color: var(--primary);
}

.dark-mode .demo-close,
.dark-mode .process-close,
.dark-mode .wa-close {
  background: rgba(255, 255, 255, 0.06);
}

.dark-mode .demo-close:hover,
.dark-mode .process-close:hover,
.dark-mode .wa-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dark-mode .cta-banner {
  background: linear-gradient(135deg, #1e293b, var(--footer-bg));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* SIDEBAR */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 268px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 12px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar-header .logo {
  font-size: 1.25rem;
  line-height: 1;
}

.sidebar-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text2);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar-close:hover {
  background: var(--primary-light);
  border-color: rgba(255, 87, 34, 0.25);
  color: var(--primary);
  transform: rotate(90deg);
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 20px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar-menu::-webkit-scrollbar {
  display: none;
}

.sidebar-link {
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 16px;
}

.sidebar-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sidebar-link i {
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.sidebar-policy-menu {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-footer {
  padding: 20px 0 10px 0;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}

.sidebar-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sidebar-social a {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.dark-mode .sidebar-social a {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
}

.dark-mode .sidebar-social a:hover {
  background: var(--accent);
  color: #000;
}

.dark-mode .sidebar {
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.4);
}

.dark-mode .sidebar-close {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .sidebar-close:hover {
  background: rgba(255, 87, 34, 0.12);
  border-color: rgba(255, 87, 34, 0.2);
}

/* FLOATING MUSIC PLAYER */
.music-player {
  position: fixed;
  right: 92px;
  bottom: 24px;
  width: min(360px, calc(100vw - 132px));
  padding: 10px 12px;
  border-radius: 18px;
  overflow: visible;
  isolation: isolate;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 243, 240, 0.92)
    ),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.16),
    0 28px 70px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  z-index: 97;
}

.music-player::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    transparent 46%
  );
  pointer-events: none;
  z-index: 0;
}

.music-player > * {
  position: relative;
  z-index: 1;
}

.music-player-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.music-player-head {
  min-width: 0;
  display: none;
}

.music-player-seek {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.music-wave-shell {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}

.music-waveform {
  width: 100%;
  height: 18px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  align-items: end;
  gap: 2px;
  pointer-events: none;
}

.music-wave-bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.music-wave-bar::before {
  content: "";
  display: block;
  width: 100%;
  height: var(--bar-height, 40%);
  min-height: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
  transition: background 0.18s ease;
  transform-origin: center;
  animation: musicWaveFloat 1.05s ease-in-out infinite;
  animation-play-state: paused;
}

.music-waveform.is-playing .music-wave-bar::before {
  animation-play-state: running;
}

.music-wave-bar.is-active::before {
  background: linear-gradient(
    180deg,
    rgba(255, 140, 64, 0.92),
    rgba(255, 87, 34, 1)
  );
}

.music-wave-bar:nth-child(1)::before,
.music-wave-bar:nth-child(13)::before {
  --bar-height: 28%;
}

.music-wave-bar:nth-child(2)::before,
.music-wave-bar:nth-child(17)::before {
  --bar-height: 52%;
}

.music-wave-bar:nth-child(3)::before,
.music-wave-bar:nth-child(15)::before {
  --bar-height: 38%;
}

.music-wave-bar:nth-child(4)::before,
.music-wave-bar:nth-child(20)::before {
  --bar-height: 72%;
}

.music-wave-bar:nth-child(5)::before,
.music-wave-bar:nth-child(11)::before {
  --bar-height: 48%;
}

.music-wave-bar:nth-child(6)::before,
.music-wave-bar:nth-child(22)::before {
  --bar-height: 84%;
}

.music-wave-bar:nth-child(7)::before,
.music-wave-bar:nth-child(19)::before {
  --bar-height: 34%;
}

.music-wave-bar:nth-child(8)::before,
.music-wave-bar:nth-child(24)::before {
  --bar-height: 62%;
}

.music-wave-bar:nth-child(9)::before,
.music-wave-bar:nth-child(18)::before {
  --bar-height: 44%;
}

.music-wave-bar:nth-child(10)::before,
.music-wave-bar:nth-child(21)::before {
  --bar-height: 76%;
}

.music-wave-bar:nth-child(12)::before,
.music-wave-bar:nth-child(16)::before {
  --bar-height: 56%;
}

.music-wave-bar:nth-child(14)::before,
.music-wave-bar:nth-child(23)::before {
  --bar-height: 68%;
}

.music-wave-bar:nth-child(1)::before {
  animation-delay: -0.1s;
}

.music-wave-bar:nth-child(2)::before {
  animation-delay: -0.22s;
}

.music-wave-bar:nth-child(3)::before {
  animation-delay: -0.34s;
}

.music-wave-bar:nth-child(4)::before {
  animation-delay: -0.46s;
}

.music-wave-bar:nth-child(5)::before {
  animation-delay: -0.58s;
}

.music-wave-bar:nth-child(6)::before {
  animation-delay: -0.7s;
}

.music-wave-bar:nth-child(7)::before {
  animation-delay: -0.82s;
}

.music-wave-bar:nth-child(8)::before {
  animation-delay: -0.94s;
}

.music-wave-bar:nth-child(9)::before {
  animation-delay: -1.06s;
}

.music-wave-bar:nth-child(10)::before {
  animation-delay: -1.18s;
}

.music-wave-bar:nth-child(11)::before {
  animation-delay: -1.3s;
}

.music-wave-bar:nth-child(12)::before {
  animation-delay: -1.42s;
}

.music-wave-bar:nth-child(13)::before {
  animation-delay: -1.54s;
}

.music-wave-bar:nth-child(14)::before {
  animation-delay: -1.66s;
}

.music-wave-bar:nth-child(15)::before {
  animation-delay: -1.78s;
}

.music-wave-bar:nth-child(16)::before {
  animation-delay: -1.9s;
}

.music-wave-bar:nth-child(17)::before {
  animation-delay: -2.02s;
}

.music-wave-bar:nth-child(18)::before {
  animation-delay: -2.14s;
}

.music-wave-bar:nth-child(19)::before {
  animation-delay: -2.26s;
}

.music-wave-bar:nth-child(20)::before {
  animation-delay: -2.38s;
}

.music-wave-bar:nth-child(21)::before {
  animation-delay: -2.5s;
}

.music-wave-bar:nth-child(22)::before {
  animation-delay: -2.62s;
}

.music-wave-bar:nth-child(23)::before {
  animation-delay: -2.74s;
}

.music-wave-bar:nth-child(24)::before {
  animation-delay: -2.86s;
}

.music-progress {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  outline: none;
  cursor: pointer;
  z-index: 2;
  touch-action: none;
}

.music-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1px;
  height: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.music-progress::-moz-range-thumb {
  width: 1px;
  height: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.music-progress::-moz-range-track {
  height: 18px;
  border-radius: 999px;
  background: transparent;
}

.music-player-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text2);
  flex: 0 0 auto;
  white-space: nowrap;
}

.music-player-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.music-btn {
  position: relative;
  border: none;
  border-radius: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 10px 22px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.music-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 87, 34, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 16px 26px rgba(15, 23, 42, 0.12);
}

.music-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.music-btn.is-primary {
  background: linear-gradient(135deg, #ff6a3d, #ff8a00);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(255, 87, 34, 0.28);
}

.music-btn.is-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 87, 34, 0.34);
}

.music-btn-label {
  display: none;
}

.music-player-empty {
  font-size: 0.82rem;
  color: var(--text2);
}

.dark-mode .music-player {
  background:
    linear-gradient(135deg, rgba(7, 11, 20, 0.94), rgba(12, 18, 34, 0.96)),
    rgba(7, 11, 20, 0.96);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.4),
    0 30px 80px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dark-mode .music-player-note,
.dark-mode .music-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.dark-mode .music-btn.is-primary {
  background: linear-gradient(135deg, #ff6a3d, #ff9f1a);
  color: #fff;
}

.dark-mode .music-btn[data-tooltip]::before {
  background: rgba(248, 250, 252, 0.96);
  color: #0f172a;
}

.dark-mode .music-btn[data-tooltip]::after {
  border-top-color: rgba(248, 250, 252, 0.96);
}

.dark-mode .music-progress {
  background: transparent;
}

.dark-mode .music-wave-bar::before {
  background: rgba(255, 255, 255, 0.15);
}

.dark-mode .music-wave-bar.is-active::before {
  background: linear-gradient(
    180deg,
    rgba(255, 181, 128, 0.95),
    rgba(255, 106, 61, 1)
  );
}

@keyframes musicWaveFloat {
  0%,
  100% {
    transform: scaleY(0.82);
  }

  50% {
    transform: scaleY(1.22);
  }
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 99;
  text-decoration: none;
  transition: all 0.2s;
  will-change: transform;
  transform: translateZ(0);
}

.wa-float:hover {
  transform: scale(1.1) translateZ(0);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--white);
  color: var(--primary);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
  z-index: 98;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  will-change: transform, opacity;
  transform: translateZ(0);
}

.back-to-top:hover {
  transform: translateY(-5px) translateZ(0);
  background: var(--primary);
  color: #fff;
}

.back-to-top.show {
  display: flex;
  animation: fadeInUp 0.3s ease-in-out;
}

.dark-mode .back-to-top {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DEMO HIGHLIGHT BOX */
.demo-box {
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: var(--r2);
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.demo-box .demo-text h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.demo-box .demo-text p {
  font-size: 0.88rem;
  color: var(--text2);
}

.demo-box .demo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

/* HOW GOOGLE PROFILE WORKS */
.gpb-box {
  border-radius: var(--r2);
  padding: 32px;
  border: 1px solid #c5cae9;
}

.gpb-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.gpb-step {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(37, 99, 235, 0.12);
  overflow: hidden;
}

.gpb-step-summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: default;
}

.gpb-step-summary::-webkit-details-marker {
  display: none;
}

.gpb-step-summary .gpb-num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.gpb-step-title-wrap {
  min-width: 0;
  flex: 1 1 auto;
}

.gpb-step h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}

.gpb-step-content {
  padding: 0 18px 18px 64px;
}

.gpb-step p {
  font-size: 0.82rem;
  color: var(--text2);
}

.gpb-step-caret {
  color: var(--blue);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gpb-step[open] .gpb-step-caret {
  transform: rotate(180deg);
}

/* GOOGLE SECTION */
.g-sec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.g-sec-head {
  text-align: center;
  margin-bottom: 16px;
}

.g-sec-head .sec-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.g-sec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.g-sec-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.g-sec-list li span.check {
  color: var(--accent2);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.g-sec-list li strong {
  color: var(--dark);
}

.g-promo-box {
  margin-top: 20px;
  padding: 14px;
  background: var(--surface-soft);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer-seo-content {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-seo-content:hover {
  opacity: 1;
}

.footer-seo-content strong {
  color: var(--primary);
  font-weight: 600;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes handClickOver {
  0% {
    transform: scale(0) translateY(10px);
    opacity: 0;
  }

  15% {
    transform: scale(1.2) translateY(-5px);
    opacity: 1;
  }

  25% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  35% {
    transform: scale(1.2) translateY(-2px);
    opacity: 1;
  }

  45% {
    transform: scale(0) translateY(10px);
    opacity: 0;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.nav-cta {
  position: relative;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
  display: inline-flex;
  align-items: center;
}

.click-effect {
  position: absolute;
  right: 50px;
  top: 15px;
  display: inline-block;
  animation: handClickOver 2.8s infinite;
  font-size: 1.2rem;
  pointer-events: none;
}

.click-effect::before {
  content: "";
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  opacity: 0.8;
}

body.no-copy,
body.no-copy *:not(input):not(textarea):not([contenteditable="true"]) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.no-copy img {
  -webkit-user-drag: none;
}

body.no-copy input,
body.no-copy textarea,
body.no-copy [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.setup-mockup-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.setup-mockup-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 768px) {
  .usp-check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-body {
    padding: 14px;
  }

  .product-body h3 {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .product-price {
    flex-wrap: wrap;
    gap: 6px;
  }

  .product-price .new {
    font-size: 1rem;
  }

  .product-price .old,
  .product-price .pct,
  .product-stock-note {
    font-size: 0.72rem;
  }

  .product-action {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .testi-slider {
    position: relative;
    overflow: hidden;
    padding: 1px 1px 3px;
    box-sizing: border-box;
    transition: min-height 0.3s ease;
  }

  .testi-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    align-items: stretch;
    touch-action: pan-y;
    transition: transform 0.45s ease;
    will-change: transform;
  }

  .testi-card {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }

  .testi-card[data-testi-clone="true"] {
    display: flex;
  }

  .testi-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }

  .testi-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 87, 34, 0.2);
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .testi-dot.is-active {
    width: 22px;
    background: var(--primary);
  }
}

@media (max-width: 768px) {
  .demo-modal,
  .process-modal,
  .wa-modal,
  .coming-soon-modal {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .demo-modal-card,
  .process-modal-card,
  .wa-modal-card {
    max-width: none;
    max-height: none;
    height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .modal-head,
  .wa-body {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--card);
    padding: 16px 64px 12px 18px;
    border-bottom: 1px solid var(--border);
    margin: -18px -18px 14px;
  }

  .modal-head h3,
  .wa-body h3 {
    font-size: 1.28rem;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .modal-head p,
  .wa-body p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .demo-body,
  .process-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
  }

  .demo-body {
    padding-top: 10px;
  }

  .wa-modal-card {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .wa-body {
    gap: 10px;
  }

  .wa-number {
    margin: 0;
  }

  .demo-form {
    margin-top: 28px;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .demo-form-fields {
    display: grid;
    gap: 12px;
  }

  .demo-form-actions,
  .wa-actions {
    margin-top: auto;
    background: var(--card);
    padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    z-index: 2;
  }

  .demo-submit,
  .wa-open-btn {
    min-height: 52px;
    border-radius: 16px;
    font-size: 0.98rem;
  }

  .process-close,
  .demo-close,
  .wa-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .coming-soon-card {
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    border: none;
  }

  .coming-soon-shell {
    padding: 88px 22px 36px;
  }

  .coming-soon-title {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .coming-soon-copy {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .coming-soon-actions {
    flex-direction: column;
  }

  .coming-soon-btn {
    width: 100%;
  }

  .coming-soon-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .nav-inner {
    height: 60px;
  }
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .biz-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .biz-list-wrap {
    gap: 10px;
  }

  .biz-marquee-track {
    gap: 8px;
    animation-duration: 28s;
  }

  .biz-chip {
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .biz-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .video-wrap {
    padding: 0;
  }

  .video-controls-wrap {
    padding: 0;
  }

  .video-progress-wrap {
    width: 100%;
  }

  .video-action-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }

  .video-control {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 48px;
    padding: 11px 10px;
    font-size: 0.92rem;
  }

  .video-control .video-label {
    display: none;
  }

  .video-control .video-icon {
    font-size: 1.05rem;
  }

  .video-overlay-toggle {
    width: 100%;
    height: 100%;
  }

  .video-overlay-pill {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 768px) {
  .usp-slider-wrap {
    overflow: visible;
  }

  .usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    transform: none !important;
    transition: none;
  }

  .usp-card {
    min-width: unset;
    flex-shrink: unset;
  }
}

@media (max-width: 768px) {
  .footer-acc-head::after {
    content: "›";
    display: inline-block;
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
  }

  .footer-accordion.open .footer-acc-head::after {
    transform: rotate(90deg);
  }

  .footer-acc-body {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease;
  }

  .footer-accordion.open .footer-acc-body {
    opacity: 1;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .music-btn[data-tooltip]::before,
  .music-btn[data-tooltip]::after {
    position: absolute;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .music-btn[data-tooltip]::before {
    content: attr(data-tooltip);
    bottom: calc(100% + 10px);
    transform: translate(-50%, 6px);
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    z-index: 5;
  }

  .music-btn[data-tooltip]::after {
    content: "";
    bottom: calc(100% + 4px);
    transform: translate(-50%, 6px);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(15, 23, 42, 0.92);
    z-index: 4;
  }

  .music-btn[data-tooltip]:hover::before,
  .music-btn[data-tooltip]:hover::after,
  .music-btn[data-tooltip]:focus-visible::before,
  .music-btn[data-tooltip]:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (min-width: 769px) {
  .gpb-step {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .gpb-step-summary {
    padding: 0;
    cursor: default;
    pointer-events: none;
  }

  .gpb-step-content {
    display: block;
    padding: 4px 0 0 46px;
  }

  .gpb-step-caret {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 5vw 100px;
  }

  .sec-title {
    font-size: 1.6rem;
    line-height: 1.15;
  }

  .sec-sub {
    font-size: 0.89rem;
    line-height: 1.55;
  }

  .hero-sub {
    display: none;
  }

  .nav-cta {
    display: none !important;
  }

  .features-section .sec-sub {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding: 10px 10px;
    border-radius: 15px;
  }

  .feature-grid::before,
  .feature-grid::after {
    content: none;
  }

  .feature-item .fi-icon {
    display: flex;
  }

  .usp-section-sub {
    display: none;
  }

  .trust-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    max-width: none;
    margin: 0;
    width: max-content;
    animation: marquee 14s linear infinite;
    gap: 32px;
    padding: 0 16px;
  }

  .trust-inner::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    flex-shrink: 0;
  }

  .trust-dup {
    display: flex;
  }

  .hero-cta-row {
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
  }

  .hero-cta-row .btn-hero,
  .hero-cta-row .btn-hero2 {
    flex: 1;
    text-align: center;
    padding: 10px 10px;
    font-size: 0.9rem;
    margin-left: 0;
  }

  .cmp2-grid {
    grid-template-columns: 1fr;
  }

  .comp-head,
  .comp-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    font-size: 0.8rem;
    padding: 12px 14px;
  }

  .steps::before {
    display: none;
  }

  .btn-hero2 {
    margin-left: 0;
  }

  .hero-stat .num {
    font-size: 1.4rem;
  }

  .cta-banner {
    padding: 36px 24px;
  }

  section {
    padding: 44px 5vw;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-col:first-child {
    grid-column: span 2;
    margin-bottom: 20px;
  }

  .g-sec-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gpb-box {
    padding: 18px;
  }

  .gpb-steps {
    gap: 10px;
  }

  .gpb-step-summary {
    padding: 14px;
    cursor: pointer;
  }

  .gpb-step-content {
    padding: 0 14px 14px 60px;
  }

  .music-player {
    right: 86px;
    bottom: 20px;
    width: min(430px, calc(100vw - 116px));
    padding: 11px;
    border-radius: 22px;
  }

  .music-player-head {
    flex-basis: 128px;
  }

  .music-player-title {
    font-size: 0.88rem;
  }

  .music-btn {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .plan-price {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .demo-box {
    flex-direction: column;
  }

  .demo-box .demo-cta {
    width: 100%;
  }

  .demo-box .demo-cta a {
    flex: 1;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col:first-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .music-player {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
    padding: 10px;
  }

  .music-player-content {
    flex-wrap: wrap;
    gap: 8px;
  }

  .music-player-head {
    flex: 1 1 100%;
    display: none;
  }

  .music-player-title {
    font-size: 0.92rem;
  }

  .music-player-seek {
    flex: 1 1 auto;
    order: initial;
  }

  .music-player-time {
    font-size: 0.56rem;
  }

  .music-player-actions {
    gap: 6px;
    margin-left: auto;
  }

  .music-btn {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .music-player-note {
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    display: none;
  }

  .wa-float {
    display: none;
  }

  .back-to-top {
    bottom: 95px;
  }
}

@media (max-width: 560px) {
  nav {
    padding: 0 12px;
  }

  .nav-inner {
    height: 58px;
    gap: 8px;
  }

  .nav-left,
  .nav-right {
    gap: 10px;
    min-width: 0;
  }

  .logo {
    font-size: 1.22rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 52vw;
  }

  section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    padding: 82px 12px 82px;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 7px 14px;
    margin-bottom: 16px;
  }

  .hero-bullets {
    gap: 8px;
    margin-bottom: 28px;
  }

  .hero-bullets span {
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .trust-bar,
  .how-bg,
  footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .feature-grid {
    padding: 14px;
  }

  .price-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 26px 18px;
  }

  .product-body {
    padding: 14px;
  }

  .video-controls {
    padding: 14px 0 0;
  }

  .video-action-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
  }

  .video-control {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 10px 8px;
  }

  .comp-head,
  .comp-row {
    grid-template-columns: 1.35fr 0.85fr 0.85fr;
    padding: 10px 12px;
    font-size: 0.74rem;
  }

  .faq-q {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .faq-a {
    padding: 0 16px 14px;
    font-size: 0.84rem;
  }

  .music-player {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .wa-float {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    right: 14px;
    bottom: 76px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 420px) {
  .hero-cta-row {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero-cta-row .btn-hero,
  .hero-cta-row .btn-hero2 {
    flex: 1 1 0;
    width: auto;
    font-size: 0.82rem;
    padding: 10px 8px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .sec-title {
    font-size: 1.42rem;
    letter-spacing: -0.4px;
  }

  .plan-price {
    font-size: 2rem;
  }

  .video-progress-wrap {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .video-time {
    display: none;
  }

  .comp-head,
  .comp-row {
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    padding: 10px;
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 1.05rem;
    max-width: 48vw;
  }

  .theme-toggle {
    width: 34px;
    height: 34px;
  }

  .menu-btn svg {
    width: 24px;
    height: 24px;
  }

  .hero h1 {
    font-size: 1.58rem;
  }

  .hero-stat {
    min-width: 78px;
  }
}

@media print {
  body * {
    display: none !important;
  }

  body::before {
    content: "Printing disabled.";
    display: block !important;
    padding: 40px;
    font-family: var(--font-body);
    font-size: 20px;
    color: #111827;
  }
}

/* ===== UI FIXES v2 ===== */

/* --- Pricing: 4th card (One Time) — dark mode safe --- */
.price-card--onetime {
  border-color: var(--primary);
}
.price-card--onetime .price-badge {
  background: var(--primary);
}
.price-card--onetime .btn-plan.outline {
  border-color: var(--primary);
  color: var(--primary-ink);
}
.dark-mode .price-card--onetime {
  background: rgba(255, 87, 34, 0.08);
  border-color: rgba(255, 87, 34, 0.4);
}

/* --- Footer: light mode light, dark mode dark --- */
body:not(.dark-mode) footer {
  color: var(--text2) !important;
  border-top: 1px solid var(--border);
}
body:not(.dark-mode) .footer-logo {
  color: var(--primary) !important;
}
body:not(.dark-mode) .footer-col h4 {
  color: var(--dark) !important;
}
body:not(.dark-mode) .footer-col a,
body:not(.dark-mode) .footer-contact-item {
  color: var(--text2) !important;
}
body:not(.dark-mode) .footer-tagline {
  color: var(--text2) !important;
}
body:not(.dark-mode) .footer-bottom {
  color: var(--text2) !important;
  border-top-color: var(--border) !important;
}
body:not(.dark-mode) .footer-seo-content {
  color: var(--text2) !important;
}
body:not(.dark-mode) .footer-col h4::before {
  background: var(--primary) !important;
}

/* Dark mode footer stays dark */
body.dark-mode footer {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark-mode .footer-col h4 {
  color: #fff !important;
}
body.dark-mode .footer-col a,
body.dark-mode .footer-contact-item {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark-mode .footer-tagline {
  color: rgba(255, 255, 255, 0.5) !important;
}
body.dark-mode .footer-bottom {
  color: rgba(255, 255, 255, 0.55) !important;
  border-top-color: rgba(255, 255, 255, 0.06) !important;
}
body.dark-mode .footer-seo-content {
  color: rgba(255, 255, 255, 0.55) !important;
}
body.dark-mode .social-icon {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
}
body.dark-mode .footer-logo {
  color: #fff !important;
}

/* --- Comparison: add VS divider via CSS --- */
.cmp2-grid {
  position: relative;
}
.cmp2-grid::before {
  content: "VS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text2);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
@media (max-width: 768px) {
  .cmp2-grid::before {
    display: none;
  }
}

/* --- Testimonials: left accent border per card --- */
.testi-card {
  border-left: 3px solid transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.testi-card:nth-child(1) {
  border-left-color: var(--primary);
}
.testi-card:nth-child(2) {
  border-left-color: var(--accent);
}
.testi-card:nth-child(3) {
  border-left-color: var(--accent2);
}

/* --- Testimonials: verified badge stronger --- */
.testi-badge::before {
  content: "✅ ";
}

/* --- FAQ: more padding and open state highlight --- */
.faq-q {
  padding: 20px 22px;
  line-height: 1.5;
}
.faq-item.open .faq-q {
  color: var(--primary);
}

/* --- How It Works: step connector arrows (desktop) --- */
@media (min-width: 769px) {
  .steps {
    position: relative;
  }
  .step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 800;
    pointer-events: none;
    z-index: 2;
  }
  .step {
    position: relative;
  }
}

/* --- Hero: primary CTA more prominent vs secondary --- */
.btn-hero {
  font-size: 1.15rem;
  padding: 15px 40px;
  box-shadow: 0 12px 36px rgba(255, 87, 34, 0.45);
}
.btn-hero2 {
  font-size: 0.95rem;
  padding: 13px 28px;
  opacity: 0.88;
}

/* --- Product card: image bg dark mode fix --- */

/* ===== UI FIXES ===== */

/* 1. HOW IT WORKS — light mode */

.how-bg .sec-title {
  color: var(--dark);
}

.how-bg .sec-sub {
  color: var(--text2);
}

.how-bg .sec-tag {
  background: rgba(255, 87, 34, 0.1);
  color: var(--primary-ink);
  border-color: rgba(255, 87, 34, 0.2);
}

.how-bg .step {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--r);
  padding: 28px 20px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.how-bg .step:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.12);
}

.how-bg .step h3 {
  color: var(--dark);
}

.how-bg .step p {
  color: var(--text2);
}

.how-bg .process-note {
  background: rgba(255, 179, 0, 0.08);
  border-color: rgba(255, 179, 0, 0.3);
}

.how-bg .process-note p {
  color: var(--text);
}

/* 1b. HOW IT WORKS — dark mode */

body.dark-mode .how-bg .sec-title {
  color: #f8fafc;
}

body.dark-mode .how-bg .sec-sub {
  color: rgba(255, 255, 255, 0.65);
}

body.dark-mode .how-bg .sec-tag {
  background: rgba(255, 87, 34, 0.15);
  color: var(--accent);
  border-color: rgba(255, 179, 0, 0.3);
}

body.dark-mode .how-bg .step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.dark-mode .how-bg .step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

body.dark-mode .how-bg .step h3 {
  color: #f8fafc;
}

body.dark-mode .how-bg .step p {
  color: rgba(255, 255, 255, 0.65);
}

body.dark-mode .how-bg .process-note {
  background: rgba(255, 179, 0, 0.08);
  border-color: rgba(255, 179, 0, 0.25);
}

body.dark-mode .how-bg .process-note p {
  color: rgba(255, 255, 255, 0.75);
}

/* 2. BUSINESS TYPES marquee — limit to 3 rows (hide row 4 & 5) */
.biz-list-wrap .biz-marquee:nth-child(n + 4) {
  display: none;
}

/* 3. PRICING — featured card stronger elevation & background */
.price-card.featured {
  transform: scale(1.035);
  box-shadow:
    0 20px 60px rgba(255, 87, 34, 0.22),
    0 8px 24px rgba(255, 87, 34, 0.1);
  z-index: 1;
}

.price-card.featured:hover {
  transform: scale(1.035) translateY(-4px);
}

/* 4. COMPARISON — stronger visual differentiation light mode */
.cmp2-box.old {
  border-color: #f87171;
}

.cmp2-box.new {
  border-color: #86efac;
}

.cmp2-box.old .cmp2-head {
  font-size: 1.12rem;
}

.cmp2-box.new .cmp2-head {
  font-size: 1.12rem;
}

/* dark mode — already overridden, tweak border opacity */
.dark-mode .cmp2-box.old {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
}

.dark-mode .cmp2-box.new {
  border-color: rgba(34, 197, 94, 0.3);
}

/* 5. TESTIMONIALS — larger stars, badge more visible */
.testi-stars {
  font-size: 1.15rem;
  letter-spacing: 3px;
}

.testi-badge {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 800;
  border: 1px solid rgba(21, 101, 192, 0.18);
}

.dark-mode .testi-badge {
  background: rgba(21, 101, 192, 0.18);
  color: #93c5fd;
  border-color: rgba(147, 197, 253, 0.2);
}

/* 6. PRODUCTS — larger strikethrough price */
.product-price .old {
  font-size: 0.92rem;
  color: var(--muted-3);
}

.product-price .pct {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
}

/* 7. FAQ — section heading emphasis */
#faq .sec-title {
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
}

.faq-item {
  border-radius: calc(var(--r) + 2px);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(255, 87, 34, 0.25);
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.06);
}

.faq-item.open {
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.08);
}

.dark-mode .faq-item:hover {
  border-color: rgba(255, 87, 34, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* 8. HERO CTA — gap between buttons */
.hero-cta-row {
  gap: 14px;
}

.btn-hero2 {
  margin-left: 0;
}

/* 9. FOOTER — dead social link style hint, better link contrast */
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-item {
  color: rgba(255, 255, 255, 0.75);
}

/* light mode footer text */
body:not(.dark-mode) .footer-col a,
body:not(.dark-mode) .footer-contact-item {
  color: var(--text);
}

/* sidebar social placeholder links — visual hint they are inactive */
.sidebar-social a[href="#"] {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* 10. FEATURES GRID — dark mode text contrast already handled, ensure bg */
.dark-mode .feature-item h4 {
  color: #f1f5f9;
}

.dark-mode .feature-item p {
  color: #94a3b8;
}

/* STEPS grid spacing */
.steps {
  gap: 16px;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-bg .step {
    padding: 20px 16px;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }
}
