/*
 * SeenByAI Theme - Main Stylesheet
 * Version: 1.0.0
 */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1117;
  --navy2: #111722;
  --navy3: #161d28;
  --navy4: #1a2233;
  --cyan: #00e5ff;
  --cyan2: #00bfa5;
  --purple: #7c3aed;
  --purple2: #9f5ff0;
  --teal: #00d4aa;
  --grad: linear-gradient(135deg, #00e5ff 0%, #7c3aed 60%, #00bfa5 100%);
  --grad2: linear-gradient(135deg, #00e5ff, #7c3aed);
  --grad3: linear-gradient(135deg, #7c3aed, #00bfa5);
  --tx: #ffffff;
  --mu: rgba(255, 255, 255, 0.6);
  --fa: rgba(255, 255, 255, 0.32);
  --b1: rgba(255, 255, 255, 0.07);
  --b2: rgba(255, 255, 255, 0.12);
  --b3: rgba(0, 229, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: var(--tx);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(0, 229, 255, 0.25);
  color: #fff;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3);
  border-radius: 3px;
}

/* ─── LOGO ─── */
.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

/* ─── NAV ─── */
#site-navigation,
nav#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  border-bottom: 0.5px solid transparent;
}

#site-navigation.sc,
nav#nav.sc {
  background: rgba(13, 17, 23, 0.96);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--b1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a,
#site-navigation ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fa);
  transition: color 0.2s;
}

.nav-links a:hover,
#site-navigation ul li a:hover {
  color: var(--tx);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* WordPress menu compatibility */
#site-navigation .nav-links {
  margin: 0;
  padding: 0;
}

/* ─── BUTTONS ─── */
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  border-radius: 10px;
}

.btn-sm { font-size: 13px; padding: 9px 20px; }
.btn-md { font-size: 14px; padding: 12px 26px; }
.btn-lg { font-size: 15px; padding: 15px 34px; }
.btn-xl { font-size: 16px; padding: 17px 40px; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--b2);
  color: var(--tx);
  border-radius: 10px;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.btn-grad {
  background: var(--grad2);
  color: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.btn-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00e5ff, #9f5ff0);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-grad:hover::before { opacity: 1; }
.btn-grad:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
  color: #fff;
}
.btn-grad span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--cyan);
  border-radius: 10px;
}
.btn-outline:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.7);
  color: var(--cyan);
}

.btn-white {
  background: #fff;
  color: #0d1117;
  font-weight: 700;
  border-radius: 10px;
}
.btn-white:hover {
  background: #e8f4ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ─── GRID BG ─── */
.gbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.022) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── ANIMATIONS ─── */
@keyframes fu {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.vi { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.a0 { animation: fu 0.7s ease both; }
.a1 { animation: fu 0.7s 0.1s ease both; }
.a2 { animation: fu 0.7s 0.2s ease both; }
.a3 { animation: fu 0.7s 0.3s ease both; }
.a4 { animation: fu 0.7s 0.4s ease both; }
.a5 { animation: fu 0.7s 0.5s ease both; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 2rem 90px;
  position: relative;
  overflow: hidden;
}

.hero-orb1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.14) 0%, transparent 65%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.1) 0%, transparent 65%);
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-orb3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 191, 165, 0.08) 0%, transparent 65%);
  bottom: 10%;
  right: -100px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--purple2);
}

.hbdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: bp 2s ease-in-out infinite;
}
@keyframes bp {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

.h1 {
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 980px;
}
.h1 .grad-text { color: var(--cyan); }
.h1 .dim { color: rgba(255, 255, 255, 0.38); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--mu);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-proof {
  font-size: 13px;
  color: var(--fa);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hp-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fa);
}

