:root {
  --bg: #fbfbfd;
  --bg-soft: #f5f6fb;
  --surface: #ffffff;
  --surface-2: #f8f9fd;
  --text: #1f1f1f;
  --muted: #4b5563;
  --line: rgba(88, 72, 176, 0.16);
  --line-soft: rgba(31, 31, 31, 0.08);
  --primary: #5848b0;
  --primary-2: #6d5bd0;
  --primary-soft: rgba(109, 91, 208, 0.08);
  --shadow-sm: 0 10px 30px rgba(31, 31, 31, 0.06);
  --shadow-md: 0 18px 45px rgba(31, 31, 31, 0.08);
  --shadow-lg: 0 28px 70px rgba(88, 72, 176, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #fcfcfe 0%, #f8f9fd 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(
    180deg,
    rgba(109, 91, 208, 0.03) 0%,
    rgba(109, 91, 208, 0.05) 100%
  );
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 16px 0 12px;
  font-weight: 600;
}

.section-head p {
  color: var(--muted);
  font-size: 0.98rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(109, 91, 208, 0.08);
  border: 1px solid rgba(109, 91, 208, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(88, 72, 176, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(31, 31, 31, 0.05);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(109, 91, 208, 0.18),
    rgba(88, 72, 176, 0.12)
  );
  border: 1px solid rgba(109, 91, 208, 0.18);
  box-shadow: 0 12px 28px rgba(88, 72, 176, 0.14);
  position: relative;
}

.brand-mark::after {
  content: "EQ";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.brand-text {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.22s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 18px 40px rgba(88, 72, 176, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 50px rgba(88, 72, 176, 0.24);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(109, 91, 208, 0.06);
  border-color: rgba(109, 91, 208, 0.14);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(109, 91, 208, 0.1);
  border-color: rgba(109, 91, 208, 0.22);
}

.btn.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(88, 72, 176, 0.12);
  background: rgba(109, 91, 208, 0.06);
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    top 0.22s ease;
}

.nav-toggle::before {
  top: 16px;
}

.nav-toggle span {
  top: 23px;
}

.nav-toggle::after {
  top: 30px;
}

.nav-toggle.active::before {
  top: 23px;
  transform: rotate(45deg);
}

.nav-toggle.active span {
  opacity: 0;
}

.nav-toggle.active::after {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  padding: calc(var(--header-h) + 42px) 0 72px;
  overflow: clip;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(109, 91, 208, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 88% 24%, rgba(88, 72, 176, 0.1), transparent 24%),
    linear-gradient(120deg, #fcfcfe 0%, #f8f9fd 35%, #f6f4ff 65%, #fcfcfe 100%);
  background-size:
    100% 100%,
    100% 100%,
    180% 180%;
  animation: heroGradientShift 14s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      0% 50%;
  }
  50% {
    background-position:
      8% 6%,
      92% 12%,
      100% 50%;
  }
  100% {
    background-position:
      0% 0%,
      100% 0%,
      0% 50%;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 5.3vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 10.8ch;
  margin: 20px 0 16px;
  font-weight: 600;
}

.hero-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-pill {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(88, 72, 176, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-blur-left {
  width: 320px;
  height: 320px;
  top: 40px;
  left: -110px;
  background: rgba(109, 91, 208, 0.12);
}

.hero-blur-right {
  width: 340px;
  height: 340px;
  right: -100px;
  top: 140px;
  background: rgba(88, 72, 176, 0.1);
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(109, 91, 208, 0.12) 0%,
    rgba(109, 91, 208, 0.06) 34%,
    rgba(109, 91, 208, 0) 72%
  );
  filter: blur(10px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.hero-layer {
  will-change: transform;
  transition: transform 0.18s ease-out;
}

.hero-visual {
  position: relative;
}

.browser-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(88, 72, 176, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.browser-topbar {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(88, 72, 176, 0.08);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(109, 91, 208, 0.24);
}

.browser-url {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.76rem;
  border: 1px solid rgba(31, 31, 31, 0.06);
}

.browser-screen {
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
}

.mini-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.mini-brand {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
}

.mini-links {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-hero {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(109, 91, 208, 0.06) 0%,
    rgba(109, 91, 208, 0.02) 100%
  );
  border: 1px solid rgba(109, 91, 208, 0.1);
}

.mini-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 91, 208, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.mini-hero h2 {
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 13ch;
  margin-bottom: 12px;
  font-weight: 600;
}

.mini-hero p {
  color: var(--muted);
  max-width: 36ch;
  font-size: 0.88rem;
}

.mini-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mini-btn {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 500;
}

.mini-btn.primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
}

.mini-btn.secondary {
  background: rgba(109, 91, 208, 0.08);
  color: var(--primary);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.mini-cards article {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(31, 31, 31, 0.06);
  box-shadow: var(--shadow-sm);
}

.mini-cards strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.mini-cards span {
  color: var(--muted);
  font-size: 0.8rem;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.section-featured {
  position: relative;
  padding-top: 40px;
  padding-bottom: 72px;
}

.section-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center 10%,
      rgba(109, 91, 208, 0.045),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      rgba(109, 91, 208, 0.015) 0%,
      rgba(109, 91, 208, 0.008) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.section-featured > .container {
  position: relative;
  z-index: 1;
}

.section-featured .section-head {
  margin-bottom: 30px;
}

.service-single-grid {
  max-width: 820px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.premium-offer {
  padding: 40px;
}

.service-single-grid .pricing-card.featured {
  background: linear-gradient(
    180deg,
    rgba(109, 91, 208, 0.14) 0%,
    rgba(255, 255, 255, 0.97) 100%
  );
  border: 1px solid rgba(109, 91, 208, 0.24);
  box-shadow:
    0 28px 70px rgba(88, 72, 176, 0.14),
    0 10px 30px rgba(31, 31, 31, 0.05);
}

.offer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  text-transform: uppercase;
}

.premium-offer h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-single-grid .price {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 24px;
}

.service-single-grid .pricing-subtitle {
  max-width: 56ch;
  font-size: 1rem;
}

.service-single-grid .featured-badge {
  top: 24px;
  right: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(109, 91, 208, 0.16);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(109, 91, 208, 0.14);
  box-shadow: 0 10px 24px rgba(109, 91, 208, 0.08);
}

.offer-result {
  margin: 4px 0 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(109, 91, 208, 0.06);
  border: 1px solid rgba(109, 91, 208, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

.service-single-grid .btn {
  min-height: 56px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .premium-offer {
    padding: 24px;
  }

  .service-single-grid {
    max-width: 100%;
  }

  .premium-offer h3 {
    font-size: 1.28rem;
  }

  .offer-result {
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.92rem;
  }

  .section-featured {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .section-featured .section-head {
    margin-bottom: 22px;
  }
  .offer-kicker {
    display: none;
  }

  .service-single-grid .featured-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(88, 72, 176, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(109, 91, 208, 0.16) 0%,
    rgba(109, 91, 208, 0.08) 35%,
    rgba(109, 91, 208, 0) 70%
  );
  filter: blur(12px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 52px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  opacity: 0.68;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(31, 31, 31, 0.1);
  border-color: rgba(88, 72, 176, 0.2);
}

.service-card,
.process-card,
.pricing-card,
.scope-card {
  padding: 30px;
}

.scope-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(109, 91, 208, 0.08);
  color: var(--primary);
  border: 1px solid rgba(109, 91, 208, 0.12);
  margin-bottom: 18px;
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.card:hover .card-icon {
  transform: scale(1.08);
}

.card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  font-weight: 600;
}

.card p,
.split-copy p,
.panel-box p,
.pricing-subtitle,
.contact-copy p,
.field-group label,
.site-footer span {
  color: var(--muted);
}

.card p,
.split-copy p,
.panel-box p,
.pricing-subtitle,
.contact-copy p {
  font-size: 0.95rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: self-end;
}

.split-copy h2,
.contact-copy h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 18px 0 14px;
  font-weight: 600;
}

.check-list,
.panel-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list li,
.panel-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.check-list li::before,
.panel-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 0;
  color: var(--primary-2);
  font-weight: 700;
}

.check-list.compact {
  margin-bottom: 26px;
}

.split-panel {
  display: grid;
  gap: 22px;
  align-content: center;
}

.panel-box {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(88, 72, 176, 0.1);
  box-shadow: var(--shadow-md);
}

.subtle-box {
  background: linear-gradient(
    180deg,
    rgba(109, 91, 208, 0.06) 0%,
    rgba(109, 91, 208, 0.03) 100%
  );
}

.panel-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 91, 208, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.process-grid {
  align-items: stretch;
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.pricing-card,
.scope-card {
  position: relative;
}

.pricing-card .price {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text);
  font-weight: 600;
  margin: 18px 0 22px;
}

.pricing-subtitle {
  font-size: 0.94rem;
}

.pricing-card.featured {
  background: linear-gradient(
    180deg,
    rgba(109, 91, 208, 0.08) 0%,
    rgba(255, 255, 255, 0.92) 100%
  );
  border-color: rgba(109, 91, 208, 0.18);
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 91, 208, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}

.scope-card h3 {
  margin-bottom: 14px;
}

.scope-card .btn {
  margin-top: 16px;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(88, 72, 176, 0.1);
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap {
  padding-top: 36px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.form-status.is-success {
  color: #2f7a4b;
  background: rgba(47, 122, 75, 0.08);
  border: 1px solid rgba(47, 122, 75, 0.14);
}

.form-status.is-error {
  color: #b42318;
  background: rgba(180, 35, 24, 0.06);
  border: 1px solid rgba(180, 35, 24, 0.12);
}

.btn.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-size: 0.88rem;
  font-weight: 500;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  background: #fff;
  color: var(--text);
  padding: 0 18px;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.field-group textarea {
  min-height: 152px;
  padding: 18px;
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #9aa0ab;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: rgba(109, 91, 208, 0.28);
  box-shadow: 0 0 0 5px rgba(109, 91, 208, 0.08);
}

.full-width {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 32px 0 48px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  box-shadow: 0 22px 48px rgba(88, 72, 176, 0.24);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.22s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta:hover {
  box-shadow: 0 28px 58px rgba(88, 72, 176, 0.28);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    inset: calc(var(--header-h) + 8px) 20px auto 20px;
    display: block;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(88, 72, 176, 0.12);
    box-shadow: 0 24px 54px rgba(31, 31, 31, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .mobile-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-panel nav {
    display: grid;
    gap: 8px;
  }

  .mobile-panel a {
    padding: 14px 14px;
    border-radius: 16px;
    color: var(--text);
  }

  .mobile-panel a:hover {
    background: rgba(109, 91, 208, 0.06);
  }

  .mobile-panel .btn {
    width: 100%;
    margin-top: 12px;
  }

  .hero-grid,
  .split-layout,
  .contact-box,
  .grid-2,
  .grid-3,
  .contact-form,
  .mini-cards {
    grid-template-columns: 1fr;
  }

  .service-single-grid {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 74px;
  }

  .section {
    padding: 64px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding: calc(var(--header-h) + 24px) 0 52px;
  }

  .hero-grid,
  .split-layout,
  .contact-box,
  .grid-2,
  .grid-3,
  .contact-form,
  .mini-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.06;
    margin: 14px 0 10px;
  }

  .section-head p {
    font-size: 0.96rem;
  }

  .section-cta-soft .btn {
    width: auto;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    line-height: 0.98;
    margin: 18px 0 14px;
  }

  .hero-copy p {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 18px;
  }

  .hero-highlights {
    gap: 10px;
  }

  .highlight-pill {
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .browser-screen,
  .mini-hero,
  .service-card,
  .process-card,
  .pricing-card,
  .scope-card,
  .panel-box,
  .contact-box {
    padding: 22px;
  }

  .mini-navbar {
    margin-bottom: 22px;
  }

  .mini-hero h2 {
    font-size: 1.45rem;
    max-width: 11ch;
  }

  .mini-hero p {
    font-size: 0.86rem;
  }

  .mini-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .mini-btn {
    width: 100%;
  }

  .card h3 {
    font-size: 1.08rem;
  }

  .card p,
  .split-copy p,
  .panel-box p,
  .pricing-subtitle,
  .contact-copy p {
    font-size: 0.94rem;
  }

  .check-list,
  .panel-list {
    gap: 10px;
    margin-top: 18px;
  }

  .check-list li,
  .panel-list li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .split-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
    margin: 14px 0 12px;
  }

  .contact-box {
    gap: 24px;
  }

  .contact-form {
    gap: 14px;
  }

  .field-group input,
  .field-group textarea,
  .field-group select {
    min-height: 52px;
  }

  .field-group textarea {
    min-height: 140px;
  }

  .site-footer {
    padding: 22px 0 96px;
  }

  .scope-card {
    padding: 20px;
  }

  .check-list.compact {
    margin-bottom: 18px;
  }
.sticky-cta {
    left: 50%;
    right: auto;
    bottom: 14px;
    width: calc(100% - 28px);
    max-width: 420px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 0.92rem;
    box-shadow: 0 16px 36px rgba(88, 72, 176, 0.2);
    transform: translateX(-50%) translateY(12px);
  }

  .sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
  }

  .sticky-cta:hover {
    transform: translateX(-50%) translateY(0);
  }
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(109, 91, 208, 0.08);
  border: 1px solid rgba(109, 91, 208, 0.14);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.process-sub {
  text-align: center;
  max-width: 480px;
  margin: 12px auto 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-cta-soft {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.section-cta-soft p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--muted);
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: -12px;
  margin-bottom: 20px;
}

.premium-offer .btn {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.offer-result {
  margin-top: 24px;
}

.extra-service-card {
  background: linear-gradient(
    180deg,
    rgba(109, 91, 208, 0.08) 0%,
    rgba(255, 255, 255, 0.96) 100%
  );
  border: 1px solid rgba(109, 91, 208, 0.16);
  box-shadow:
    0 22px 56px rgba(88, 72, 176, 0.08),
    0 8px 24px rgba(31, 31, 31, 0.04);
  padding: 36px 40px;
}

.extra-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
}

.extra-price-wrap {
  margin-top: 10px;
  margin-bottom: 18px;
}

.extra-price-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.extra-price {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: var(--text);
}

.extra-result {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(109, 91, 208, 0.06);
  border: 1px solid rgba(109, 91, 208, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.extra-service-card .btn {
  min-height: 50px;
  font-weight: 600;
}

.services-extra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .services-extra {
    grid-template-columns: 1fr;
  }

  .extra-price {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .extra-result {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 820px) {
  .hero-visual {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-highlights {
    gap: 8px;
  }

  .highlight-pill {
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 90px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    max-width: 16ch;
  }

  .hero-copy p {
    max-width: 30ch;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    max-width: 100%;
  }
}

/* HERO MOBILE REFINEMENT */

@media (max-width: 640px) {
  /* ancho del contenido */
  .hero-copy {
    max-width: 100%;
  }

  /* etiqueta superior */
  .hero-copy .eyebrow {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 14px;
  }

  /* título */
  .hero-copy h1 {
    font-size: 2.15rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 16ch;
    margin-bottom: 16px;
  }

  /* texto */
  .hero-copy p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #6b6b6b;
    max-width: 32ch;
    margin-bottom: 22px;
  }

  /* botones */
  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* tags inferiores */
  .hero-highlights {
    margin-top: 18px;
    gap: 8px;
  }

  .highlight-pill {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}
