:root {
  --bg: #050506;
  --surface: #121213;
  --card: #0d0d0f;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #aebbd0;
  --purple: #635bff;
  --violet: #8b5cf6;
  --pink: #ec4899;
  --green: #22c55e;
  --yellow: #eab308;
  --blue: #3b82f6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

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

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 21.2vw, 400px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  background: #0b0b0d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong,
.city-track span {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.brand-text strong {
  color: #f4f4f7;
  font-size: 1rem;
  letter-spacing: normal;
}

.brand-text strong span {
  color: #6878ff;
}

.brand-text small {
  justify-self: end;
  margin-top: 5px;
  color: #8d96a7;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pill-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pill-btn.ghost {
  color: #08080a;
  border: 1px solid #fff;
  background: #fff;
}

.pill-btn.ghost:hover {
  color: #fff;
  border-color: #08080a;
  background: #08080a;
  transform: translateY(-1px);
}

.pill-btn.budget {
  color: #161616;
  border: 1px solid #fff;
  background: #fff;
  font-size: 0.94rem;
}

.pill-btn.budget:hover {
  color: #fff;
  border-color: #6366f1;
  background: #6366f1;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.34);
  transform: translateY(-1px);
}

main {
  animation: pageEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: top center;
}

/* Ambient glow slow pulse */
.animate-glow-slow {
  animation: ambientGlow 8s ease-in-out infinite alternate;
}

@keyframes ambientGlow {
  0% {
    transform: translate(-50%, 0) scale(0.95);
    opacity: 0.75;
  }
  100% {
    transform: translate(-50%, 8%) scale(1.1);
    opacity: 0.95;
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center 47%, rgba(99, 91, 255, 0.22), transparent 31%),
    radial-gradient(circle at center 47%, rgba(99, 91, 255, 0.11), transparent 42%),
    #050506;
}

.hero-home {
  min-height: 642px;
  padding: 151px 24px 78px;
  border-bottom: 1px solid var(--line);
}

.location-pill,
.method-pill {
  width: fit-content;
  margin: 0 auto 27px;
  padding: 7px 21px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 999px;
  color: #b15cff;
  background: rgba(139, 92, 246, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: normal;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
.price-card a,
.price-card button,
.system-grid a,
.ai-grid a {
  font-weight: 700;
}

h1 {
  max-width: 1010px;
  margin: 0 auto 22px;
  padding-bottom: 14px;
  font-family: Inter, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 84px;
  letter-spacing: normal;
  text-align: center;
}

h1 span {
  display: block;
  padding-bottom: 8px;
  color: transparent;
  background: linear-gradient(90deg, var(--purple), var(--violet) 42%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 704px;
  margin: 0 auto 41px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.45;
}

.hero-copy strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero-actions.single {
  gap: 0;
}

.hero-btn {
  min-width: 292px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.hero-btn.primary {
  background: var(--purple);
  box-shadow: 0 18px 48px rgba(99, 91, 255, 0.38);
}

.section {
  padding: 66px clamp(20px, 21vw, 397px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.05;
}

#process-title {
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: normal;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.process-card {
  min-width: 0;
  min-height: 200px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: #0c0c0d;
  text-align: center;
}

.process-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
}

.process-icon.purple {
  color: var(--purple);
}

.process-icon.green {
  color: var(--green);
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.process-card p,
.pillar-card li,
.compare-card li,
.pricing-section p,
.price-card p,
.price-card li,
.system-grid li,
.ai-grid p {
  color: #adc0d7;
  line-height: 1.46;
  overflow-wrap: anywhere;
}

.process-card p {
  max-width: 300px;
  margin-inline: auto;
}

.city-strip {
  position: relative;
  height: 66px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050506;
}

.city-track {
  position: absolute;
  inset: 0 auto auto 0;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.city-track span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  letter-spacing: normal;
  text-transform: uppercase;
}

.city-track span::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 42px;
  border-radius: 50%;
  background: var(--purple);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.subhero {
  min-height: 520px;
  padding: 128px 24px 54px;
}

.method-pill {
  color: #d3d7e8;
}

.method-pill span {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #35c874;
}

.subhero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.subhero .wide {
  max-width: 900px;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.mini-tags span {
  padding: 7px 14px;
  border: 1px solid rgba(99, 91, 255, 0.5);
  border-radius: 999px;
  color: #7f82ff;
  background: rgba(99, 91, 255, 0.14);
  font-weight: 700;
}

.mini-tags span:nth-child(1) {
  color: #7a80ff;
  border-color: #313690;
  background: #17183d;
}

.mini-tags span:nth-child(2) {
  color: #d66bff;
  border-color: #5c246d;
  background: #24112d;
}

.mini-tags span:nth-child(3) {
  color: #facc15;
  border-color: #714b06;
  background: #241906;
}

.mini-tags span:nth-child(4) {
  color: #34d399;
  border-color: #14543c;
  background: #09251b;
}

.mini-tags span:nth-child(5) {
  color: #60a5fa;
  border-color: #1f4e91;
  background: #0b1830;
}

.compare-section,
.pillars-section,
.pricing-section {
  padding: 64px clamp(20px, 4vw, 72px);
  background: #050506;
}

.section-heading.tight {
  max-width: 760px;
}

.section-heading.tight h2,
.plans-hero h1 {
  font-size: clamp(2rem, 2.25vw, 2.35rem);
}

.section-heading.tight h2 span,
.plans-hero span,
.pricing-section h2 span {
  color: var(--purple);
}

.section-heading.tight h2 {
  white-space: nowrap;
}

.section-heading.tight h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--violet) 48%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.compare-box {
  position: relative;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 40px auto 0;
  border-radius: 18px;
}

.compare-box::before,
.compare-box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 1px;
  pointer-events: none;
}

.compare-box::before {
  left: calc(50% - 1px);
  background: rgba(239, 68, 68, 0.7);
}

.compare-box::after {
  left: 50%;
  background: rgba(34, 197, 94, 0.72);
}

.compare-card {
  min-width: 0;
  padding: 30px 34px;
  background: #090a0a;
}

.compare-card.bad {
  border: 1px solid rgba(239, 68, 68, 0.7);
  border-right: 0;
  border-radius: 18px 0 0 18px;
}

.compare-card.good {
  border: 1px solid rgba(34, 197, 94, 0.72);
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.compare-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 1.12rem;
}

.compare-card.bad h3 {
  color: #ff5f5f;
}

.compare-card.good h3 {
  color: #30e078;
}

.compare-card h3 span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
}

.compare-card.bad h3 span {
  border: 1px solid rgba(239, 68, 68, 0.34);
  background: rgba(239, 68, 68, 0.12);
}

.compare-card.good h3 span {
  border: 1px solid rgba(34, 197, 94, 0.34);
  background: rgba(34, 197, 94, 0.12);
}

.compare-card ul,
.pillar-card ul,
.price-card ul,
.system-grid ul {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.compare-card li {
  min-width: 0;
  white-space: nowrap;
  font-size: clamp(0.78rem, 0.74vw, 0.9rem);
  line-height: 1.32;
}

.compare-card li strong {
  color: #fff;
}

.compare-card.bad li::before {
  content: "×";
  margin-right: 14px;
  color: #ff4747;
  font-weight: 700;
}

.compare-card.good li::before,
.price-card li::before,
.system-grid li::before {
  content: "✓";
  margin-right: 12px;
  color: #34f085;
  font-weight: 700;
}

.overline {
  max-width: 930px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 84px;
  color: #33415d;
  text-align: center;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.overline::before,
.overline::after {
  content: "";
  height: 1px;
  flex: 1;
}

.overline::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
}

.overline::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
}

.pillar-card {
  max-width: 930px;
  margin: 0 auto 72px;
  padding: 36px 36px 30px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--purple);
  border-radius: 14px;
  background: #0d0d0e;
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.pillar-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pillar-card.purple {
  border-top-color: #b456ff;
}

.pillar-card.gold {
  border-top-color: var(--yellow);
}

.pillar-card.green {
  border-top-color: var(--green);
}

.pillar-card.google {
  border-top-color: var(--blue);
}

.pillar-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(99, 91, 255, 0.15);
}

.pillar-head > span svg {
  width: 23px;
  height: 23px;
}

.pillar-card.blue .pillar-head > span {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.16);
}

.pillar-card.purple .pillar-head > span {
  color: #b456ff;
  background: rgba(180, 86, 255, 0.16);
}

.pillar-card.gold .pillar-head > span {
  color: #eab308;
  background: rgba(234, 179, 8, 0.16);
}

.pillar-card.green .pillar-head > span {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.16);
}

.pillar-card.google .pillar-head > span {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.16);
}

.pillar-head small {
  font-weight: 700;
}

.pillar-card.blue .pillar-head small {
  color: #6366f1;
}

.pillar-card.purple .pillar-head small {
  color: #b456ff;
}

.pillar-card.gold .pillar-head small {
  color: #eab308;
}

.pillar-card.green .pillar-head small {
  color: #22c55e;
}

.pillar-card.google .pillar-head small {
  color: #60a5fa;
}

.pillar-head h2 {
  margin: 2px 0 6px;
}

.pillar-head em {
  color: #8794a8;
}

.pillar-card .alert {
  margin: 28px 0;
  padding: 14px 18px;
  border: 1px solid #4a1d1c;
  border-radius: 8px;
  color: #fff;
  background: #231212;
  font-weight: 700;
}

.pillar-card .alert span {
  color: #c9b7b7;
}

.pillar-card li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: #7f8da0;
  transition: transform 200ms ease, background 200ms ease, padding-left 200ms ease;
}

