

:root {
  --bg: #0a0a10;
  --bg-soft: #0f0e17;
  --surface: #14131e;
  --surface-2: #191826;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --violet: #8b5cf6;
  --violet-2: #a78bfa;
  --violet-deep: #6d28d9;
  --cyan: #5eead4;

  --text: #f4f3f8;
  --text-muted: #a6a2b8;
  --text-faint: #6f6c82;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --grad-violet: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 55%, #4c1d95 100%);
  --grad-hero:
    radial-gradient(
      60% 60% at 70% 30%,
      rgba(139, 92, 246, 0.35) 0%,
      rgba(10, 10, 16, 0) 70%
    ),
    radial-gradient(
      50% 50% at 20% 80%,
      rgba(94, 234, 212, 0.12) 0%,
      rgba(10, 10, 16, 0) 70%
    );

  --shadow-glow:
    0 0 0 1px rgba(139, 92, 246, 0.15),
    0 20px 60px -20px rgba(139, 92, 246, 0.45);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--text);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
p {
  color: var(--text-muted);
  margin: 0;
}

::selection {
  background: var(--violet);
  color: #fff;
}

.container-xl {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- utility ---------- */
.text-violet {
  color: var(--violet-2) !important;
}
.text-muted-2 {
  color: var(--text-muted);
}
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .section {
    padding: 72px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 12px 2px rgba(139, 92, 246, 0.8);
}

.section-head {
  max-width: 640px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.15;
}

/* ---------- buttons ---------- */
.btn {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  border: 1px solid transparent;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn:active {
  transform: scale(0.97);
}

.btn-violet {
  background: var(--grad-violet);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-violet:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 24px 60px -16px rgba(139, 92, 246, 0.65);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm-pill {
  padding: 10px 20px;
  font-size: 14px;
}

/* ---------- navbar ---------- */
.navbar-nf {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10, 10, 16, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    padding 0.3s ease;
}
.navbar-nf.is-scrolled {
  border-bottom-color: var(--border);
  padding: 12px 0;
  background: rgba(10, 10, 16, 0.88);
}
.navbar-nf .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--grad-violet);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.55);
}
.brand-mark span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
}
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    inset: 74px 16px auto 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cta .btn-outline-light {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: 170px;
  padding-bottom: 90px;
  background: var(--grad-hero);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  /* mask-image: radial-gradient(60% 60% at 60% 20%, black, transparent 80%); */
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  max-width: 820px;
}
.hero .lead {
  font-size: 1.15rem;
  max-width: 560px;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.uptime-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.uptime-badge .pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(94, 234, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0);
  }
}
.uptime-badge .fig {
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.trust-strip {
  margin-top: 90px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.trust-strip .label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 42px;
}
.trust-logos span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--text-faint);
  opacity: 0.75;
  letter-spacing: -0.01em;
}

/* terminal / code mock (hero visual) */
.terminal-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--surface) 0%, #0d0c15 100%);
  box-shadow:
    0 40px 100px -30px rgba(0, 0, 0, 0.7),
    var(--shadow-glow);
  overflow: hidden;
}
.terminal-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.terminal-topbar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.terminal-body {
  padding: 22px 24px 26px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.9;
}
.terminal-body .c1 {
  color: #a78bfa;
}
.terminal-body .c2 {
  color: #5eead4;
}
.terminal-body .c3 {
  color: #f4f3f8;
}
.terminal-body .c4 {
  color: #6f6c82;
}

/* ---------- about / pillars ---------- */
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s ease,
    background 0.4s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--violet-2);
  font-size: 22px;
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.pillar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 14.5px;
}

/* ---------- showcase / architecture visual panel ---------- */
.showcase-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: radial-gradient(120% 120% at 20% 0%, #201a35 0%, #0c0b14 60%);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.showcase-panel .diagram {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.showcase-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
}
.showcase-label .play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

/* ---------- services list ---------- */
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 6px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  transition:
    background 0.3s ease,
    padding-left 0.3s ease;
}
.service-row:last-child {
  border-bottom: 1px solid var(--border);
}
.service-row:hover {
  background: rgba(139, 92, 246, 0.045);
  padding-left: 14px;
}
.service-idx {
  font-family: "JetBrains Mono", monospace;
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.05em;
  min-width: 64px;
}
.service-name {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 320px;
}
.service-name h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
}
.service-desc {
  max-width: 380px;
  font-size: 14.5px;
}
.service-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}
.service-row:hover .service-arrow {
  background: var(--violet);
  border-color: var(--violet);
  transform: rotate(45deg);
}

