/* ========= Root & Reset ========= */
:root {
  --bg-main: #050819;
  --bg-elevated: #0a0f2c;
  --bg-elevated-soft: #0d1436;
  --bg-gradient-start: #0a0f2c;
  --bg-gradient-end: #0d1b4c;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.18);
  --accent-strong: rgba(59, 130, 246, 0.65);
  --accent-glow: 0 0 40px rgba(59, 130, 246, 0.55);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.2);
  --danger: #f97373;

  --radius-lg: 18px;
  --radius-full: 999px;

  --shadow-soft: 0 22px 40px rgba(15, 23, 42, 0.8);

  --nav-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #111827 0, #020617 40%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

/* ========= Layout ========= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6.5rem 0;
  }
}

/* ========= Navbar ========= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.2)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.logo-title {
  font-weight: 700;
  font-size: 0.96rem;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nav-links {
  display: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), #4f46e5);
  transition: width 0.24s ease;
}

.nav-link:hover {
  color: #e5e7eb;
  transform: translateY(-1px);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  padding-inline: 1.4rem;
}

.nav-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.3), rgba(15, 23, 42, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: radial-gradient(circle at top, #020617, #020617 40%, #020617 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem 1.4rem;
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
  z-index: 35;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile .nav-link {
  padding-block: 0.35rem;
  font-size: 0.95rem;
}

.nav-cta-mobile {
  margin-top: 0.4rem;
  width: fit-content;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-mobile {
    display: none;
  }
}

/* ========= Buttons ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #60a5fa, #3b82f6 40%, #2563eb 100%);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6), var(--accent-glow);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.9), 0 0 48px rgba(59, 130, 246, 0.85);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.55);
  color: #e5e7eb;
}

.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.75);
  box-shadow: 0 0 28px rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

/* ========= Hero ========= */
.hero {
  position: relative;
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.8), #020617 65%);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  inset: auto -120px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0));
  opacity: 0.35;
  filter: blur(4px);
  transform: translate3d(60px, -80px, 0);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr);
  gap: 3.6rem;
  align-items: center;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 3.5rem;
  }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  margin-bottom: 0.9rem;
  color: #9ca3af;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-ctas {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-frame {
  width: 100%;
  max-width: 460px;
  border-radius: 22px;
  background: radial-gradient(circle at top left, #111827, #020617 70%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.95), 0 0 0 1px rgba(15, 23, 42, 0.7);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-11deg) rotateX(6deg) translateY(4px);
  transform-origin: center;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.8rem 0.9rem;
  background: linear-gradient(to bottom, #020617, #020617);
}

.mockup-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f2937;
}

.mockup-body {
  padding: 1.3rem 1.4rem 1.5rem;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.2), #020617 50%);
}

.mockup-hero {
  display: flex;
  justify-content: space-between;
  gap: 1.1rem;
  align-items: center;
}

.mockup-pill {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #9ca3af;
  margin-bottom: 0.65rem;
}

.mockup-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mockup-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

.mockup-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.mockup-btn {
  padding: 0.38rem 0.9rem;
  font-size: 0.7rem;
  border-radius: 999px;
}

.mockup-btn.primary {
  background: linear-gradient(to right, var(--accent), #4f46e5);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.8), 0 0 20px rgba(37, 99, 235, 0.7);
}

.mockup-btn.ghost {
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
}

.mockup-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.mockup-card {
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(to bottom, #020617, #020617);
  border: 1px solid rgba(31, 41, 55, 0.9);
  position: relative;
  overflow: hidden;
}

.mockup-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 60%);
}

@media (max-width: 899px) {
  .hero {
    padding-top: 4.1rem;
    padding-bottom: 3.6rem;
  }

  .hero-inner {
    gap: 2.6rem;
  }

  .mockup-frame {
    margin: 0 auto;
    transform: perspective(1200px) rotateY(-9deg) rotateX(7deg) translateY(3px);
  }
}

/* ========= Sections & Cards ========= */
.section-header {
  text-align: left;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.card-grid-4 {
  margin-top: 1.6rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

.card {
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.28), #020617 60%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.85);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.22));
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  transform: translateY(-6px) translateZ(0);
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95), 0 0 32px rgba(30, 64, 175, 0.6);
}

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

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  background: radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.9), rgba(9, 9, 11, 1));
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.7);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========= Trust Strip ========= */
.trust {
  padding-top: 1rem;
  padding-bottom: 3.3rem;
}

.trust-inner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.98));
  padding: 0.85rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.95);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, rgba(59, 130, 246, 0.75), rgba(15, 23, 42, 1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.5);
}

@media (min-width: 768px) {
  .trust-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ========= Before / After ========= */
.before-after {
  position: relative;
}

.before-after-wrapper {
  position: relative;
  margin-top: 1.5rem;
}

.before-after-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  position: absolute;
  top: -1.3rem;
  z-index: 2;
}

.before-label {
  left: 0;
}

.after-label {
  right: 0;
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.95);
  background: #020617;
}

.before-after-image {
  position: absolute;
  inset: 0;
}

.before-side {
  position: relative;
  z-index: 1;
}

