/* ---------------------------------------------------------
   Ascendra Marketing — Agency Site
   Theme ported from ascendramarketing.co.uk
   --------------------------------------------------------- */

:root {
  --bg-deep: #14102a;
  --bg-surface: #1e1838;
  --bg-card: #2a2148;
  --bg-card-hover: #342a56;
  --border-subtle: #3d2f62;
  --border-glow: rgba(180, 124, 253, 0.35);

  --primary: #B47CFD;
  --primary-light: #D4B4FE;
  --secondary: #FF7FC2;
  --accent: #FFB07B;
  --cta: #06B6D4;
  --cta-hover: #22D3EE;
  --success: #22C55E;
  --danger: #EF4444;

  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --font-heading: "Outfit", system-ui, -apple-system, sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --max-w: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Aurora background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(180, 124, 253, 0.22), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 127, 194, 0.16), transparent 70%),
    radial-gradient(ellipse 70% 45% at 50% 80%, rgba(255, 176, 123, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(6, 182, 212, 0.14), transparent 70%);
  pointer-events: none;
  z-index: -2;
  animation: aurora-shift 20s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 124, 253, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 124, 253, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
img, video { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #B47CFD 0%, #FF7FC2 50%, #FFB07B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono { font-family: var(--font-mono); }

/* ---------- NAVBAR ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 1, 24, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.nav-brand img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(180, 124, 253, 0.25));
  transition: filter 0.2s ease;
}
.nav-brand:hover img {
  filter: drop-shadow(0 0 30px rgba(180, 124, 253, 0.5));
}
.footer-brand img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(180, 124, 253, 0.2));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown > button {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}
.nav-dropdown > button:hover { color: var(--text-primary); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(26, 15, 46, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown > button { cursor: pointer; }
.nav-dropdown.open > button { color: var(--text-primary); }
.nav-dropdown.open > button .chev { transform: rotate(180deg); }
.nav-dropdown > button .chev {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 0.7em;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.nav-dropdown-menu a:hover {
  background: rgba(180, 124, 253, 0.1);
}
.nav-mobile-toggle {
  display: none;
  font-size: 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-cta,
.nav .btn-cta,
.nav-links a.btn-cta {
  background: linear-gradient(135deg, #0891B2 0%, #7C3AED 100%);
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: cta-pulse 2.8s ease-in-out infinite;
  font-weight: 700;
}
.btn-cta:hover,
.nav .btn-cta:hover,
.nav-links a.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.5), 0 0 60px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}
.btn-cta .arrow { transition: transform 0.2s ease; color: #ffffff; }
.btn-cta:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  border: 1px solid rgba(180, 124, 253, 0.35);
  color: var(--text-primary);
  background: rgba(180, 124, 253, 0.04);
}
.btn-secondary:hover {
  border-color: rgba(180, 124, 253, 0.7);
  background: rgba(180, 124, 253, 0.12);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 0.6rem 0.9rem;
}
.btn-ghost:hover { color: var(--text-primary); }

/* ---------- HERO ---------- */
.hero {
  padding: 5rem 0 6rem;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  background: rgba(180, 124, 253, 0.08);
  border: 1px solid rgba(180, 124, 253, 0.25);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: ping 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero p.lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.hero-proof strong {
  color: var(--text-primary);
  font-weight: 600;
}
.hero-stars { color: var(--accent); letter-spacing: 0.1rem; }

/* ---------- AI PHONE AGENT DEMO ---------- */
.phone-demo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 320px;
  margin: 0 auto;
}
.phone {
  width: 100%;
  max-width: 320px;
  height: 500px;
  background: linear-gradient(165deg, #1A0F2E 0%, #110825 100%);
  border: 2px solid rgba(180, 124, 253, 0.25);
  border-radius: 40px 40px 20px 20px;
  border-bottom: 1px solid rgba(180, 124, 253, 0.15);
  padding: 14px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 80px -20px rgba(180, 124, 253, 0.35),
    inset 0 0 40px rgba(180, 124, 253, 0.05);
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0A0118;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0A0118 0%, #110825 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 0 1.25rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.phone-content {
  flex: 1;
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.call-state {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.call-state .pulse-ring {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--danger);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: ping 1s ease-in-out infinite;
}
.caller-name {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.caller-number {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
}
.chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  padding: 0.25rem 0.25rem 0.5rem;
  scrollbar-width: none;
}
.chat-area::-webkit-scrollbar { display: none; }
.bubble {
  max-width: 80%;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.bubble.show { opacity: 1; transform: translateY(0); }
.bubble.ai {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.25), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(180, 124, 253, 0.3);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.bubble.customer {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-bottom-right-radius: 4px;
}
.bubble.ai::before {
  content: "AI Agent";
  display: block;
  font-size: 0.58rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.typing-dots {
  display: inline-flex;
  gap: 3px;
}
.typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-secondary);
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

.phone-caption {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  padding: 0.5rem 1rem 0;
  border-top: 1px solid rgba(180, 124, 253, 0.1);
  margin-top: 0.4rem;
}

/* Bookings feed (clean card list — attached below phone) */
.feed {
  background: linear-gradient(155deg, rgba(42, 33, 72, 0.98), rgba(26, 20, 54, 0.98));
  border: 1px solid rgba(180, 124, 253, 0.25);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 1.25rem;
  box-shadow:
    0 20px 60px -20px rgba(34, 197, 94, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  width: 100%;
}
.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(180, 124, 253, 0.18);
}
.feed-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}
.feed-title-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B47CFD, #06B6D4);
  box-shadow: 0 0 10px rgba(180, 124, 253, 0.6);
}
.feed-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  color: var(--success);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.feed-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: ping 1.5s ease-in-out infinite;
}
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 220px;
}
.feed-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  background: rgba(10, 1, 24, 0.5);
  border: 1px solid rgba(180, 124, 253, 0.12);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  animation: feed-slide-in 0.5s ease both;
}
.feed-item.new {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2), 0 4px 12px rgba(34, 197, 94, 0.1);
}
.feed-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}
.feed-body {
  min-width: 0;
  overflow: hidden;
}
.feed-body strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-body span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-status {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #10B981);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.feed-counter {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(180, 124, 253, 0.15);
  font-size: 0.78rem;
  color: var(--success);
  text-align: center;
  font-weight: 600;
  font-family: var(--font-heading);
}
@keyframes feed-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-kicker {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(180, 124, 253, 0.08);
  border: 1px solid rgba(180, 124, 253, 0.25);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  margin-bottom: 1rem;
  line-height: 1.08;
}
.section-head p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ---------- LOST REVENUE CALC ---------- */
.calc-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.calc-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(180, 124, 253, 0.3), rgba(6, 182, 212, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.calc-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.calc-field input {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}
.calc-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(180, 124, 253, 0.15);
}
.calc-result {
  text-align: center;
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--border-subtle);
}
.calc-result-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.calc-result-value {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--danger);
  line-height: 1;
  text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
  letter-spacing: -0.03em;
}
.calc-result-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}
.calc-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(180, 124, 253, 0.4);
  box-shadow: 0 20px 60px -20px rgba(180, 124, 253, 0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.2), rgba(6, 182, 212, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(180, 124, 253, 0.25);
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-card .learn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}
.service-card:hover .learn { gap: 0.7rem; }