/* ---------- project cards ---------- */
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s ease;
  height: 100%;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
}
.project-thumb {
  height: 230px;
  position: relative;
  overflow: hidden;
}
.project-thumb .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.project-meta {
  padding: 20px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-meta h5 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.project-meta span {
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ---------- process ---------- */
.process-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px 26px;
  background: var(--surface);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.process-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.18);
  position: absolute;
  right: 20px;
  bottom: 6px;
}
.process-phase {
  font-size: 12.5px;
  color: var(--violet-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* ---------- pricing ---------- */
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  background: var(--surface);
  height: 100%;
  position: relative;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s ease;
}
.price-card.is-featured {
  background: linear-gradient(180deg, #1c1730 0%, #120f1c 100%);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--shadow-glow);
}
.price-card:hover {
  transform: translateY(-6px);
}
.price-tag {
  display: inline-block;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(139, 92, 246, 0.15);
  color: var(--violet-2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  margin-bottom: 22px;
}
.price-figure {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-figure small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-faint);
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.price-list li i {
  color: var(--violet-2);
  margin-top: 3px;
}

/* ---------- testimonials ---------- */
.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 32px 30px;
  height: 100%;
}
.quote-card i.bi-quote {
  font-size: 1.8rem;
  color: var(--violet);
  opacity: 0.6;
}
.quote-card p.quote-text {
  color: var(--text);
  font-size: 15.5px;
  margin: 18px 0 26px;
  line-height: 1.75;
}
.quote-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-violet);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.quote-person h6 {
  font-size: 14px;
  margin-bottom: 2px;
  color: #fff;
}
.quote-person span {
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ---------- blog/insights ---------- */
.post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  height: 100%;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.post-thumb {
  height: 190px;
  position: relative;
}
.post-body {
  padding: 24px 24px 28px;
}
.post-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet-2);
}
.post-body h5 {
  font-size: 1.05rem;
  margin: 12px 0 10px;
  line-height: 1.4;
}
.post-body p {
  font-size: 13.8px;
}

/* ---------- faq ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 4px;
  cursor: pointer;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-q h5 {
  font-size: 1.02rem;
  font-weight: 500;
}
.faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease;
}
.faq-item.open .faq-plus {
  transform: rotate(135deg);
  background: var(--violet);
  border-color: var(--violet);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding-top: 16px;
}
.faq-a p {
  font-size: 14.5px;
  max-width: 620px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  background: #00000040;
  backdrop-filter: blur(25px);
  height: 100%;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.25), transparent 45%);
}
.cta-banner h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 700px;
  margin-inline: auto;
}
.cta-banner .btn {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
.cta-banner .btn-violet {
  background: #fff;
  color: var(--violet-deep);
  box-shadow: none;
}
.cta-banner .btn-violet:hover {
  color: var(--violet-deep);
}
@media (max-width: 767px) {
  .cta-banner {
    padding: 56px 26px;
  }
}

/* ---------- newsletter + footer ---------- */
.newsletter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  color: #fff;
  min-width: 260px;
}
.newsletter-form input::placeholder {
  color: var(--text-faint);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--violet);
}

.footer-nf {
  padding-top: 70px;
  padding-bottom: 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  font-size: 14.5px;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.social-row a:hover {
  background: var(--violet);
  border-color: var(--violet);
}
.footer-col h6 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col ul a {
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.footer-col ul a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-faint);
}
.footer-wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 9rem);
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  letter-spacing: -0.03em;
  user-select: none;
  line-height: 4rem;
}

/* ---------- page hero (pricing page) ---------- */
.page-hero {
  padding-top: 170px;
  padding-bottom: 60px;
  text-align: center;
}
.page-hero .eyebrow {
  justify-content: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  max-width: 780px;
  margin-inline: auto;
}
.page-hero p {
  max-width: 560px;
  margin: 22px auto 0;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 5px;
  margin-top: 36px;
}
.billing-toggle button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.5px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}
.billing-toggle button.active {
  background: var(--grad-violet);
  color: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--text-muted);
}
.compare-table thead th {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding-top: 0;
}
.compare-table td i.bi-check-circle-fill {
  color: var(--violet-2);
}
.compare-table td i.bi-x-lg {
  color: var(--text-faint);
  opacity: 0.5;
}
.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 26px;
  background: var(--surface);
}

/* reveal animation base state (GSAP controlled) */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
}
.reveal-fade {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .newsletter-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top {
    gap: 36px;
  }
  .service-row {
    padding-left: 0 !important;
  }
}
.plan-features{
    margin: 0;
    padding: 0;
}
.plan-features li{
    padding: 5px 0;
}

.brand img{
    width: 200px;
}
.cta-bg-ban{
      position: relative;
    height: 400px;
}

.cta-banner{
    position: absolute;
    top: 0;
}
.project-card img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.feature-box-content a{
    color: #000;
}