.pillar-card li strong {
  color: #f4f7fb;
  font-weight: 700;
}

.pillar-card li:hover {
  padding-left: 12px;
  background: #101014;
  transform: translateX(8px);
}

.pillar-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border-radius: 50%;
  color: #7f82ff;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
}

.pillar-card b {
  display: inline-flex;
  margin-top: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(99, 91, 255, 0.5);
  border-radius: 999px;
  color: #6f73ff;
  background: rgba(99, 91, 255, 0.12);
  font-size: 0.75rem;
}

.aftercare-section {
  padding: 44px clamp(20px, 4vw, 72px) 74px;
  background: #050506;
}

.support-card {
  max-width: 930px;
  display: flex;
  gap: 22px;
  margin: 0 auto 118px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #0d0d0e;
}

.support-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--purple);
  background: rgba(99, 91, 255, 0.18);
  font-weight: 700;
}

.support-icon svg {
  width: 24px;
  height: 24px;
}

.support-card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.support-card p {
  max-width: 760px;
  color: #adc0d7;
  line-height: 1.5;
}

.support-card p strong {
  color: #fff;
}

.support-maintenance-shell {
  max-width: 930px;
}

.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(99, 91, 255, 0.4);
  border-radius: 999px;
  color: #7f82ff;
  background: rgba(99, 91, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

.support-tags span b {
  font-weight: 700;
}

.support-tags span:nth-child(2) {
  color: #34d399;
  border-color: rgba(34, 197, 94, 0.42);
  background: rgba(34, 197, 94, 0.12);
}

.support-tags span:nth-child(3) {
  color: #facc15;
  border-color: rgba(234, 179, 8, 0.42);
  background: rgba(234, 179, 8, 0.12);
}

.support-tags span:nth-child(4) {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(96, 165, 250, 0.12);
}

.difference-quote {
  max-width: 815px;
  margin: 0 auto;
  padding: 30px 32px;
  border-left: 3px solid var(--yellow);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.07), rgba(234, 179, 8, 0.012));
}