/* ---------- GUARANTEE ---------- */
.guarantee {
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.08), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(180, 124, 253, 0.3);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(180, 124, 253, 0.1), transparent 40%);
  animation: rotate 12s linear infinite;
}
.guarantee > * { position: relative; z-index: 1; }
.guarantee-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B47CFD, #FF7FC2, #FFB07B);
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 60px rgba(180, 124, 253, 0.4);
  position: relative;
}
.guarantee-seal::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(180, 124, 253, 0.5);
  animation: rotate 20s linear infinite;
}
.guarantee h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.guarantee p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ---------- SCARCITY ---------- */
.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 176, 123, 0.08);
  border: 1px solid rgba(255, 176, 123, 0.3);
  border-radius: 9999px;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}
.scarcity .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: ping 1.8s ease-in-out infinite;
}

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testi .stars {
  color: var(--accent);
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.testi blockquote {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B47CFD, #FF7FC2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--bg-deep);
}
.testi-who strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.testi-who span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0;
}
.faq-q .sign {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(180, 124, 253, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
  transition: all 0.2s ease;
}
.faq-item.open .faq-q .sign {
  background: var(--primary);
  color: var(--bg-deep);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-secondary);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 1rem;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.12), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(180, 124, 253, 0.3);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(180, 124, 253, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(6, 182, 212, 0.12), transparent 50%);
  pointer-events: none;
}
.final-cta > * { position: relative; }
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.final-cta p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ---------- MISSED CALL SIMULATION ---------- */
.sim-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.imessage {
  max-width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  margin: 0 auto;
  box-shadow: 0 30px 80px -20px rgba(180, 124, 253, 0.25);
}
.imessage-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}
.imessage-header strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}
.imessage-header span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.imsg-missed {
  text-align: center;
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  color: var(--danger);
  font-size: 0.78rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.imsg-chat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 180px;
}
.imsg {
  max-width: 82%;
  padding: 0.6rem 0.85rem;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.imsg.show { opacity: 1; transform: translateY(0); }
.imsg.us {
  align-self: flex-end;
  background: linear-gradient(135deg, #06B6D4, #B47CFD);
  color: white;
  border-bottom-right-radius: 4px;
}
.imsg.them {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.imsg-ending {
  text-align: center;
  padding-top: 1rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  border-top: 1px solid var(--border-subtle);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.imsg-ending.show { opacity: 1; }
.imsg-ending::before { content: "✓ "; }

/* ---------- GBP CALENDAR ---------- */
.calendar-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.calendar-head h3 {
  font-size: 1.4rem;
}
.calendar-platforms {
  display: flex;
  gap: 0.5rem;
}
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: rgba(180, 124, 253, 0.08);
  border: 1px solid rgba(180, 124, 253, 0.25);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--primary-light);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}
.cal-day {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.6rem;
  min-height: 120px;
  position: relative;
}
.cal-day-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cal-post {
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(180, 124, 253, 0.3);
  border-radius: 4px;
  padding: 0.4rem 0.5rem;
  font-size: 0.62rem;
  color: var(--text-primary);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  transition: all 0.4s ease;
}
.cal-post.show { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- DASHBOARD TICKER ---------- */
.dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.dash-head h3 {
  font-size: 1.2rem;
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: ping 1.5s ease-in-out infinite;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.dash-stat {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
}
.dash-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.dash-stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.dash-stat-delta {
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
}

/* ---------- YOUR DAY TIMELINE ---------- */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(180, 124, 253, 0.4), rgba(6, 182, 212, 0.2));
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}
.timeline-time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
  text-align: right;
  padding-right: 1rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 94px;
  top: 1.75rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(180, 124, 253, 0.1);
  z-index: 1;
}
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}
.timeline-content:hover {
  border-color: rgba(180, 124, 253, 0.4);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.timeline-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}
