/* ══════════════════════════════════════
   TalkToWP — Shared Stylesheet
   https://talktowp.com
══════════════════════════════════════ */

/* ── THEME VARIABLES ── */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f7fb;
  --fg: #0d0d0d;
  --fg2: #2a2a2a;
  --muted: #666677;
  --border: rgba(0, 0, 0, 0.08);
  --card: #ffffff;
  --blue: #2b5fd9;
  --blue-dark: #1e46a8;
  --red: #e63946;
  --orange: #f4a261;
  --green: #2a9d8f;
  --purple: #7b5fd9;
  --grad: linear-gradient(95deg, #2b5fd9, #7b5fd9);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] {
  --bg: #0c0c14;
  --bg-alt: #12121e;
  --fg: #f0f0f0;
  --fg2: #c0c0cc;
  --muted: #7070a0;
  --border: rgba(255, 255, 255, 0.08);
  --card: #13131f;
  --nav-bg: rgba(12, 12, 20, 0.94);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  transition:
    background 0.3s,
    color 0.3s;
}

/* ── AURORA ── */
#aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 3rem;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.nlogo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.nlogo img {
  height: 34px;
  width: 34px;
  border-radius: 7px;
}
.nlogo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  transition: color 0.3s;
}
.nlinks {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nlinks a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nlinks a:hover {
  color: var(--fg);
}
.nlogin {
  color: var(--fg) !important;
  font-weight: 600 !important;
}
.nbtn {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0.55rem 1.35rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: opacity 0.2s !important;
}
.nbtn:hover {
  opacity: 0.85;
}
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s;
  color: var(--fg);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  opacity: 0.87;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--muted);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 0.85rem 2.2rem;
  font-size: 0.95rem;
  border-radius: 9px;
}

/* ── SECTION BASE ── */
section {
  position: relative;
  z-index: 1;
  padding: 7rem 8vw;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.sec-alt {
  background: var(--bg-alt);
}
.sec-border {
  border-top: 1px solid var(--border);
}
.sk {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.sh {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--fg);
}
.sh .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ── REVEAL ── */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.r.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

/* ── CARD ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── HERO ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 8vw 5rem;
}
.hero-inner {
  width: 77%;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-inner.on {
  opacity: 1;
  transform: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-hed {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 1.6rem;
}
.hero-hed .red {
  color: var(--red);
}
.hero-hed .cnum {
  color: var(--red);
  display: inline-block;
  transition: transform 0.1s;
}
.hero-hed .cnum.pop {
  transform: scale(1.1);
}
.strike-wrap {
  position: relative;
  display: inline-block;
}
.strike-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 54%;
  height: 0.065em;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.strike-wrap.hit::after {
  transform: scaleX(1);
}
.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.2rem;
}
.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.trust {
  margin-top: 1.6rem;
  font-size: 0.76rem;
  color: var(--muted);
}

/* ── CAPTION SLIDES ── */
.cap-slide {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 8vw;
  border-top: 1px solid var(--border);
}
#cs3 .cap-text,
#cs5 .cap-text {
  order: 2;
}
#cs3 .cap-graphic,
#cs5 .cap-graphic {
  order: 1;
}
.cap-text {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.cap-text.on {
  opacity: 1;
  transform: none;
}
.cap-graphic {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.cap-graphic.on {
  opacity: 1;
  transform: none;
}
.cap-hed {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.cap-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.cap-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.8rem;
}
.hc-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hc-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.hc-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.hc-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.hc-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.9rem;
  display: inline-block;
}

/* ── AGENCY ── */
.ag-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2.5rem;
}
.ag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1rem;
}
.ag-h {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ag-p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 0.7rem;
}
.ag-bold {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.5;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.sc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
}
.sn {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}
.ag-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.8rem;
  margin-top: 1.5rem;
}
.ag-check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.ag-check::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}
.alert-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
}
.alert-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  animation: flt 5s ease-in-out infinite;
}
@keyframes flt {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.ahd {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.ared {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e63946;
  animation: pls 1.4s infinite;
}
@keyframes pls {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.35);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(230, 57, 70, 0);
  }
}
.at {
  font-size: 0.74rem;
  font-weight: 700;
  color: #e63946;
}
.albl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.22rem;
}
.aval {
  font-size: 0.82rem;
  color: var(--fg2);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.atime {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue);
}