/* AI PILLS */
.ai-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.ai-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mu);
  background: var(--navy3);
  border: 1px solid var(--b2);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
}
.ai-pill:hover {
  border-color: rgba(0, 229, 255, 0.35);
  color: var(--tx);
  background: rgba(0, 229, 255, 0.05);
}
.ai-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 44px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.6), transparent);
  animation: sc 2.2s ease-in-out infinite;
}
@keyframes sc {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ─── SECTIONS ─── */
section {
  padding: 7rem 2rem;
  position: relative;
}
.con {
  max-width: 1180px;
  margin: 0 auto;
}
.con-sm {
  max-width: 800px;
  margin: 0 auto;
}
.slbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
}
.slbl::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--grad2);
  flex-shrink: 0;
}
.stitle {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.1rem;
}
.ssub {
  font-size: 16px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.8;
  max-width: 560px;
}
.grad-text { color: var(--cyan); }

/* ─── MARQUEE ─── */
.mq-wrap {
  background: var(--navy2);
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
  padding: 1.4rem 0;
  overflow: hidden;
  position: relative;
}
.mq-wrap::before,
.mq-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 1;
  pointer-events: none;
}
.mq-wrap::before { left: 0; background: linear-gradient(to right, var(--navy2), transparent); }
.mq-wrap::after  { right: 0; background: linear-gradient(to left, var(--navy2), transparent); }

.mq-track {
  display: flex;
  gap: 3rem;
  animation: mq 35s linear infinite;
  width: max-content;
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fa);
  white-space: nowrap;
}
.mq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  flex-shrink: 0;
}
@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── PROBLEM ─── */
.prob-sec { background: var(--navy2); }
.prob-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.prob-card {
  background: rgba(220, 50, 50, 0.07);
  border: 1px solid rgba(220, 50, 50, 0.18);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s, border-color 0.2s;
}
.prob-card:hover {
  transform: translateX(5px);
  border-color: rgba(220, 50, 50, 0.3);
}
.prob-x {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(220, 50, 50, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e24b4a;
  font-weight: 800;
  font-size: 14px;
}
.prob-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.prob-text p {
  font-size: 13px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.6;
}
.prob-stat {
  background: var(--navy3);
  border: 1px solid var(--b3);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.prob-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(124, 58, 237, 0.05));
  pointer-events: none;
}
.pstat-n {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cyan);
}
.pstat-l {
  font-size: 14px;
  font-weight: 400;
  color: var(--mu);
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── STATS BAR ─── */
.stat-bar {
  background: var(--navy3);
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
  padding: 3.5rem 2rem;
}
.stat-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-n {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cyan);
}
.stat-l {
  font-size: 13px;
  font-weight: 400;
  color: var(--mu);
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── STEPS ─── */
.steps {
  max-width: 780px;
  margin: 4.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 3.5rem;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.2), transparent);
}
.step:last-child::after { display: none; }

.step-n {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  color: var(--cyan);
  font-family: "DM Mono", monospace;
}
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 3px 11px;
  border-radius: 100px;
  margin-bottom: 0.65rem;
}
.step-c h3 {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.step-c p {
  font-size: 15px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.75;
}

/* ─── PLATFORMS ─── */
.plat-sec { background: var(--navy2); }
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 3.5rem;
}
.plat-card {
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--b1);
  background: var(--navy3);
  transition: all 0.25s;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.plat-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-5px);
}
.plat-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 22px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.plat-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.plat-card p {
  font-size: 13px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.plat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 1rem;
  font-family: "DM Mono", monospace;
  position: relative;
  z-index: 1;
}

/* ─── RESULTS GRID ─── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 3.5rem;
}
.result-card {
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--b1);
  background: var(--navy2);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.25s;
}
.result-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  transform: translateY(-3px);
}
.result-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.result-content p {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.7;
}

/* ─── TRUST ─── */
.trust-sec { background: var(--navy2); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.5rem;
}
.tc {
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid var(--b1);
  background: var(--navy3);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.tc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad2);
  opacity: 0;
  transition: opacity 0.25s;
}
.tc:hover { border-color: var(--b3); }
.tc:hover::after { opacity: 1; }
.tc-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  font-size: 22px;
}
.tc h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}
.tc p {
  font-size: 14px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.75;
}