.difference-quote p {
  margin-bottom: 22px;
}

.difference-quote p span {
  color: #d8ae12;
  font-weight: 700;
}

.difference-quote strong {
  display: block;
  color: #cfd5df;
  font-size: 1.02rem;
  line-height: 1.55;
}

.difference-quote .quote-light {
  color: #fff;
  font-weight: 700;
}

.difference-quote .quote-yellow {
  color: #facc15;
  font-weight: 700;
}

.difference-quote cite {
  display: block;
  margin-top: 18px;
  color: #6f7d90;
  text-align: right;
  font-style: normal;
}

.diff-cta {
  padding: 88px 20px 92px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(99, 91, 255, 0.045), rgba(236, 72, 153, 0.018) 48%, rgba(99, 91, 255, 0.035)),
    #050506;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.diff-cta h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.diff-cta h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.diff-cta p {
  max-width: 650px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.45;
}

.diff-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.diff-cta .hero-btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.025);
}

.diff-cta .hero-btn.primary {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.diff-cta .hero-btn.primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(16deg);
  animation: ctaSweep 2.35s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    background: #6366f1;
    box-shadow: 0 0 22px rgba(99, 102, 241, 0.42), 0 18px 48px rgba(99, 91, 255, 0.38);
  }

  50% {
    background: #7477ff;
    box-shadow: 0 0 38px rgba(99, 102, 241, 0.78), 0 18px 58px rgba(236, 72, 153, 0.22);
  }
}

