:root {
  --purple-600: #7c3aed;
  --purple-500: #a855f7;
  --purple-100: #f3e8ff;
  --dark: #0f0f14;
  --gray-900: #111827;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15,15,20,0.08);
  --shadow-lg: 0 20px 50px rgba(15,15,20,0.12);
  --max-width: 1200px;
}

* { box-sizing: border-box; }
.hidden { display: none !important; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: 56px; line-height: 1.1; }
h2 { font-size: 40px; line-height: 1.15; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }
p { margin: 0; color: var(--gray-600); }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.section-header { max-width: 640px; margin: 0 auto 56px; }
.section-header p { margin-top: 14px; font-size: 18px; }

/* ---- logo ---- */
.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo .ai, .logo .asees { color: var(--purple-500); }
.logo .with { color: var(--dark); }
.logo-footer { font-size: 26px; }
.logo-footer .with { color: var(--white); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(124,58,237,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid #e5e7eb;
}
.btn-ghost:hover { border-color: var(--purple-500); }
.btn-white {
  background: var(--white);
  color: var(--purple-600);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 14px; min-height: 40px; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-600);
  font-size: 14px;
  font-weight: 600;
}

/* ---- navbar ---- */
.trial-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 42px;
  z-index: 1001;
  background: var(--purple-600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 44px;
}
.trial-banner-link { color: white; text-decoration: none; text-align: center; }
.trial-banner-link strong { text-decoration: underline; }
.trial-banner-close {
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.85);
  font-size: 16px; padding: 4px 8px; line-height: 1;
}
.trial-banner-close:hover { color: white; }
body.no-trial-banner .trial-banner { display: none; }
body.no-trial-banner .navbar { top: 0; }
body.no-trial-banner .hero { padding-top: 160px; }
body.no-trial-banner .hero-page { padding-top: 150px; }

.navbar {
  position: fixed;
  top: 42px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, top 0.2s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15,15,20,0.06);
  border-bottom-color: #eee;
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  position: relative;
}
.nav-links a:hover { color: var(--purple-600); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}
/* .open is toggled by JS (main.js) with a close delay so a diagonal mouse path
   from the toggle into the menu doesn't trigger a premature close; the :hover
   rule stays as a no-JS fallback and matches the same visual state. */