/* ─── PRICING ─── */
.price-sec { background: var(--navy2); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4.5rem;
  align-items: start;
}
.tier {
  border-radius: 22px;
  padding: 2.5rem;
  border: 1px solid var(--b1);
  background: var(--navy3);
  position: relative;
  transition: all 0.25s;
}
.tier:hover { transform: translateY(-5px); border-color: var(--b3); }
.tier.ft {
  border-color: rgba(124, 58, 237, 0.45);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1) 0%, var(--navy3) 55%);
}
.tier.ft:hover { border-color: rgba(0, 229, 255, 0.4); }
.tcrown {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.t-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fa);
  margin-bottom: 0.75rem;
  font-family: "DM Mono", monospace;
}
.t-name {
  font-size: 23px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}
.t-tag {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mu);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.t-price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--b1);
}
.t-pnum {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.t-pnum sup {
  font-size: 24px;
  vertical-align: top;
  margin-top: 9px;
  display: inline-block;
  font-weight: 600;
}
.t-pnum.grad-price { color: var(--cyan); }
.t-pper { font-size: 13px; color: var(--fa); font-weight: 400; margin-top: 5px; }
.t-custom {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
  color: var(--cyan);
}
.t-inc {
  font-size: 11px;
  font-weight: 700;
  color: var(--fa);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  margin-top: 1.5rem;
}
.t-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.25rem;
}
.t-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.55;
}
.t-chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(0, 229, 255, 0.3);
}
.t-chk svg { width: 9px; height: 9px; }

/* ─── TESTIMONIALS ─── */
.test-sec { background: var(--navy); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid var(--b1);
  background: var(--navy2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.test-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad2);
  opacity: 0;
  transition: opacity 0.25s;
}
.test-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
}
.test-card:hover::before { opacity: 1; }
.test-stars { font-size: 16px; letter-spacing: 2px; color: var(--cyan); }
.test-quote {
  font-size: 15px;
  font-weight: 400;
  color: var(--tx);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.test-role { font-size: 12px; color: var(--fa); font-weight: 400; line-height: 1.4; }

/* ─── TEAM ─── */
.team-sec { background: var(--navy2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid var(--b1);
  background: var(--navy3);
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.team-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  transform: translateY(-4px);
}
.team-avatar-wrap {
  position: relative;
  margin: 0 auto 1.25rem;
  width: 80px;
  height: 80px;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.team-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.team-card:hover .team-glow { opacity: 1; }
.team-name { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 4px; letter-spacing: -0.02em; }
.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 13px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.team-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.team-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: var(--cyan);
}

/* ─── FAQ ─── */
.faq-sec { background: var(--navy); }
.faq-list {
  max-width: 780px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fqi {
  background: var(--navy2);
  border: 1px solid var(--b1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.fqi.open { border-color: rgba(0, 229, 255, 0.25); }
.fq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.65rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
  transition: background 0.15s;
}
.fq:hover { background: rgba(255, 255, 255, 0.02); }
.fq-t {
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.fq-chev {
  width: 22px;
  height: 22px;
  color: var(--fa);
  flex-shrink: 0;
  transition: all 0.25s;
}
.fqi.open .fq-chev { transform: rotate(180deg); color: var(--cyan); }
.fa-ans {
  display: none;
  padding: 0 1.65rem 1.4rem;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--mu);
  line-height: 1.8;
}
.fqi.open .fa-ans { display: block; }

/* ─── CTA SECTION ─── */
.cta-sec {
  text-align: center;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--navy2);
}
.cta-orb {
  position: absolute;
  width: 900px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-orb2 {
  position: absolute;
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.08) 0%, transparent 65%);
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-ring {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-ring2 {
  position: absolute;
  width: 1000px; height: 1000px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ─── FOOTER ─── */
.foot-wrap {
  border-top: 1px solid var(--b1);
  background: var(--navy);
}
footer, #colophon {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.foot-links { display: flex; gap: 2rem; }
.foot-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fa);
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--tx); }
.foot-copy { font-size: 12px; color: var(--fa); }

/* ─── DIVIDERS ─── */
.gdiv {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 229, 255, 0.15), rgba(124, 58, 237, 0.15), transparent);
}