@keyframes ctaSweep {
  0% {
    left: -45%;
  }

  58%,
  100% {
    left: 112%;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: #69768a;
  font-size: 0.82rem;
}

.trust-row b {
  display: inline-block;
  margin-right: 6px;
  font-weight: 700;
}

.trust-purple { color: #8b5cf6; }
.trust-yellow { color: #facc15; }
.trust-green { color: #34d399; }
.trust-blue { color: #60a5fa; }

.site-footer {
  padding: 44px 20px 36px;
  text-align: center;
  background: #050506;
}

.footer-logo {
  margin-bottom: 24px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer p {
  margin: 6px 0;
  color: #41506a;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 18px;
}

.site-footer nav a {
  color: #d9e2f2;
  font-size: 0.82rem;
}

.site-footer nav a.active {
  color: #7f82ff;
}

.site-footer nav a + a {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer small {
  color: #223047;
}

.plans-hero {
  padding: 92px 20px 56px;
  text-align: center;
  background: #050506;
}

.plans-hero h1 {
  margin-bottom: 18px;
  line-height: 0.9;
  text-shadow: 0 0 22px rgba(99, 91, 255, 0.42);
}

.plans-hero p {
  color: #fff;
  font-size: 1.15rem;
}

.pricing-section {
  border-top: 1px solid rgba(99, 91, 255, 0.35);
}

.pricing-section > h2 {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #6f73ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.pricing-section > p {
  max-width: 650px;
  margin: 0 auto 40px;
  text-align: center;
}

.pricing-grid,
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card,
.system-grid article,
.ai-grid article {
  position: relative;
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: #0d0d0e;
}

.price-card.consult {
  border-color: rgba(234, 179, 8, 0.5);
}

.price-card.vip {
  border-color: rgba(99, 91, 255, 0.9);
  background: rgba(99, 91, 255, 0.18);
}

.price-card h3 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.28rem;
}

.consult h3 {
  color: #facc15;
}

.vip h3 {
  color: #b360ff;
}

.price-box,
.vip-price {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(234, 179, 8, 0.55);
  border-radius: 10px;
  text-align: center;
}

.price-box strong,
.vip-price strong {
  font-size: 1.65rem;
}

.vip-price strong {
  color: #22e173;
}

.price-card h4 {
  color: #91a0ba;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.price-card li {
  display: flex;
  justify-content: space-between;
}

.price-card li span {
  color: #fff;
  font-weight: 700;
}

.price-card a,
.price-card button,
.system-grid a,
.ai-grid a {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #16b85f;
  font-weight: 700;
}

.price-card button {
  color: #887fff;
  border: 1px solid #887fff;
  background: transparent;
}

.system-grid small {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 18px;
  border-radius: 0 12px 0 8px;
  color: #fff;
  background: var(--purple);
  font-weight: 700;
}

.system-grid article {
  border-color: rgba(139, 92, 246, 0.55);
}

.system-grid .highlight {
  background: rgba(99, 91, 255, 0.18);
}

.system-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 1.5rem;
}

.system-grid strong span {
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-grid {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 40px auto 0;
}

.ai-grid article {
  border-color: rgba(139, 92, 246, 0.55);
}

.ai-grid article.gold {
  border-color: rgba(234, 179, 8, 0.55);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}

.quote-modal:target {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.quote-card {
  position: relative;
  z-index: 1;
  width: 320px;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
  background: #fff;
  color: #111827;
}

.quote-card h2,
.quote-card p {
  margin: 0;
  padding-left: 20px;
  color: #fff;
  background: #27d365;
}

.quote-card h2 {
  padding-top: 14px;
  font-size: 1.32rem;
}

.quote-card p {
  padding-top: 6px;
  padding-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

.quote-close {
  position: absolute;
  top: 11px;
  right: 12px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  font-size: 1.55rem;
  line-height: 1;
}

.quote-card input {
  width: calc(100% - 40px);
  height: 42px;
  display: block;
  margin: 20px 20px 0;
  padding: 0 12px;
  border: 1px solid #c9d0dc;
  border-radius: 8px;
  font-size: 0.9rem;
}

.quote-submit {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  border-radius: 8px;
  color: #fff;
  background: #27d365;
  font-weight: 700;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.18);
}

.quote-card small {
  display: block;
  margin: -4px 0 18px;
  color: #677183;
  text-align: center;
  font-size: 0.62rem;
}

.floating-whatsapp {
  position: fixed;
  isolation: isolate;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 28px rgba(37, 211, 102, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.26);
  animation: whatsappPulse 3.4s ease-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 34px rgba(37, 211, 102, 0.52);
}

.floating-whatsapp i {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

@keyframes whatsappPulse {
  0%,
  72% {
    opacity: 0;
    transform: scale(0.92);
  }

  82% {
    opacity: 0.55;
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.projects-section {
  padding: 82px 24px 90px;
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.12), transparent 34%),
    #050506;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-shell {
  max-width: 1160px;
  margin: 0 auto;
}

.projects-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.projects-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.08);
  font-size: 0.78rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.projects-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.projects-heading h2 span {
  color: #6366f1;
}

.projects-heading p {
  color: #aebbd0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.project-card {
  min-height: 338px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    #0a0a0d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

.project-card span {
  width: fit-content;
  margin-bottom: 24px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
}

.project-visual {
  position: relative;
  min-height: 122px;
  display: grid;
  place-items: center;
  margin: 0 -24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  background: transparent;
  font-size: 4rem;
}

.project-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0.08) 34%, rgba(139, 92, 246, 0.03) 58%, transparent 78%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.project-visual i {
  position: relative;
  z-index: 1;
  margin: 0;
  transition: transform 220ms ease;
}

.project-card:hover .project-visual i {
  transform: scale(1.09);
}

.project-icon-img {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(239, 68, 68, 0.34));
  transition: transform 220ms ease, filter 220ms ease;
}

.project-card:hover .project-icon-img {
  transform: scale(1.09);
  filter: drop-shadow(0 0 28px rgba(239, 68, 68, 0.52));
}

.project-ai-rag {
  background:
    radial-gradient(circle at 45% 20%, rgba(234, 179, 8, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    #0a0a0d;
}

.project-ai-rag span {
  color: #facc15;
  border-color: rgba(234, 179, 8, 0.5);
  background: rgba(234, 179, 8, 0.11);
}

.project-ai-rag .project-visual {
  color: #d6af14;
}

.project-ai-rag .project-visual::before {
  background: radial-gradient(circle, rgba(234, 179, 8, 0.2) 0%, rgba(234, 179, 8, 0.09) 34%, rgba(234, 179, 8, 0.035) 58%, transparent 78%);
}

.project-ai-chat span {
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(168, 85, 247, 0.14);
}

.project-ai-chat .project-visual {
  color: #9270dc;
}

.project-prospectify {
  background:
    radial-gradient(circle at 50% 20%, rgba(239, 68, 68, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    #0a0a0d;
}

.project-prospectify span {
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.52);
  background: rgba(239, 68, 68, 0.12);
}

.project-prospectify .project-visual {
  color: #ef4444;
}

.project-prospectify .project-visual::before {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.24) 0%, rgba(239, 68, 68, 0.12) 34%, rgba(239, 68, 68, 0.05) 58%, transparent 78%);
}

.project-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.35rem;
}

.project-card p {
  margin-bottom: 0;
  color: #9ca9bd;
  line-height: 1.55;
}

.projects-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 34px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(135deg, #6264f5 0%, #8a3ff0 100%);
}

.projects-cta h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
}

.projects-cta i {
  margin: 0;
  color: #fff;
  font-size: 2.2rem;
}

.projects-cta p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

.projects-cta a {
  min-width: 160px;
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  color: #050506;
  background: #fff;
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
}

.about-faq-section {
  padding: 84px 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(99, 91, 255, 0.14), transparent 32%),
    radial-gradient(circle at 82% 70%, rgba(236, 72, 153, 0.08), transparent 34%),
    #07070a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-faq-shell {
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  margin: 0 auto;
  align-items: start;
}

.about-panel,
.faq-panel {
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(139, 92, 246, 0.36);
  border-radius: 999px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.1);
  font-size: 0.76rem;
  font-weight: 800;
}

.about-panel h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.about-panel p {
  max-width: 580px;
  margin-bottom: 14px;
  color: #aebbd0;
  font-size: 1rem;
  line-height: 1.65;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.about-metrics strong,
.about-metrics span {
  display: block;
}

.about-metrics strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1rem;
}

.about-metrics span {
  color: #8e99ad;
  font-size: 0.82rem;
  line-height: 1.35;
}

.faq-list {
  interpolate-size: allow-keywords;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.06);
}

.faq-list details::details-content {
  block-size: 0;
  opacity: 0;
  overflow: clip;
  transition:
    block-size 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
}

.faq-list details[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.faq-list summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-right: 4px;
  border-right: 1.5px solid #c4b5fd;
  border-bottom: 1.5px solid #c4b5fd;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 260ms ease, border-color 260ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
  border-color: #fff;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: #aebbd0;
  font-size: 0.92rem;
  line-height: 1.55;
  transform-origin: top;
}

.faq-list p.faq-answer-animate {
  animation: faqReveal 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity;
}

.faq-list details.faq-closing p {
  animation: faqHide 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity;
}

.faq-list details.faq-closing::details-content {
  block-size: 0;
  opacity: 0;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes faqHide {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }
}

.ai-chat-widget {
  position: fixed;
  right: 26px;
  bottom: 96px;
  z-index: 61;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.ai-chat-toggle {
  width: 58px;
  height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid rgba(139, 92, 246, 0.44);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #635bff, #a855f7 58%, #ec4899);
  box-shadow: 0 0 32px rgba(139, 92, 246, 0.45);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-chat-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 42px rgba(168, 85, 247, 0.6);
}

.ai-chat-toggle i {
  margin: 0;
  font-size: 1.2rem;
}

.ai-chat-toggle span {
  margin-top: 0;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 900;
}

.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(430px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 132px));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(8, 8, 12, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58), 0 0 50px rgba(99, 91, 255, 0.18);
  backdrop-filter: blur(18px);
}

.ai-chat-widget.open .ai-chat-panel {
  display: flex;
  flex-direction: column;
}

.ai-chat-header {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(99, 91, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.ai-chat-minimize {
  float: right;
  color: #aebbd0;
  font-size: 0.78rem;
}

.ai-chat-header h2 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.ai-chat-header span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ca9bd;
  font-size: 0.78rem;
}

.ai-chat-header span i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.85);
}