.after-side {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.fake-site {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 1.2rem 1.2rem 1.4rem;
}

.fake-site-before {
  background: linear-gradient(to bottom, #020617, #020617);
}

.fake-site-after {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.6), #020617 70%);
}

.fake-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.fake-logo {
  width: 80px;
  height: 24px;
  border-radius: 8px;
}

.fake-logo-image {
  overflow: hidden;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fake-logo-before img {
  filter: grayscale(100%) contrast(1.1) brightness(1.2);
}

.fake-logo-after img {
  filter: none;
}

.fake-links {
  width: 110px;
  height: 10px;
  border-radius: 999px;
}

.dull {
  background: rgba(55, 65, 81, 0.8);
}

.crisp {
  background: rgba(148, 163, 184, 0.85);
}

.glow {
  background: linear-gradient(to right, #3b82f6, #4f46e5);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.9);
}

.fake-hero {
  margin-top: 0.7rem;
}

.fake-block {
  height: 10px;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

.fake-block.wide {
  width: 65%;
}

.fake-cta-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.fake-cta {
  flex: 1;
  height: 12px;
  border-radius: 999px;
}

.fake-cta.primary {
  background: linear-gradient(to right, #3b82f6, #4f46e5);
}

.fake-cta.outline {
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.fake-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.fake-card {
  height: 62px;
  border-radius: 16px;
}

.fake-card.dull {
  background: rgba(31, 41, 55, 0.9);
}

.fake-card.crisp {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.handle-line {
  width: 2px;
  height: 100%;
  background: rgba(148, 163, 184, 0.75);
}

.handle-knob {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, rgba(59, 130, 246, 0.85), #020617);
  border: 1px solid rgba(148, 163, 184, 0.9);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.handle-knob span {
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
}

@media (max-width: 640px) {
  .fake-site {
    height: 230px;
  }
}

/* ========= Process ========= */
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  margin-top: 1.4rem;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(148, 163, 184, 0.1), rgba(59, 130, 246, 0.75));
  opacity: 0.55;
}

.process-step {
  position: relative;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), #020617 70%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 1.2rem 1.2rem 1.25rem 3.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.step-icon {
  position: absolute;
  left: 0.7rem;
  top: 1rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 0, rgba(59, 130, 246, 0.9), rgba(15, 23, 42, 1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .process-line {
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(148, 163, 184, 0.1), rgba(59, 130, 246, 0.7));
  }

  .process-step {
    padding: 1.45rem 1.4rem 1.55rem;
  }

  .step-icon {
    position: static;
    margin-bottom: 0.6rem;
  }
}

/* ========= Showcase / Carousel ========= */
.showcase {
  position: relative;
}

.carousel-wrapper {
  position: relative;
  margin-top: 1.4rem;
}

.carousel {
  overflow: visible;
}

.carousel-track {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.carousel-card {
  flex: 1 1 min(260px, 100%);
  max-width: 260px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.34), #020617 60%);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.1rem 1.15rem 1.25rem;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.98);
  transform: perspective(1200px) rotateY(-8deg);
  transform-origin: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.carousel-card:hover {
  transform: perspective(1200px) rotateY(-4deg) translateY(-6px);
  border-color: rgba(59, 130, 246, 0.9);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.98), 0 0 34px rgba(37, 99, 235, 0.7);
}

.carousel-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.carousel-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.carousel-tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.carousel-mock {
  margin-top: 1rem;
  padding: 0.7rem;
  border-radius: 14px;
  background: #020617;
  border: 1px solid rgba(30, 64, 175, 0.8);
}

.carousel-hero {
  height: 56px;
  border-radius: 12px;
}

.carousel-hero.primary {
  background: linear-gradient(to right, #3b82f6, #4f46e5);
}

.carousel-hero.accent {
  background: linear-gradient(to right, #f97316, #ef4444);
}

.carousel-hero.secondary {
  background: linear-gradient(to right, #22c55e, #16a34a);
}

.carousel-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.carousel-pill {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.8);
}

.carousel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.carousel-grid span {
  height: 18px;
  border-radius: 8px;
  background: rgba(31, 41, 55, 1);
}

.carousel-arrow {
  display: none;
}

/* ========= CTA ========= */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 100%, #1e3a8a, transparent 55%),
    radial-gradient(circle at 100% 0, #3b82f6, transparent 55%);
  opacity: 0.28;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  border-radius: 26px;
  padding: 2.4rem 2rem 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.85),
    rgba(30, 64, 175, 0.8)
  );
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.98), 0 0 0 1px rgba(30, 64, 175, 0.6);
  text-align: left;
}

.cta-inner h2 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.cta-inner p {
  color: var(--text-muted);
  max-width: 29rem;
  font-size: 0.95rem;
}

.cta-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 640px) {
  .cta-inner {
    padding: 2rem 1.4rem 2.1rem;
  }
}

/* ========= Contact / Form ========= */
.contact .form-wrapper {
  margin-top: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(
    circle at top left,
    rgba(37, 99, 235, 0.24),
    rgba(15, 23, 42, 0.98)
  );
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.98);
  padding: 0.4rem;
}

.contact iframe {
  border-radius: 18px;
  background: transparent;
}

/* ========= Footer ========= */
.footer {
  padding: 2.4rem 0 2.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: radial-gradient(circle at top, #020617, #020617 60%, #000 100%);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-name {
  font-weight: 600;
  color: #e5e7eb;
}

.footer-business {
  margin-top: 0.1rem;
}

.footer-phone {
  margin-top: 0.25rem;
  display: inline-flex;
  color: #e5e7eb;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-nav a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #e5e7eb;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
  }
}

/* ========= Scroll Reveal ========= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= Utilities ========= */
@media (max-width: 640px) {
  .section {
    padding-inline: 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-ctas .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .trust-inner {
    margin-inline: 1.5rem;
  }

  .before-after-slider {
    margin-inline: 0.2rem;
  }

  .carousel-track {
    justify-content: center;
  }

  .carousel-card {
    max-width: 100%;
  }
}