.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---------- REVIEW REPLY DEMO ---------- */
.review-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7FC2, #FFB07B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--bg-deep);
}
.review-card-head strong {
  display: block;
  font-size: 0.95rem;
}
.review-card-head .stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.review-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.review-card.ai-reply {
  border: 1px solid rgba(180, 124, 253, 0.4);
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.08), rgba(6, 182, 212, 0.05));
}
.review-card.ai-reply .tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: rgba(180, 124, 253, 0.2);
  border: 1px solid rgba(180, 124, 253, 0.35);
  border-radius: 9999px;
  font-size: 0.65rem;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.review-arrow {
  font-size: 2rem;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

/* ---------- BEFORE/AFTER SLIDER ---------- */
.ba-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  user-select: none;
  cursor: ew-resize;
  aspect-ratio: 16 / 10;
}
.ba-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
.ba-panel.before {
  background: linear-gradient(135deg, #2a0a0a, #3d0f0f 60%, #1a0505);
}
.ba-panel.after {
  background: linear-gradient(135deg, #061c0e, #0b3a1b 60%, #02180b);
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s ease-out;
}
.ba-panel h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.ba-panel.before h4 { color: #EF4444; }
.ba-panel.after h4 { color: #22C55E; text-align: right; }
.ba-panel h3 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.ba-panel.after h3 { margin-left: auto; text-align: right; }
.ba-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  max-width: 300px;
}
.ba-panel.after ul { margin-left: auto; text-align: right; }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #B47CFD, #06B6D4);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(180, 124, 253, 0.5);
  z-index: 2;
}
.ba-handle::after {
  content: "⇄";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B47CFD, #06B6D4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- TOOLS PAGE ---------- */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto 3rem;
}
.tool-head {
  margin-bottom: 2rem;
}
.tool-label {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #22D3EE;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.tool-head h2 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}
.tool-head p {
  color: var(--text-secondary);
}
.tool-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.tool-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.tool-form input,
.tool-form textarea,
.tool-form select {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
  font-family: var(--font-body);
}
.tool-form textarea { min-height: 120px; resize: vertical; }
.tool-form input:focus,
.tool-form textarea:focus,
.tool-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(180, 124, 253, 0.15);
}
.tool-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tool-output {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  min-height: 100px;
  display: none;
}
.tool-output.show { display: block; }
.tool-output h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.tool-output-saved {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tool-ad-variant {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.tool-ad-variant-label {
  font-size: 0.7rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.tool-ad-headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.tool-ad-body {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.tool-ad-cta {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: rgba(180, 124, 253, 0.15);
  border: 1px solid rgba(180, 124, 253, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--primary-light);
  font-weight: 600;
}
.tool-loss-big {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--danger);
  text-align: center;
  text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
  line-height: 1;
  margin: 1rem 0;
}
.tool-loss-bd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}
.tool-loss-bd > div {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.tool-loss-bd strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
}
.tool-loss-bd span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tool-score-ring {
  width: 180px;
  height: 180px;
  margin: 1rem auto;
  position: relative;
}
.tool-score-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}
.tool-score-value .num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.tool-score-value .lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.tool-fixes {
  list-style: none;
  margin-top: 1.5rem;
}
.tool-fixes li {
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.tool-fixes .num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B47CFD, #06B6D4);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}
.tool-fixes p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.tool-cta-after {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-subtle);
  text-align: center;
}
.tool-cta-after p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.tool-saved-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 9999px;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ---------- BROWSER MOCKUP (web-development page) ---------- */
.browser {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 80px -20px rgba(180, 124, 253, 0.3),
    0 20px 40px -10px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(10, 1, 24, 0.6);
  border-bottom: 1px solid var(--border-subtle);
}
.browser-dots {
  display: flex;
  gap: 0.4rem;
}
.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1;
  background: rgba(20, 16, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.browser-url::before {
  content: "🔒";
  font-size: 0.7rem;
}
.browser-body {
  padding: 0;
  background: linear-gradient(180deg, rgba(20, 16, 42, 0.95), rgba(30, 24, 56, 0.9));
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.browser-site-hero {
  padding: 2rem 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
}
.browser-site-hero h4 {
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.browser-site-hero p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
.browser-site-hero .fake-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #06B6D4, #B47CFD);
  color: white;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}
.browser-site-hero .fake-image {
  aspect-ratio: 1;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(180, 124, 253, 0.4), rgba(255, 127, 194, 0.3)),
    radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
  border: 1px solid rgba(180, 124, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.browser-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding: 0.75rem 1.75rem 1.75rem;
  border-top: 1px dashed rgba(180, 124, 253, 0.15);
}
.browser-metric {
  background: rgba(20, 16, 42, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  text-align: center;
}
.browser-metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--success);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.browser-metric span {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ---------- SAAS DASHBOARD MOCKUP (web-dev hero) ---------- */
.saas-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 80px -20px rgba(180, 124, 253, 0.3),
    0 20px 40px -10px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
  max-width: 520px;
}
.saas-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 380px;
  background: linear-gradient(180deg, #18132e, #0f0b22);
}
.saas-side {
  background: rgba(10, 1, 24, 0.6);
  border-right: 1px solid rgba(180, 124, 253, 0.12);
  padding: 1rem 0.6rem;
}
.saas-logo-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 1rem;
  border-bottom: 1px solid rgba(180, 124, 253, 0.1);
  margin-bottom: 0.85rem;
}
.saas-logo-row strong {
  font-size: 0.82rem;
  color: var(--text-primary);
}
.saas-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, #B47CFD, #06B6D4);
  box-shadow: 0 0 8px rgba(180, 124, 253, 0.5);
}
.saas-nav-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-radius: 6px;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.saas-nav-item span {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.saas-nav-item.active {
  background: linear-gradient(90deg, rgba(180, 124, 253, 0.18), rgba(180, 124, 253, 0));
  color: var(--text-primary);
  position: relative;
}
.saas-nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(180deg, #B47CFD, #06B6D4);
  border-radius: 2px;
}
.saas-nav-item.active span { color: var(--primary-light); }
.saas-main {
  padding: 1.2rem 1.4rem;
}
.saas-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.saas-greeting {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.saas-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.saas-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B47CFD, #FF7FC2, #FFB07B);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.saas-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.saas-kpi {
  background: rgba(20, 16, 42, 0.7);
  border: 1px solid rgba(180, 124, 253, 0.12);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
}
.saas-kpi-label {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.saas-kpi-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.saas-kpi-delta {
  font-size: 0.6rem;
  font-weight: 700;
}
.saas-kpi-delta.up { color: var(--success); }
.saas-chart {
  background: rgba(20, 16, 42, 0.5);
  border: 1px solid rgba(180, 124, 253, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.saas-chart svg {
  width: 100%;
  height: 80px;
  display: block;
}
.saas-activity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.saas-activity-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.65rem;
  background: rgba(20, 16, 42, 0.5);
  border: 1px solid rgba(180, 124, 253, 0.08);
  border-radius: 6px;
  font-size: 0.68rem;
}
.saas-activity-row span {
  flex: 1;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.saas-activity-row small {
  color: var(--text-muted);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.saas-activity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.saas-activity-dot.g {
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.saas-activity-dot.b {
  background: var(--cta);
  box-shadow: 0 0 6px rgba(6, 182, 212, 0.6);
}

@media (max-width: 720px) {
  .saas-body { grid-template-columns: 1fr; }
  .saas-side {
    display: flex;
    overflow-x: auto;
    gap: 0.3rem;
    padding: 0.6rem;
    border-right: none;
    border-bottom: 1px solid rgba(180, 124, 253, 0.12);
  }
  .saas-logo-row { display: none; }
  .saas-nav-item { flex-shrink: 0; padding: 0.4rem 0.7rem; font-size: 0.65rem; }
  .saas-kpis { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .saas-kpi { padding: 0.5rem 0.55rem; }
  .saas-kpi-value { font-size: 1rem; }
}

/* ---------- SPEED GAUGES (Core Web Vitals) ---------- */
.speed-gauges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.gauge {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.gauge svg {
  margin: 0 auto 1rem;
  display: block;
}
.gauge-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.gauge-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---------- INTEGRATIONS GRID ---------- */
.integrations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.integration {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.integration:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 124, 253, 0.5);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 40px -12px rgba(180, 124, 253, 0.3);
}
.integration-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.15), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(180, 124, 253, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-light);
}
.integration strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
}
.integration span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ---------- BEFORE/AFTER STATIC (no drag) ---------- */
.ba-static {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.ba-static-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.ba-static-card.before {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(20, 16, 42, 0.95));
  border-color: rgba(239, 68, 68, 0.3);
}
.ba-static-card.after {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(20, 16, 42, 0.95));
  border-color: rgba(34, 197, 94, 0.3);
}
.ba-static-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.ba-static-card.before .ba-static-label { color: var(--danger); }
.ba-static-card.after .ba-static-label { color: var(--success); }
.ba-static-card h3 {
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.ba-static-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}
@media (max-width: 900px) {
  .ba-static { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); }
}

/* ---------- META AD MOCKUP CARD ---------- */
.fb-ad {
  background: #ffffff;
  color: #1c1e21;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  max-width: 500px;
}
.fb-ad-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 14px 8px;
}
.fb-ad-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1877F2, #36a2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.fb-ad-meta {
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}
.fb-ad-meta strong {
  color: #1c1e21;
  font-size: 0.88rem;
  font-weight: 600;
  display: block;
}
.fb-ad-meta span {
  color: #65676b;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.fb-ad-meta span::after {
  content: "· Sponsored · ◉";
}
.fb-ad-dots {
  color: #65676b;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0 0.25rem;
}
.fb-ad-body {
  padding: 4px 14px 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #1c1e21;
}
.fb-ad-image {
  aspect-ratio: 1.91 / 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent),
    var(--ad-gradient, linear-gradient(135deg, #B47CFD, #FF7FC2, #FFB07B));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fb-ad-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
}
.fb-ad-image-text {
  position: relative;
  color: white;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  padding: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 85%;
}
.fb-ad-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f0f2f5;
  border-top: 1px solid #dadde1;
}
.fb-ad-footer-text {
  flex: 1;
  min-width: 0;
}
.fb-ad-footer-text small {
  color: #65676b;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 2px;
}
.fb-ad-footer-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1c1e21;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fb-ad-cta-btn {
  background: #e4e6eb;
  color: #050505;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
}
.fb-ad-reactions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 10px;
  font-size: 0.72rem;
  color: #65676b;
}

/* Google ad mockup */
.google-ad {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
}
.google-ad-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 700;
  margin-right: 0.5rem;
}
.google-ad-url {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}
.google-ad-headline {
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.google-ad-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}
.google-headlines-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.google-headlines-list li {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.google-headlines-list .chars {
  color: var(--text-muted);
  font-size: 0.72rem;
  flex-shrink: 0;
}
.google-headlines-list .chars.ok { color: var(--success); }
.google-headlines-list .chars.warn { color: var(--accent); }

/* Tool output text blocks (for Review Reply, GBP Post, Cold Email) */
.tool-text-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  white-space: pre-wrap;
}
.tool-text-block .variant-label {
  display: block;
  font-size: 0.7rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.tool-copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}
.tool-copy-btn:hover {
  color: var(--primary-light);
  border-color: var(--primary);
}
.tool-copy-btn.copied {
  color: var(--success);
  border-color: var(--success);
}

/* Tools index hero chip list */
.tools-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}
.tools-index a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 9999px;
  background: rgba(180, 124, 253, 0.08);
  border: 1px solid rgba(180, 124, 253, 0.28);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.tools-index a:hover {
  background: rgba(180, 124, 253, 0.18);
  border-color: rgba(180, 124, 253, 0.55);
  transform: translateY(-1px);
}