/* ── WORDPRESS+AI ── */
.wp-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.wp-ai-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wp-ai-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow);
}
.wp-ai-card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.wp-ai-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.wp-ai-card-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── AI EXPERT ── */
.ai-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.ai-questions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.6rem;
}
.ai-q {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--fg2);
  cursor: pointer;
  transition: all 0.2s;
}
.ai-q:hover {
  background: var(--card);
  border-color: var(--blue);
  color: var(--blue);
}
.ai-q-icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.ai-chat-ui {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ai-chat-profile {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.ai-chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ai-chat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}
.ai-chat-role {
  font-size: 0.74rem;
  color: var(--muted);
}
.ai-chat-msgs {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 180px;
}
.ai-msg-user {
  background: #e8edff;
  color: #1a1a2e;
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
  border-bottom-right-radius: 3px;
  font-size: 0.84rem;
  line-height: 1.5;
  align-self: flex-end;
  max-width: 85%;
}
.ai-msg-ai {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg2);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border-bottom-left-radius: 3px;
  font-size: 0.84rem;
  line-height: 1.6;
  align-self: flex-start;
  max-width: 92%;
}
.ai-check-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 500;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

/* ── DATA SAFETY ── */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.8rem;
}
.safety-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.safety-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.safety-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PRICING ── */
.p2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 2.8rem auto 0;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: var(--shadow);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.feat {
  background: var(--blue);
  border-color: var(--blue);
}
.pbadge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
}
.pplan {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.65rem;
  color: var(--fg);
}
.price-card.feat .pplan {
  color: rgba(255, 255, 255, 0.8);
}
.pnum {
  font-size: 3.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.12rem;
  color: var(--fg);
}
.pnum sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.price-card.feat .pnum {
  color: #fff;
}
.pcad {
  font-size: 0.78rem;
  opacity: 0.55;
  margin-bottom: 1.1rem;
  color: var(--fg);
}
.price-card.feat .pcad {
  color: rgba(255, 255, 255, 0.75);
}
.pdiv {
  height: 1px;
  background: var(--border);
  margin: 1.1rem 0;
}
.price-card.feat .pdiv {
  background: rgba(255, 255, 255, 0.18);
}
.pfeats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pfeats li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.45;
  color: var(--fg2);
}
.pfeats li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--blue);
}
.price-card.feat .pfeats li {
  color: rgba(255, 255, 255, 0.85);
}
.price-card.feat .pfeats li::before {
  color: rgba(255, 255, 255, 0.9);
}
.price-value {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
}
.price-card.feat .price-value {
  color: rgba(255, 255, 255, 0.8);
}

/* ── FAQ ── */
.faq-list {
  max-width: 680px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}
.faq-q {
  width: 100%;
  padding: 0.95rem 1.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  gap: 1rem;
}
.faq-ic {
  font-size: 0.9rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-ic {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 1.3rem;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0.1rem 1.3rem 1.1rem;
}

/* ── REFERRAL ── */
.ref-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ref-pct {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0 0.4rem;
}
.ref-tagline {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.ref-pills {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ref-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--muted);
}
.ref-pill strong {
  color: var(--fg);
}
.ref-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ref-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 160px;
  text-align: center;
}
.ref-step-n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-step-t {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── CTA ── */
#cta {
  text-align: center;
  padding: 9rem 8vw;
}
.cta-h {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
  color: var(--fg);
}
.cta-h .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-s {
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 1rem;
  font-size: 0.76rem;
  color: var(--muted);
}

