:root {
  --bg: #050816;
  --bg-soft: #020617;
  --bg-elevated: #0b1120;
  --accent: #22d3ee;
  --accent-2: #38bdf8;
  --accent-soft: rgba(34, 211, 238, 0.13);
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --danger: #f97373;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.9);
  --max-width: 1120px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 50%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.95),
    rgba(2, 6, 23, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: radial-gradient(circle at 10% 0%, #22d3ee 0, #1d4ed8 40%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.8);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.logo-text-main {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-link {
  position: relative;
  padding: 4px 0;
  color: var(--text-soft);
  transition: color 0.18s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(to right, #22d3ee, #38bdf8);
  transition: width 0.18s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(34, 211, 238, 0.7);
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.25), rgba(34, 211, 238, 0.12) 55%);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.8), 0 0 20px rgba(34, 211, 238, 0.15);
  color: #e5e7eb;
}

.nav-cta span.icon {
  font-size: 16px;
}

.nav-cta:hover {
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.35), rgba(34, 211, 238, 0.18) 55%);
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.85), 0 0 30px rgba(34, 211, 238, 0.3);
  color: #ffffff;
}

.nav-cta:active {
  transform: translateY(0);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-soft);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-soft);
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease,
    bottom 0.18s ease;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  bottom: -5px;
}

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 8px 18px 14px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: radial-gradient(circle at top, #020617 0, #000 70%);
}

.nav-links-mobile .nav-link {
  padding: 6px 0;
  font-size: 15px;
}

.nav-links-mobile .nav-cta {
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}

/* LAYOUT / SECTIONS */

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 18px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 420px;
}

/* HERO */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 18px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px 4px 4px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 60%);
  margin-bottom: 16px;
  color: var(--text-soft);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.35);
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.hero-title span.highlight {
  background: linear-gradient(to right, #22d3ee, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 22px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  font-size: 11px;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22d3ee;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-meta {
  font-size: 12px;
  color: var(--text-soft);
}

.hero-meta strong {
  color: var(--accent);
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
  padding: 20px;
}

.hero-orbit {
  position: absolute;
  inset: -40px -20px auto;
  background: conic-gradient(
    from 200deg,
    rgba(56, 189, 248, 0.3),
    rgba(129, 140, 248, 0),
    rgba(59, 130, 246, 0.5),
    rgba(56, 189, 248, 0.15)
  );
  filter: blur(40px);
  opacity: 0.7;
  z-index: -1;
}

.hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, #0f172a 0, #020617 55%, #000 100%);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  gap: 8px;
  transition: background 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  border-color: rgba(56, 189, 248, 0.6);
  background: radial-gradient(circle at 10% 0%, #22d3ee 0, #1d4ed8 50%, #0f172a 100%);
  box-shadow: 0 18px 50px rgba(8, 47, 73, 0.9);
  color: #0b1120;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(8, 47, 73, 0.95);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-soft);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
  color: var(--text);
}

/* CARDS / GRIDS */

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 26px;
  }
  .hero-visual {
    order: -1;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000 100%);
  padding: 14px 14px 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.85);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.22), transparent 55%);
  transition: opacity 0.2s ease;
}

.card:hover::before {
  opacity: 1;
}

.card-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-body {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tag {
  font-size: 11px;
  padding: 5px 9px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.48);
  color: var(--text-soft);
}

/* SPLIT LAYOUT (AI / CONSULTING) */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
}

.split-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, #0b1120 0, #020617 50%, #000 100%);
  padding: 18px 18px 18px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.split-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.split-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.split-card-sub {
  font-size: 13px;
  color: var(--text-soft);
}

.badge-outline {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-soft);
  white-space: nowrap;
}

.split-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .split-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

.split-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-soft);
  display: grid;
  gap: 6px;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.split-list li span.bullet {
  margin-top: 2px;
  font-size: 12px;
  color: var(--accent);
}

.split-footer {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-soft);
}

.split-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  cursor: pointer;
  color: var(--accent);
}

/* CONTACT PAGE */

.contact {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top, #020617 0, #000 65%);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
}

@media (max-width: 840px) {
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-intro-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-intro-body {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.contact-meta {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--text-soft);
}

.contact-meta span strong {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.field {
  display: grid;
  gap: 4px;
}

.field label {
  font-size: 12px;
  color: var(--text-soft);
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.65);
  background: rgba(15, 23, 42, 1);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-footer {
  font-size: 11px;
  color: var(--text-soft);
}

.contact-footer strong {
  color: var(--accent);
}

/* FOOTER */

.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px;
  font-size: 11px;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--accent);
}

/* TESTIMONIALS */

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

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

@media (max-width: 720px) {
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.testimonial {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000 100%);
  padding: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.85);
}

.testimonial-quote {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 12px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 10% 0%, #22d3ee 0, #1d4ed8 50%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 11px;
  color: var(--text-soft);
}

/* STATS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

@media (max-width: 540px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.stat-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, #020617 0, #000 70%);
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.85);
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(to right, #22d3ee, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-soft);
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #020617 0, #000 60%);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(34, 211, 238, 0.4);
}

.faq-question {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-toggle {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 16px 14px;
}

/* PRICING */

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

@media (max-width: 880px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, #020617 0, #000 70%);
  padding: 20px 18px 18px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.85);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card.featured {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9), 0 0 40px rgba(34, 211, 238, 0.15);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.5);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 18px;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(to bottom, #22d3ee, #1d4ed8);
  color: #0b1120;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
  min-height: 40px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 18px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* CTA SECTION */

.cta-box {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(34, 211, 238, 0.4);
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.08) 0, transparent 60%),
              radial-gradient(circle at bottom right, #020617 0, #000 70%);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9), 0 0 60px rgba(34, 211, 238, 0.12);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 200deg,
    rgba(34, 211, 238, 0.15),
    transparent,
    rgba(34, 211, 238, 0.08),
    transparent
  );
  animation: rotate 8s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-box-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(to right, #22d3ee, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  color: transparent;
}

.cta-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CASE STUDIES */

.case-study {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #0b1120 0, #020617 50%, #000 100%);
  padding: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.85);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.case-study:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.4);
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.case-study-client {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.case-study-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.case-study-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.case-study-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.case-study-metric {
  text-align: center;
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}

.metric-label {
  font-size: 11px;
  color: var(--text-soft);
}

/* FEATURE HIGHLIGHTS */

.feature-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.feature-highlight:nth-child(even) .feature-visual {
  order: -1;
}

@media (max-width: 880px) {
  .feature-highlight {
    grid-template-columns: minmax(0, 1fr);
  }
  .feature-highlight:nth-child(even) .feature-visual {
    order: 0;
  }
}

.feature-content {
  padding: 12px 0;
}

.feature-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 8px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
}

.feature-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at center, #0b1120 0, #020617 50%, #000 100%);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.85);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.15), transparent 60%);
  opacity: 0.5;
}

/* SMOOTH ANIMATIONS */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

/* UTILITY CLASSES */

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.mt-small {
  margin-top: 16px;
}

.mt-medium {
  margin-top: 32px;
}

.mt-large {
  margin-top: 48px;
}

.mb-small {
  margin-bottom: 16px;
}

.mb-medium {
  margin-bottom: 32px;
}

.mb-large {
  margin-bottom: 48px;
}