/* ---------- PHONE FEATURES GRID (DFY page) ---------- */
.phone-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .phone-features { grid-template-columns: 1fr; max-width: 480px; gap: 1rem; }
  .phone-features .service-card { padding: 1.25rem 1.5rem; }
}

/* ---------- CHAT WIDGET ---------- */
.ac-chat {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
  font-family: var(--font-body);
}
.ac-chat-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06B6D4, #B47CFD);
  color: white;
  box-shadow: 0 10px 30px -5px rgba(6, 182, 212, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ac-chat-toggle:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 40px -5px rgba(6, 182, 212, 0.7), 0 0 60px rgba(180, 124, 253, 0.3);
}
.ac-chat-toggle svg {
  width: 26px;
  height: 26px;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.ac-chat-toggle-icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-45deg);
}
.ac-chat.ac-chat-open .ac-chat-toggle-icon-chat {
  opacity: 0;
  transform: rotate(45deg);
}
.ac-chat.ac-chat-open .ac-chat-toggle-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}
.ac-chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EF4444;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
  animation: ping 2s ease-in-out infinite;
}
.ac-chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 2.5rem);
  max-height: 560px;
  background: linear-gradient(165deg, #221a40, #160f2e);
  border: 1px solid rgba(180, 124, 253, 0.3);
  border-radius: 18px;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(180, 124, 253, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ac-chat.ac-chat-open .ac-chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.ac-chat-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.1rem 1rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(180, 124, 253, 0.08));
  border-bottom: 1px solid rgba(180, 124, 253, 0.18);
}
.ac-chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5FA8, #8F5BFE);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 16px rgba(180, 124, 253, 0.4);
  flex-shrink: 0;
}
.ac-chat-head-info {
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}
.ac-chat-head-info strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
}
.ac-chat-head-info span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 2px;
}
.ac-chat-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: ping 2s ease-in-out infinite;
}
.ac-chat-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ac-chat-close:hover {
  background: rgba(255, 255, 255, 0.18);
}
.ac-chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 124, 253, 0.3) transparent;
}
.ac-chat-log::-webkit-scrollbar { width: 6px; }
.ac-chat-log::-webkit-scrollbar-track { background: transparent; }
.ac-chat-log::-webkit-scrollbar-thumb {
  background: rgba(180, 124, 253, 0.3);
  border-radius: 3px;
}
.ac-msg {
  max-width: 88%;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: ac-fade-in 0.25s ease;
}
.ac-msg-bot {
  align-self: flex-start;
  background: rgba(180, 124, 253, 0.12);
  border: 1px solid rgba(180, 124, 253, 0.2);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.ac-msg-bot a {
  color: var(--primary-light);
  text-decoration: underline;
}
.ac-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #06B6D4, #B47CFD);
  color: white;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.ac-typing {
  display: flex;
  gap: 5px;
  padding: 0.9rem 1rem;
}
.ac-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.5;
  animation: ac-typing-bounce 1.2s ease-in-out infinite;
}
.ac-typing span:nth-child(2) { animation-delay: 0.15s; }
.ac-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes ac-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
@keyframes ac-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ac-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
  padding-left: 0.25rem;
}
.ac-option {
  display: block;
  padding: 0.7rem 0.95rem;
  background: rgba(10, 1, 24, 0.6);
  border: 1px solid rgba(180, 124, 253, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}
.ac-option:hover:not(:disabled) {
  background: rgba(180, 124, 253, 0.15);
  border-color: rgba(180, 124, 253, 0.6);
  transform: translateX(3px);
}
.ac-option:disabled {
  cursor: default;
}
.ac-chat-footer {
  padding: 0.7rem 1.1rem;
  background: rgba(10, 1, 24, 0.5);
  border-top: 1px solid rgba(180, 124, 253, 0.15);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}
.ac-chat-footer a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
}
.ac-chat-footer a:hover {
  text-decoration: underline;
}
@media (max-width: 720px) {
  .ac-chat {
    bottom: 1rem;
    right: 1rem;
  }
  .ac-chat-toggle {
    width: 54px;
    height: 54px;
  }
  .ac-chat-panel {
    bottom: 70px;
    right: 0;
    width: calc(100vw - 2rem);
    max-height: 70vh;
  }
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail .ico {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.2), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(180, 124, 253, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes aurora-shift {
  0%, 100% { transform: translate(0%, 0%) scale(1); }
  33% { transform: translate(3%, -2%) scale(1.02); }
  66% { transform: translate(-2%, 3%) scale(0.99); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.3), 0 0 30px rgba(180, 124, 253, 0.15); }
  50% { box-shadow: 0 0 25px rgba(6, 182, 212, 0.5), 0 0 50px rgba(180, 124, 253, 0.3); }
}
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes row-highlight {
  0% { background: rgba(34, 197, 94, 0.3); }
  100% { background: rgba(34, 197, 94, 0.08); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero word-by-word reveal */
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards;
}
/* Gradient text cascade onto word spans */
.hero h1 .gradient-text .word {
  background: linear-gradient(135deg, #B47CFD 0%, #FF7FC2 50%, #FFB07B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .phone-demo-wrap { max-width: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .sim-grid { grid-template-columns: 1fr; }
  .review-demo { grid-template-columns: 1fr; }
  .review-arrow { transform: rotate(90deg); margin: 0 auto; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .speed-gauges { grid-template-columns: 1fr; }
  .gauge { padding: 1.5rem 1rem; }
  .contact-info,
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .integrations { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .integration { padding: 1rem 0.6rem; }
  .integration-logo { width: 40px; height: 40px; font-size: 1.2rem; }
  .integration strong { font-size: 0.78rem; }
  .integration span { font-size: 0.65rem; }
  .tool-card { padding: 1.5rem 1.25rem; }
  .browser { max-width: 100%; }
  .browser-site-hero { grid-template-columns: 1fr; padding: 1.5rem 1.25rem 1rem; }
  .browser-metrics { padding: 0.75rem 1.25rem 1.5rem; }

  /* Shorter page stack on mobile */
  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 2.5rem; }

  /* Service grid: 2-col on mobile for shorter, compact cards */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .service-card { padding: 1.25rem 1rem; }
  .service-card .icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
  }
  .service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
  .service-card p { font-size: 0.82rem; line-height: 1.45; margin-bottom: 0.85rem; }
  .service-card .learn { font-size: 0.78rem; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .nav-links.open .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    margin-top: 0.5rem;
  }
  .hero { padding: 3rem 0 4rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .calc-inputs { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-wrap { padding: 1.5rem; }
  .guarantee { padding: 3rem 1.5rem; }
  .final-cta { padding: 3rem 1.5rem; }
  .tool-row { grid-template-columns: 1fr; }
  .tool-loss-bd { grid-template-columns: 1fr; }
  .tool-card { padding: 1.75rem; }
  .calc-wrap { padding: 1.75rem; }
  .timeline::before { left: 50px; }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .timeline-item::before { left: 44px; }
  .dashboard { padding: 1.75rem; }
  .phone { width: 240px; height: 500px; }
}