/* ── INCIDENT UI ── */
.inc-ui {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.inc-card {
  background: var(--card);
  border-radius: 11px;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
}
.inc-hd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.inc-sev {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  color: #fff;
}
.inc-sev.high {
  background: #e63946;
}
.inc-sev.med {
  background: #f4a261;
}
.inc-sev.low {
  background: #2a9d8f;
}
.inc-site {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg2);
}
.inc-msg {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.inc-actions {
  display: flex;
  gap: 0.5rem;
}
.inc-act {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.inc-act.solve {
  background: var(--bg-alt);
  color: var(--fg2);
  border: 1px solid var(--border);
}
.inc-act.fix {
  background: var(--blue);
  color: #fff;
}
.sol-ui {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.sol-hd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.sol-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid rgba(230, 57, 70, 0.2);
}
.sol-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.sol-desc {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.sol-steps {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.sol-step {
  display: flex;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--fg2);
  line-height: 1.5;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.45s,
    transform 0.45s;
}
.sol-step.show {
  opacity: 1;
  transform: none;
}
.sol-step-n {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.sol-mark {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s;
}
.sol-mark.show {
  opacity: 1;
}

/* ── FOOTER ── */
footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 26px;
  width: 26px;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}
.footer-brand .fb-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 210px;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--fg);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-size: 0.76rem;
  color: var(--muted);
}
.socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.sl {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.sl:hover {
  color: var(--fg);
}
.sl svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 9rem 8vw 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 760px;
}
.page-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.page-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 0.8rem;
}
.page-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}
.page-body {
  position: relative;
  z-index: 1;
  padding: 4rem 8vw 7rem;
}
.page-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ── LEGAL STYLES ── */
.legal-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2.5rem 0 0.8rem;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}
.legal-h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 1.5rem 0 0.5rem;
}
.legal-p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.legal-ul {
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-ul li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.legal-callout {
  background: var(--bg-alt);
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  margin: 1.2rem 0;
  font-size: 0.88rem;
  color: var(--fg2);
  line-height: 1.65;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
}
.legal-table th {
  text-align: left;
  padding: 0.7rem 1rem;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
}
.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-table tr:nth-child(even) td {
  background: var(--bg-alt);
}
.legal-p a {
  color: var(--blue);
  text-decoration: none;
}
.legal-p a:hover {
  text-decoration: underline;
}
.legal-ul li a {
  color: var(--blue);
  text-decoration: none;
}

/* ── CONTACT STYLES ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg2);
  letter-spacing: 0.02em;
}
.form-input,
.form-textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 95, 217, 0.1);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.form-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 0.85rem 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
.form-submit:hover {
  opacity: 0.87;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ci-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
}
.ci-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.ci-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.3rem;
}
.ci-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.ci-body a {
  color: var(--blue);
  text-decoration: none;
}
.ci-body a:hover {
  text-decoration: underline;
}
.form-success {
  display: none;
  background: rgba(42, 157, 143, 0.1);
  border: 1px solid var(--green);
  border-radius: 9px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ── BLOG STYLES ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

/* ── BLOG POST ── */
.post-hero {
  position: relative;
  z-index: 1;
  padding: 9rem 8vw 3rem;
  border-bottom: 1px solid var(--border);
}
.post-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.post-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
.post-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.post-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.post-excerpt {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}
.post-body-wrap {
  position: relative;
  z-index: 1;
  padding: 3.5rem 8vw 7rem;
}
.post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2.5rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.post-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2rem 0 0.6rem;
}
.post-body p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}
.post-body ul,
.post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.post-body li {
  color: var(--muted);
  line-height: 1.65;
}
.post-body strong {
  color: var(--fg);
  font-weight: 700;
}
.post-body a {
  color: var(--blue);
  text-decoration: none;
}
.post-body a:hover {
  text-decoration: underline;
}
.post-callout {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--fg2);
  line-height: 1.65;
}
.post-divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}
.post-cta {
  background: linear-gradient(
    135deg,
    rgba(43, 95, 217, 0.08),
    rgba(123, 95, 217, 0.08)
  );
  border: 1px solid var(--blue);
  border-radius: 14px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.post-cta-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.post-cta-body {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover {
  color: var(--blue);
}

/* ── 404 ── */
.error-page {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 3rem;
}
.error-code {
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.error-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.error-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.error-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── VIDEO MODAL ── */
#vmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
#vmodal.open {
  display: flex;
}
.vm-inner {
  position: relative;
  width: 90%;
  max-width: 860px;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.vm-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vm-close {
  position: absolute;
  top: -38px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  font-family: "Inter", sans-serif;
  transition: opacity 0.2s;
}
.vm-close:hover {
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0.8rem 1.4rem;
  }
  .nlinks {
    display: none;
  }
  section {
    padding: 5rem 1.4rem;
  }
  #hero {
    padding: 5rem 1.4rem 3rem;
  }
  .hero-inner {
    width: 100%;
  }
  #cta {
    padding: 6rem 1.4rem;
  }
  .cap-slide {
    grid-template-columns: 1fr;
    padding: 5rem 1.4rem;
    gap: 2.5rem;
    min-height: auto;
  }
  #cs3 .cap-text,
  #cs5 .cap-text {
    order: 1;
  }
  #cs3 .cap-graphic,
  #cs5 .cap-graphic {
    order: 2;
  }
  .how-grid,
  .ag-layout,
  .ai-split,
  .wp-ai-grid,
  .safety-grid,
  .p2,
  .contact-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .ag-checks {
    grid-template-columns: 1fr;
  }
  .p2 {
    max-width: 100%;
  }
  .ref-steps {
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .page-hero {
    padding: 7rem 1.4rem 3rem;
  }
  .page-body {
    padding: 3rem 1.4rem 5rem;
  }
  .post-hero {
    padding: 7rem 1.4rem 3rem;
  }
  .post-body-wrap {
    padding: 2.5rem 1.4rem 5rem;
  }
  footer {
    padding: 2.5rem 1.4rem;
  }
}