/* ─── BLOG / ARCHIVE ─── */
.page-content-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 2rem 7rem;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.post-card {
  border-radius: 20px;
  border: 1px solid var(--b1);
  background: var(--navy2);
  overflow: hidden;
  transition: all 0.25s;
}
.post-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
}
.post-card-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.post-card-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(124, 58, 237, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.post-card-body { padding: 1.5rem; }
.post-card-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}
.post-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--cyan); }
.post-card-excerpt {
  font-size: 13.5px;
  color: var(--mu);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.post-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.post-card-link:hover { opacity: 0.8; }

/* Single Post */
.single-post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 2rem 7rem;
}
.single-post-header { margin-bottom: 3rem; }
.single-post-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
.single-post-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.single-post-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mu);
}
.single-post-content h2, .single-post-content h3, .single-post-content h4 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 2rem 0 1rem;
}
.single-post-content h2 { font-size: 28px; }
.single-post-content h3 { font-size: 22px; }
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content a { color: var(--cyan); text-decoration: underline; text-decoration-style: dotted; }
.single-post-content ul, .single-post-content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--mu);
}
.single-post-content li { margin-bottom: 0.5rem; }
.single-post-content blockquote {
  border-left: 3px solid var(--cyan);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}
.single-post-content img {
  border-radius: 12px;
  margin: 2rem 0;
}
.single-post-content code {
  background: var(--navy3);
  border: 1px solid var(--b2);
  padding: 2px 8px;
  border-radius: 5px;
  font-family: "DM Mono", monospace;
  font-size: 14px;
  color: var(--cyan);
}
.single-post-content pre {
  background: var(--navy3);
  border: 1px solid var(--b2);
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

/* Pagination */
.pagination-wrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination-wrap a,
.pagination-wrap span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--b1);
  background: var(--navy2);
  color: var(--mu);
  transition: all 0.2s;
}
.pagination-wrap a:hover,
.pagination-wrap .current {
  border-color: rgba(0, 229, 255, 0.4);
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.05);
}

/* Comments */
.comments-area {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--b1);
}
.comments-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}
.comment-list { list-style: none; }
.comment {
  background: var(--navy2);
  border: 1px solid var(--b1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.comment-meta { font-size: 12px; color: var(--fa); margin-bottom: 0.75rem; }
.comment-content { font-size: 14px; color: var(--mu); line-height: 1.7; }

/* Contact Page */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 2rem 7rem;
}
.contact-form input,
.contact-form textarea,
.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--b2);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--tx);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 14px;
  display: block;
}
.contact-form input:focus,
.contact-form textarea:focus,
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-textarea:focus {
  border-color: rgba(0,229,255,0.5);
}
.contact-form label,
.wpcf7 label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mu);
  display: block;
  margin-bottom: 6px;
}
.contact-form textarea, .wpcf7-textarea { min-height: 140px; resize: vertical; }
.wpcf7-submit { /* handled by .btn-grad */ }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  #site-navigation, nav#nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .h1 { font-size: clamp(38px, 8vw, 64px); }
  .prob-inner { grid-template-columns: 1fr; gap: 3rem; }
  .plat-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .stat-g { grid-template-columns: repeat(2, 1fr); }
  section { padding: 5rem 1.5rem; }
  footer, #colophon { flex-direction: column; align-items: flex-start; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .plat-grid { grid-template-columns: 1fr; }
  .stat-g { grid-template-columns: 1fr; }
  .ai-row { gap: 8px; }
  .results-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
}

/* ─── WP ALIGNMENTS ─── */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--fa); text-align: center; margin-top: 5px; }

/* ─── MOBILE MENU TOGGLE ─── */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--b2);
  color: var(--tx);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 960px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(13,17,23,0.98); backdrop-filter: blur(24px); padding: 1.5rem 2rem; border-bottom: 1px solid var(--b1); gap: 1.25rem; }
}