.dropdown:hover .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.dropdown-menu a:hover { background: var(--gray-100); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  /* Above the fixed trial-banner (1001) + navbar (1000) so it's never
     partially hidden behind them when open, regardless of banner height. */
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: 100px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .nav-actions { flex-direction: column; margin-top: 24px; }
.mobile-menu .btn { width: 100%; }

/* ---- hero ---- */
.hero {
  position: relative;
  padding: 202px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(#f0f0f5 1px, transparent 1px),
    linear-gradient(90deg, #f0f0f5 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
}
.orb-1 {
  width: 480px; height: 480px;
  background: var(--purple-500);
  top: -120px; left: -100px;
  animation: orbFloat1 16s ease-in-out infinite;
}
.orb-2 {
  width: 380px; height: 380px;
  background: var(--purple-600);
  top: 100px; right: -120px;
  animation: orbFloat2 20s ease-in-out infinite;
}

.hero-inner { text-align: center; max-width: 780px; margin: 0 auto; }
.hero-inner h1 { margin-top: 24px; }
.hero-inner .sub { font-size: 19px; margin-top: 22px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

.hero-page {
  padding: 192px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-page .hero-inner { text-align: left; max-width: 640px; margin: 0; }
.hero-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ---- phone mockup ---- */
.phone-mockup {
  width: 300px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  animation: floatPhone 5s ease-in-out infinite;
}
.phone-screen {
  background: #e5ddd5;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  background: #075e54;
  color: white;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-header .dot { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.online-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
}
.phone-body { padding: 16px 12px; flex: 1; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }
.bubble {
  position: relative;
  z-index: 1;
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.4;
  opacity: 0;
  animation: bubbleIn 0.5s ease forwards;
}
.bubble.in { background: var(--white); align-self: flex-start; border-bottom-left-radius: 2px; }
.bubble.out { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 2px; }
.bubble.typing {
  background: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  max-width: fit-content;
}
.bubble.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gray-400);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
/* Reveal timing for .bubble is now driven by JS (initHeroSlider in main.js)
   so the conversation replays correctly every time the slide re-appears. */

/* ---- WhatsApp slide chat box (no phone frame) ----
   Height is set to match the real measured offsetHeight of .browser-mockup /
   .email-mockup (432-434px desktop) so all 3 hero slides render at the same
   height and switching slides no longer causes the container to jump. */
.wa-chat-box {
  background: #ece5dd;
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  height: 432px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.wa-chat-header {
  background: #075e54;
  color: white;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.wa-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
}
.wa-messages {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.wa-typing {
  display: flex;
  gap: 3px;
  align-items: center;
  background: white;
  padding: 8px 10px;
  border-radius: 10px;
  width: 48px;
  align-self: flex-start;
  flex-shrink: 0;
}
.wa-typing-dot {
  width: 5px;
  height: 5px;
  background: #9ca3af;
  border-radius: 50%;
  animation: waBounce 1s infinite;
}
.wa-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.wa-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes waBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-3px); }
}
.wa-bubble {
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 85%;
  word-wrap: break-word;
  flex-shrink: 0;
}
.wa-bubble.bot {
  background: white;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.wa-bubble.customer {
  background: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* ---- hero slider ---- */
.hero-slider {
  position: relative;
  max-width: 340px;
  min-height: 460px;
  margin: 0 auto;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.hero-slider .slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.slider-dots {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.slider-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dots .dot.active { background: var(--purple-600); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  font-size: 20px;
  color: var(--gray-900);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 5;
}
.hero-slider:hover .slider-arrow { opacity: 1; }
.slider-arrow.prev { left: -10px; }
.slider-arrow.next { right: -10px; }
.slide-label {
  text-align: center;
  margin-top: 56px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  z-index: 10;
  background: transparent;
}

/* ---- browser mockup (upwork slide) ---- */
.browser-mockup {
  width: 320px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray-100);
}
.browser-dot { width: 9px; height: 9px; border-radius: 50%; }
.browser-title { margin-left: 8px; font-size: 12px; font-weight: 600; color: var(--gray-600); }
.browser-body { padding: 16px; }
.mock-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.04em; }
.mock-input-box {
  margin-top: 6px;
  padding: 10px;
  background: var(--gray-100);
  border-radius: 8px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
}
.mock-btn {
  margin-top: 12px;
  width: 100%;
  padding: 9px;
  background: #14a800;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
}
.mock-output {
  margin-top: 14px;
  padding: 12px;
  background: var(--purple-100);
  border-radius: 8px;
}
.mock-output-label { font-size: 12px; font-weight: 700; color: var(--purple-600); margin: 0 0 6px; }
.mock-output-text { font-size: 11.5px; line-height: 1.5; color: var(--gray-900); margin: 0; }
.mock-output-actions { display: flex; gap: 10px; margin-top: 10px; }
.mock-output-actions span { font-size: 11px; font-weight: 700; color: var(--purple-600); }

/* ---- email mockup (cold email slide) ---- */
.email-mockup {
  width: 320px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.email-header { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); }
.email-meta { font-size: 11px; color: var(--gray-400); line-height: 1.5; }
.email-subject { font-size: 13px; font-weight: 700; color: var(--gray-900); margin-top: 6px; }
.email-body { padding: 14px 16px; }
.email-body p { font-size: 12px; line-height: 1.6; margin-bottom: 8px; color: var(--gray-900); }
.email-stats { padding: 14px 16px; background: var(--gray-100); }
.stat-row { font-size: 12px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.mini-bar { height: 5px; background: #e5e7eb; border-radius: 3px; margin-top: 4px; overflow: hidden; }
.mini-bar div { height: 100%; background: var(--purple-500); border-radius: 3px; }

/* ---- stats ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-100);
}
.stat { text-align: center; }
.stat .num { font-size: 40px; font-weight: 800; color: var(--purple-600); }
.stat .label { font-size: 14px; color: var(--gray-600); margin-top: 6px; }

/* ---- rollover highlight banner ---- */
.rollover-highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 32px;
  color: white;
}
.rollover-highlight-left { display: flex; gap: 18px; align-items: flex-start; }
.rollover-highlight-icon { font-size: 36px; }
.rollover-highlight h3 { color: white; font-size: 20px; margin-bottom: 8px; }
.rollover-highlight p { color: rgba(255,255,255,0.85); font-size: 14px; }
.rollover-mini-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.rollover-mini-table th, .rollover-mini-table td {
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.rollover-mini-table th { color: rgba(255,255,255,0.7); font-weight: 600; }
.rollover-mini-table td { color: white; font-weight: 600; }
.rollover-mini-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
  .rollover-highlight { grid-template-columns: 1fr; padding: 28px 20px; }
}

/* ---- why choose us ---- */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--purple-500);
}
.trust-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.trust-card h3 { font-size: 17px; margin-bottom: 10px; }
.trust-card p { font-size: 14px; margin-bottom: 16px; }
.trust-card-tag {
  display: inline-block;
  background: var(--purple-100);
  color: var(--purple-600);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .trust-cards-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- trust stats ---- */
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-stat-card {
  padding: 28px 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--purple-600), var(--purple-500));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow);
}
.trust-stat-icon { font-size: 26px; margin-bottom: 10px; }
.trust-stat-num { font-size: 32px; font-weight: 800; color: var(--purple-600); }
.trust-stat-label { font-size: 13px; color: var(--gray-600); margin-top: 6px; }

@media (max-width: 768px) {
  .trust-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- problem/solution ---- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.compare-card {
  padding: 40px;
  border-radius: var(--radius);
}
.compare-card.old { background: #fef2f2; }
.compare-card.new { background: #f0fdf4; }
.compare-card h3 { margin-bottom: 24px; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-900);
}

/* ---- tool cards ---- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-500);
}
.tool-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--purple-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.tool-card .sub { color: var(--purple-600); font-weight: 600; font-size: 14px; margin: 6px 0 14px; }
.tool-card ul { margin: 18px 0; }
.tool-card ul li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 6px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tool-card .price { font-weight: 700; font-size: 17px; color: var(--gray-900); margin: 14px 0 18px; }

/* ---- steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-card { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  margin: 0 auto 20px;
}
.step-card h3 { margin-bottom: 10px; font-size: 18px; }
.step-card p { font-size: 14px; }
.steps-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--gray-600);
}
.steps-note a { color: var(--purple-600); font-weight: 600; }

/* ---- pricing ---- */
.billing-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  margin: 0 auto;
}
.billing-toggle button {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
  position: relative;
}
.billing-toggle button.active { background: var(--dark); color: white; }
.billing-toggle .save-tag {
  font-size: 11px;
  color: var(--purple-600);
  font-weight: 700;
  margin-left: 4px;
}
.billing-toggle button.active .save-tag { color: var(--purple-500); }

.currency-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
}
.currency-toggle button {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
}
.currency-toggle button.active { background: var(--purple-600); color: white; }

.toggles-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-grid-4col { grid-template-columns: repeat(4, 1fr); }
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular { border: 2px solid var(--purple-500); box-shadow: var(--shadow-lg); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 4px; }
.price-amount { font-size: 40px; font-weight: 800; margin: 18px 0 4px; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--gray-600); }
.price-billed { font-size: 13px; color: var(--gray-400); min-height: 18px; }
.price-savings { font-size: 13px; color: var(--purple-600); font-weight: 600; margin-top: 4px; min-height: 16px; }
.price-setup { font-size: 13px; color: var(--gray-600); margin-top: 8px; }
.field-hint { font-size: 12px; color: var(--gray-400); margin-top: 6px; }
.trial-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: #16a34a;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card.trial-card { border: 2px solid #16a34a; }
.price-card hr { border: none; border-top: 1px solid var(--gray-100); margin: 22px 0; }
.price-features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  color: var(--gray-900);
}
.price-features li.no { color: var(--gray-400); }
.price-features .x { color: var(--gray-400); }
.price-features .check { color: var(--purple-600); }

.tool-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tool-tabs button {
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.tool-tabs button.active {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: white;
}

.tabs-row {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 40px;
}
.tabs-row button {
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
}
.tabs-row button.active { background: var(--white); color: var(--purple-600); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.bundle-section {
  background: var(--purple-100);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table th { background: var(--gray-100); font-weight: 700; }
.compare-table .check { color: var(--purple-600); font-weight: 700; }
.compare-table .x { color: var(--gray-400); }

/* ---- testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card .stars { color: #f59e0b; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 15px; color: var(--gray-900); margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { font-size: 14px; font-weight: 600; color: var(--gray-600); }

/* ---- faq ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
}
.faq-item .faq-icon { transition: transform 0.2s ease; font-size: 20px; color: var(--purple-600); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 15px;
  color: var(--gray-600);
}
.faq-item.open .faq-a { max-height: 300px; margin-top: 14px; }

/* ---- final cta ---- */
.final-cta {
  background: linear-gradient(135deg, var(--dark), var(--purple-600));
  color: white;
  border-radius: 24px;
  padding: 72px 40px;
  text-align: center;
  margin: 0 24px;
}
.final-cta h2 { color: white; }
.final-cta p { color: rgba(255,255,255,0.8); margin-top: 14px; font-size: 18px; }
.final-cta .hero-ctas { margin-top: 32px; }

/* ---- footer ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-tagline { margin-top: 12px; font-size: 14px; max-width: 260px; }
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--purple-500); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--purple-600); }

/* ---- generic content pages ---- */
.content-page { padding: 150px 0 100px; max-width: 820px; margin: 0 auto; }
.content-page h1 { margin-bottom: 8px; }
.content-page .updated { color: var(--gray-400); font-size: 14px; margin-bottom: 40px; }
.content-page h2 { font-size: 24px; margin: 40px 0 14px; }
.content-page p, .content-page li { color: var(--gray-600); font-size: 15px; margin-bottom: 14px; }
.content-page ul { padding-left: 20px; list-style: disc; }

/* ---- blog ---- */
.blog-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.blog-filters button {
  border: 1.5px solid var(--gray-100);
  background: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
}
.blog-filters button.active { background: var(--dark); color: white; border-color: var(--dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--purple-100), #ede9fe);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 10px; font-size: 12px; color: var(--gray-400); margin-bottom: 12px; }
.blog-category { color: var(--purple-600); font-weight: 700; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; }
.blog-card p { font-size: 14px; }
.blog-card .read-more { margin-top: 16px; font-weight: 600; color: var(--purple-600); font-size: 14px; display: inline-block; }

.blog-post { padding: 150px 0 100px; }
.blog-post-header { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.blog-post-header h1 { font-size: 40px; }
.blog-post-body { max-width: 720px; margin: 0 auto; }
.blog-post-body h2 { font-size: 26px; margin: 40px 0 16px; }
.blog-post-body p { font-size: 16px; margin-bottom: 18px; color: var(--gray-900); }
.blog-post-cta {
  background: var(--purple-100);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}

/* ---- contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 18px 0 8px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--purple-500);
}
.contact-info-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item .icon { font-size: 22px; }
.qr-box {
  width: 100%;
  aspect-ratio: 1;
  background: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: 13px;
  margin-top: 12px;
  border: 1.5px dashed var(--gray-400);
}

/* ---- about ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 32px; border-radius: var(--radius); background: var(--gray-100); }
.tech-pills { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.tech-pill { padding: 10px 20px; border-radius: 999px; background: var(--gray-100); font-size: 14px; font-weight: 600; }

/* ---- meta table ---- */
.meta-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.meta-table th, .meta-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.meta-table th { background: var(--gray-100); }

/* ---- reveal (JS toggled) ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   GLOBAL OVERFLOW SAFETY
========================================================= */
html, body { max-width: 100%; overflow-x: hidden; }
img, .phone-mockup, .browser-mockup, .email-mockup, .hero-slider { max-width: 100%; }
table { max-width: 100%; }
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { min-width: 480px; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .tools-grid, .pricing-grid, .testimonial-grid, .blog-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid-2col, .tools-grid-3col, .pricing-grid-2col, .steps-grid-3col { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-page-grid { grid-template-columns: 1fr; }
  .hero-page .hero-inner { text-align: center; margin: 0 auto; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .nav-links, .nav-actions:not(.mobile-only) { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 16px; max-width: 100vw; }
  .section, .section-sm { padding-left: 0; padding-right: 0; }
  .compare-grid, .contact-grid { grid-template-columns: 1fr; }
  .tools-grid, .pricing-grid, .testimonial-grid, .blog-grid, .values-grid, .stats-bar { grid-template-columns: 1fr 1fr; }
  .tools-grid-2col, .tools-grid-3col, .pricing-grid-2col, .steps-grid-3col { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .hero, .hero-page { padding-top: 162px; }
  body.no-trial-banner .hero, body.no-trial-banner .hero-page { padding-top: 120px; }
  .trial-banner { font-size: 12px; padding: 0 36px; }
  .final-cta { padding: 48px 24px; margin: 0 16px; }
  .hero-slider { max-width: 280px; min-height: 400px; }
  .phone-mockup, .browser-mockup, .email-mockup { width: 260px; }
  .phone-screen { min-height: 360px; }
  .wa-chat-box { width: 260px; height: 376px; }
  .slider-arrow { display: none; }
  .tool-tabs { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .tools-grid, .pricing-grid, .testimonial-grid, .blog-grid, .values-grid, .stats-bar, .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-slider { max-width: 240px; min-height: 380px; }
  .phone-mockup, .browser-mockup, .email-mockup { width: 220px; }
  .phone-screen { min-height: 340px; }
  .wa-chat-box { width: 220px; height: 357px; }
}

/* ---- sticky currency sidebar ---- */
.currency-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: -4px 0 16px rgba(0,0,0,0.1);
}
.currency-label {
  font-size: 9px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
/* Scoped under .currency-sidebar so specificity reliably beats the
   pre-existing sitewide ".currency-toggle button" rule (this sidebar
   intentionally also carries the .currency-toggle class so main.js's
   existing initCurrency() wiring picks up its buttons for free). */
.currency-sidebar .currency-btn {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
  white-space: nowrap;
  width: 64px;
  text-align: center;
}
.currency-sidebar .currency-btn.active {
  background: #7c3aed;
  color: white;
  border-color: #7c3aed;
}
@media (max-width: 768px) {
  .currency-sidebar {
    top: auto;
    bottom: 20px;
    padding: 8px;
    gap: 6px;
  }
  .currency-sidebar .currency-btn { font-size: 11px; padding: 5px 8px; width: 56px; }
}

/* ---- 50% off promo pricing (legacy — .price-card based, kept for any
   page still using the older card markup) ---- */
.badge-50 {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.hot-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  background: #fef2f2;
  padding: 3px 10px;
  border-radius: 20px;
}
.save-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.price-card s { color: #9ca3af; font-size: 14px; }

/* ---- elegant pricing cards (whatsapp-bot.html, upwork-generator.html) ---- */
.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.12);
  border-color: #a855f7;
}
.pricing-card.popular {
  border: 2px solid #7c3aed;
  background: linear-gradient(135deg, #fafaf9 0%, #f5f3ff 100%);
  box-shadow: 0 8px 32px rgba(124,58,237,0.15);
}
.pricing-card.popular:hover {
  box-shadow: 0 24px 64px rgba(124,58,237,0.25);
}
.pricing-card.free-trial {
  border: 2px solid #16a34a;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.free-trial-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.pricing-card .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card .badge-50 { top: 16px; right: 16px; }
.plan-name {
  font-size: 22px;
  font-weight: 800;
  color: #0f0f14;
  margin-bottom: 4px;
}
.price-original {
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}
.price-current {
  font-size: 42px;
  font-weight: 800;
  color: #0f0f14;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.price-current .price-suffix {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
}
.price-period {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
  display: block;
}
.setup-fee-line {
  font-size: 13px;
  color: #6b7280;
  padding: 10px 14px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.setup-fee-line s { color: #d1d5db; }
.setup-fee-line strong { color: #0f0f14; }
.card-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 20px 0;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}
.features-list li.included::before {
  content: '✓';
  color: #7c3aed;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.features-list li.excluded {
  color: #9ca3af;
}
.features-list li.excluded::before {
  content: '×';
  color: #d1d5db;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.pricing-cta.primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.pricing-cta.primary:hover {
  box-shadow: 0 8px 24px rgba(124,58,237,0.4);
  transform: translateY(-1px);
}
.pricing-cta.secondary {
  background: #f3f4f6;
  color: #374151;
}
.pricing-cta.secondary:hover {
  background: #e5e7eb;
}
.pricing-grid-elegant {
  max-width: 1000px;
  margin: 0 auto;
}
.billing-toggle-elegant {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 40px;
}
.billing-toggle-elegant .billing-btn {
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.billing-toggle-elegant .billing-btn.active {
  background: white;
  color: #0f0f14;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.billing-toggle-elegant .billing-btn .badge-free {
  background: #7c3aed;
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 4px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pricing-grid-elegant.pricing-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- how it works 2x2 grid ---- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .how-it-works-grid { grid-template-columns: 1fr; }
}

/* ---- testimonial carousel (homepage) ---- */
.testimonial-carousel {
  position: relative;
  padding: 0 48px;
}
.carousel-track-wrap {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-track .testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 20px;
  box-sizing: border-box;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: white;
  box-shadow: var(--shadow);
  font-size: 20px;
  color: var(--gray-900);
  cursor: pointer;
  z-index: 5;
}
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots .dot.active { background: var(--purple-600); transform: scale(1.3); }

.testimonial-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-size: 40px;
  color: #a855f7;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  color: #0f0f14;
  font-size: 14px;
}
.testimonial-role {
  color: #6b7280;
  font-size: 13px;
  margin-top: 2px;
}
.testimonial-plan {
  display: inline-block;
  background: #f3e8ff;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .testimonial-carousel { padding: 0 40px; }
  .carousel-track .testimonial-card { flex: 0 0 100%; margin-right: 0; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 16px; }
}