.ai-chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.ai-message {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 14px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.ai-message.user {
  align-self: flex-end;
  color: #fff;
  background: #635bff;
}

.ai-message.bot {
  align-self: flex-start;
}

.ai-message.error {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
}

.ai-typing {
  width: fit-content;
  min-width: 56px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ai-typing span {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #c4b5fd;
  animation: aiTypingDot 1.05s ease-in-out infinite;
}

.ai-typing span:nth-child(2) {
  animation-delay: 0.14s;
}

.ai-typing span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes aiTypingDot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.ai-ask-again {
  align-self: flex-start;
  margin-top: -4px;
}

.ai-ask-again button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(99, 91, 255, 0.2);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ai-ask-again button:hover {
  transform: translateY(-1px);
  border-color: rgba(168, 85, 247, 0.58);
  background: rgba(99, 91, 255, 0.32);
}

.ai-quick-replies {
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -2px;
  padding: 2px 0 4px;
}

.ai-quick-reply {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(139, 92, 246, 0.26);
  border-radius: 999px;
  color: #e9ddff;
  background: rgba(139, 92, 246, 0.12);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ai-quick-reply:hover {
  transform: translateY(-1px);
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(139, 92, 246, 0.22);
}

.ai-quick-reply:last-child {
  flex-basis: 100%;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.ai-chat-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-form input {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.ai-chat-form button {
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #635bff;
}

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-faq-section {
    padding: 58px 20px;
  }

  .about-faq-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-panel,
  .faq-panel {
    padding: 22px 18px;
  }

  .about-panel h2 {
    font-size: 2rem;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .project-featured {
    grid-column: auto;
  }

  .projects-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .ai-chat-widget {
    right: 18px;
    bottom: 88px;
  }

  .ai-chat-panel {
    width: min(430px, calc(100vw - 24px));
    height: min(560px, calc(100vh - 128px));
  }

  .ai-quick-replies {
    gap: 7px;
  }

  .ai-quick-reply {
    flex: 1 1 calc(50% - 7px);
    min-height: 38px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }
}

.terms-page {
  min-height: 100vh;
  padding: 92px 20px 54px;
  background: #101011;
}

.terms-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 4px;
}

.terms-title {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-title img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #0b0b0d;
}

.terms-title h1 {
  max-width: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  text-align: left;
}

.terms-title p {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
}

.term-block {
  margin: 0 0 24px;
}

.term-block h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.22;
}

.term-block p,
.term-block li {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.term-block ul {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding-left: 18px;
}

.term-block small {
  display: block;
  color: #c8d0df;
  font-size: 0.78rem;
  line-height: 1.45;
}

.term-icon {
  width: 20px;
  flex: 0 0 20px;
  display: inline-grid;
  place-items: center;
  color: #6366f1;
  font-weight: 700;
}

.term-icon.green,
.green-text {
  color: #22c55e;
}

.term-icon.lilac,
.purple-text {
  color: #c084fc;
}

.term-note {
  margin: 14px 0 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: #202020;
}

.term-note p {
  margin: 8px 0 0;
}

.danger-text {
  color: #ff5f5f !important;
}

.highlight-green,
.highlight-purple {
  padding: 18px;
  border-radius: 10px;
}

.highlight-green {
  border: 1px solid rgba(34, 197, 94, 0.58);
  background: rgba(34, 197, 94, 0.1);
}

.highlight-purple {
  border: 1px solid rgba(168, 85, 247, 0.58);
  background: rgba(168, 85, 247, 0.12);
}

.term-warning {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(239, 68, 68, 0.42);
  border-radius: 4px;
  background: rgba(127, 29, 29, 0.28);
}

.term-warning p:last-child {
  margin-bottom: 0;
}

.terms-actions {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.terms-actions a {
  min-width: 220px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: #5b4df4;
  font-weight: 700;
}

.terms-menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.terms-menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.terms-menu-toggle i {
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .site-header {
    padding-inline: 20px;
  }

  .process-grid,
  .pricing-grid,
  .system-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.78rem;
  }

  .brand-text small {
    font-size: 0.52rem;
  }

  .nav-actions .ghost {
    display: none;
  }

  .terms-desktop-budget {
    display: none;
  }

  .terms-menu-toggle {
    display: grid;
  }

  .pill-btn.budget:not(.terms-desktop-budget) {
    width: 38px;
    flex: 0 0 38px;
    min-height: 38px;
    padding: 0;
    font-size: 0;
  }

  .pill-btn.budget svg {
    width: 18px;
    height: 18px;
  }

  .hero-home,
  .subhero {
    min-height: 620px;
    padding: 104px 20px 64px;
  }

  .location-pill,
  .method-pill {
    max-width: 318px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1,
  .subhero h1 {
    max-width: 320px;
    font-size: clamp(2.18rem, 9.4vw, 2.75rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 318px;
    font-size: 1rem;
  }

  .subhero .wide {
    max-width: 318px;
  }

  .hero-actions {
    flex-direction: column;
    width: min(100%, 286px);
  }

  .hero-btn {
    min-width: 0;
    width: 100%;
  }

  .section,
  .compare-section,
  .pillars-section,
  .pricing-section {
    padding: 56px 20px;
  }

  .section-heading {
    max-width: 318px;
  }

  .section-heading.tight {
    max-width: 318px;
  }

  .section-heading h2,
  .section-heading.tight h2,
  .plans-hero h1 {
    font-size: 1.86rem;
    line-height: 1.12;
  }

  .section-heading.tight h2 {
    white-space: normal;
  }

  .compare-box,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .compare-box::before,
  .compare-box::after {
    inset: auto 0 auto 0;
    width: auto;
    height: 1px;
  }

  .compare-box::before {
    top: calc(50% - 1px);
  }

  .compare-box::after {
    top: 50%;
  }

  .mini-tags {
    max-width: 318px;
    margin-inline: auto;
    gap: 8px;
  }

  .mini-tags span {
    padding: 6px 10px;
    font-size: 0.86rem;
  }

  .compare-card.bad {
    border-right: 1px solid rgba(239, 68, 68, 0.7);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
  }

  .compare-card.good {
    border-left: 1px solid rgba(34, 197, 94, 0.72);
    border-top: 0;
    border-radius: 0 0 18px 18px;
  }

  .compare-card,
  .pillar-card {
    padding: 28px 20px;
  }

  .compare-card li {
    white-space: normal;
  }

  .process-card {
    padding: 28px 18px;
  }

  .process-card p {
    max-width: 275px;
  }

  .support-card {
    display: grid;
    margin-bottom: 72px;
    padding: 28px 20px;
  }

  .diff-cta-actions,
  .site-footer nav {
    flex-direction: column;
    align-items: center;
  }

  .site-footer nav a + a {
    padding-left: 0;
    border-left: 0;
  }

  .diff-cta h2 {
    max-width: 330px;
    font-size: 2.25rem;
  }

  .difference-quote {
    padding: 24px 20px;
  }

  .plans-hero p {
    max-width: 318px;
    margin-inline: auto;
    font-size: 1rem;
  }

  .pricing-section > h2 {
    max-width: 318px;
    margin-inline: auto;
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .price-card li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-card li span {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillar-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-whatsapp::before {
    animation: none;
  }
}

/* Rocha-style hero glow used on the home and differentials pages. */
.reference-hero {
  isolation: isolate;
  min-height: max(clamp(500px, 54vw, 580px), 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 62% 84% at 50% 42%, rgba(44, 42, 98, 0.42) 0%, rgba(21, 20, 48, 0.28) 38%, rgba(7, 7, 12, 0.68) 66%, rgba(5, 5, 6, 1) 100%),
    radial-gradient(circle at 50% 35%, rgba(139, 92, 246, 0.24), transparent 36%),
    linear-gradient(180deg, #050506 0%, #07070b 48%, #050506 100%);
}

.reference-hero::before,
.reference-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reference-hero::before {
  z-index: -2;
  background:
    radial-gradient(ellipse 98% 88% at 50% 47%, transparent 0 48%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.88));
}

.reference-hero::after {
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

.reference-hero + section {
  border-top-width: 0 !important;
  border-top-color: transparent !important;
}

.reference-hero > .absolute:first-child {
  z-index: -3;
  opacity: 0.48;
  filter: blur(150px) saturate(1.25);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.55) 0%, rgba(168, 85, 247, 0.36) 42%, rgba(236, 72, 153, 0.22) 68%, transparent 74%);
}

body .text-gradient {
  color: transparent;
  background: linear-gradient(95deg, #6d66ff 0%, #9b5cff 46%, #f04ea8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reference-hero h1 {
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.48);
}

.reference-hero p {
  color: #aebbd0;
}

.reference-hero .inline-block,
.reference-hero .inline-flex {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 36px rgba(139, 92, 246, 0.08);
  backdrop-filter: blur(12px);
}

.reference-hero .whatsapp-link {
  background: #635bff;
  box-shadow: 0 18px 56px rgba(99, 91, 255, 0.42);
}

.reference-hero .whatsapp-link:hover {
  background: #5450f5;
  box-shadow: 0 22px 68px rgba(99, 91, 255, 0.54);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .reference-hero {
    min-height: 560px;
    background:
      radial-gradient(ellipse 118% 74% at 50% 34%, rgba(44, 42, 98, 0.46) 0%, rgba(16, 16, 36, 0.58) 48%, rgba(4, 4, 5, 1) 100%),
      #050506;
  }

  .reference-hero h1 {
    line-height: 1.08;
  }
}
