:root {
  --navy-950: #061421;
  --navy-900: #071827;
  --navy-800: #0b2237;
  --navy-700: #12344e;
  --blue-500: #1d8cff;
  --blue-400: #48a7ff;
  --teal-400: #23d0bd;
  --gold-400: #f5b84b;
  --ink: #142033;
  --muted: #5f6f82;
  --line: #dce6ef;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --shadow: 0 18px 50px rgba(7, 24, 39, 0.12);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--teal-400);
  color: var(--navy-950);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.section-dark {
  color: #f7fbff;
  background:
    radial-gradient(circle at 15% 18%, rgba(35, 208, 189, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.section-light,
.section-muted {
  background: var(--surface-soft);
}

.section-white {
  background: var(--surface);
}

.section-accent {
  background: linear-gradient(135deg, #eef8ff, #f7fbff 55%, #fff7e8);
}

section {
  padding: 92px 0;
  scroll-margin-top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 239, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin-right: auto;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(29, 140, 255, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #2e4055;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.45rem 0;
}

.nav-links a:hover {
  color: var(--blue-500);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  place-items: center;
  gap: 4px;
  padding: 0.65rem;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--navy-900);
  border-radius: 999px;
}

.language-toggle {
  position: relative;
  min-width: 68px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  background: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.language-toggle::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--teal-400);
  box-shadow: 0 8px 18px rgba(35, 208, 189, 0.28);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease;
}

body[data-language="es"] .language-toggle::before {
  transform: translateX(30px);
}

.language-toggle span {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 26px;
  min-height: 26px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.24s ease;
}

body[data-language="en"] .language-toggle span:first-child,
body[data-language="es"] .language-toggle span:last-child {
  color: #04111d;
}

main,
.footer {
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}

body.language-fading main,
body.language-fading .footer {
  opacity: 0.2;
  transform: translateY(6px);
  filter: blur(2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.15;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #04111d;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-400));
  box-shadow: 0 14px 34px rgba(29, 140, 255, 0.28);
}

.btn-secondary {
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.section-white .btn-secondary,
.section-muted .btn-secondary {
  color: var(--navy-900);
  border-color: var(--line);
  background: #fff;
}

.btn-small {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 98px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gridDrift 18s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.34;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(35, 208, 189, 0.16) 42%, transparent 48%),
    linear-gradient(115deg, transparent 0 58%, rgba(72, 167, 255, 0.12) 63%, transparent 70%);
  transform: translateX(-18%);
  animation: dataSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.82fr);
  gap: 4rem;
  align-items: center;
}

.simple-hero .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--teal-400);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.24rem;
  line-height: 1.22;
}

.hero-subhead {
  max-width: 760px;
  color: #cddbeb;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.4rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  color: #dbe7f3;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 700;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
}

.hero-visual {
  min-height: 470px;
  display: grid;
  place-items: center;
}

.dashboard-panel {
  width: min(100%, 470px);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 24, 39, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: dashboardFloat 6s ease-in-out infinite;
}

.quick-help-card {
  width: min(100%, 430px);
  justify-self: end;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 24, 39, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: dashboardFloat 6s ease-in-out infinite;
}

.quick-help-card h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.quick-label {
  margin-bottom: 0.45rem;
  color: var(--teal-400);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.quick-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
}

.quick-options span {
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #dbe7f3;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.panel-top {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.panel-top span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.kpi-row div,
.chart-card,
.pipeline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.kpi-row div {
  padding: 1rem;
}

.kpi-row small,
.pipeline span {
  color: #a7bbcf;
  font-size: 0.8rem;
}

.kpi-row strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1.32rem;
}

.chart-card {
  position: relative;
  min-height: 210px;
  margin: 0.85rem 0;
  padding: 1rem;
  overflow: hidden;
}

.chart-card::before {
  content: "";
  position: absolute;
  inset: 24px 18px;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 100% 42px;
}

.chart-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-400), var(--blue-400), var(--gold-400));
  transform: skewY(-10deg);
  box-shadow: 0 0 22px rgba(35, 208, 189, 0.45);
  animation: linePulse 3.8s ease-in-out infinite;
}

.chart-bars {
  position: absolute;
  inset: auto 1.1rem 1rem;
  height: 110px;
  display: flex;
  align-items: end;
  gap: 0.65rem;
}

.chart-bars span {
  flex: 1;
  min-width: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(72, 167, 255, 0.9), rgba(35, 208, 189, 0.35));
  animation: barBreathe 4.2s ease-in-out infinite;
  transform-origin: bottom;
}

.chart-bars span:nth-child(2) {
  animation-delay: 0.35s;
}

.chart-bars span:nth-child(3) {
  animation-delay: 0.7s;
}

.chart-bars span:nth-child(4) {
  animation-delay: 1.05s;
}

.chart-bars span:nth-child(5) {
  animation-delay: 1.4s;
}

.pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.85rem;
}

.pipeline i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-400), transparent);
  background-size: 180% 100%;
  animation: pipelineFlow 2.4s linear infinite;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 3rem;
  align-items: start;
}

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

.pain-card,
.service-card,
.industry-card,
.stat-card,
.timeline-content,
.credential-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.pain-card {
  padding: 1.1rem;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}

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

.help-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.help-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 140, 255, 0.28);
  box-shadow: 0 24px 58px rgba(7, 24, 39, 0.16);
}

.help-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  border-radius: var(--radius);
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--teal-400), var(--blue-400));
  font-weight: 950;
}

.help-card p {
  color: var(--muted);
}

.ask-strip {
  padding: 58px 0;
}

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

.ask-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.ask-card strong {
  color: var(--blue-500);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.ask-card span {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.service-card {
  grid-column: span 2;
  padding: 1.35rem;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--blue-500);
  background: #eaf5ff;
  border-radius: var(--radius);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.industry-card p,
.timeline-content p,
.about-copy p,
.contact-info p,
.process-step p,
.cta-box p {
  color: var(--muted);
}

.service-card ul,
.package-card ul,
.timeline-content ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.service-card li,
.package-card li,
.timeline-content li {
  margin: 0.38rem 0;
}

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

.industry-card {
  padding: 1.2rem;
}

.packages {
  position: relative;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 167, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.package-card.featured {
  border-color: rgba(35, 208, 189, 0.7);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-10px);
  animation: featuredPulse 3.8s ease-in-out infinite;
}

.package-card.featured:hover {
  transform: translateY(-14px);
}

.package-label {
  color: var(--teal-400);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.price {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}

.best-for {
  color: #cddbeb;
}

.package-card ul {
  margin-bottom: 1.25rem;
  color: #e6eef7;
}

.package-card .btn {
  margin-top: auto;
}

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

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 140, 255, 0.28);
  box-shadow: 0 24px 58px rgba(7, 24, 39, 0.16);
}

.portfolio-graphic {
  min-height: 168px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(18, 52, 78, 0.94)),
    var(--navy-900);
  overflow: hidden;
}

.portfolio-graphic svg {
  width: 100%;
  height: 168px;
}

.portfolio-graphic rect {
  fill: rgba(255, 255, 255, 0.07);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 2;
}

.portfolio-graphic path {
  fill: none;
  stroke: rgba(219, 231, 243, 0.64);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-graphic circle {
  fill: var(--teal-400);
}

.portfolio-graphic .accent-line {
  stroke: var(--teal-400);
  stroke-dasharray: 14 10;
  animation: portfolioDash 4.5s linear infinite;
}

.portfolio-tag {
  margin-bottom: 0.45rem;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card p:not(.portfolio-tag) {
  color: var(--muted);
}

.text-button {
  width: fit-content;
  margin-top: auto;
  padding: 0.25rem 0;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.text-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.18rem;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  transform: scaleX(0.62);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.text-button:hover::after {
  transform: scaleX(1);
}

.case-modal {
  width: min(760px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
}

.case-modal::backdrop {
  background: rgba(6, 20, 33, 0.72);
  backdrop-filter: blur(8px);
}

.case-modal[open] {
  animation: modalIn 0.24s ease both;
}

.modal-card {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(220, 230, 239, 0.85);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.modal-card h2 {
  padding-right: 2rem;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.modal-card p {
  color: var(--muted);
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.modal-grid div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.modal-grid strong,
.modal-grid span {
  display: block;
}

.modal-grid strong {
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.modal-grid span {
  color: var(--muted);
}

.stat-card {
  padding: 1.3rem;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  margin-bottom: 0.35rem;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1rem;
}

.timeline-date {
  padding-top: 1.15rem;
  color: var(--navy-700);
  font-weight: 900;
}

.timeline-content {
  padding: 1.3rem;
}

.company {
  margin-bottom: 0.7rem;
  color: var(--blue-500);
  font-weight: 850;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.credential-card {
  padding: 1.35rem;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.3rem;
}

.skill-cloud span {
  padding: 0.45rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #2e4055;
  font-size: 0.9rem;
  font-weight: 800;
}

.education {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.education p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.proof-grid-simple {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.mini-stat-grid {
  display: grid;
  gap: 1rem;
}

.process-step {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  animation: stepHop 7.5s ease-in-out infinite;
}

.process-step:nth-child(2) {
  animation-delay: 0.35s;
}

.process-step:nth-child(3) {
  animation-delay: 0.7s;
}

.process-step:nth-child(4) {
  animation-delay: 1.05s;
}

.process-step:nth-child(5) {
  animation-delay: 1.4s;
}

.process-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: var(--navy-950);
  background: var(--teal-400);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-step p {
  color: #cddbeb;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.1rem;
  border: 1px solid rgba(29, 140, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-bottom: 0.5rem;
}

.cta-box p:last-child {
  margin-bottom: 0;
}

.contact-list {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 4px solid var(--teal-400);
  background: var(--surface-soft);
  border-radius: var(--radius);
}

.contact-list p {
  margin-bottom: 0.45rem;
}

.contact-list p:last-child {
  margin-bottom: 0;
}

.contact-list a {
  color: var(--blue-500);
  font-weight: 800;
}

.contact-form {
  padding: 1.35rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #2e4055;
  font-weight: 850;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
}

.contact-form textarea::placeholder {
  color: #8a9aab;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(29, 140, 255, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

.contact-form .btn-secondary {
  color: var(--navy-900);
  border-color: var(--line);
  background: #fff;
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  padding: 1.4rem 0;
  color: #cddbeb;
  background: var(--navy-950);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--teal-400);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 44px 44px, 44px 44px;
  }
}

@keyframes dataSweep {
  0%,
  100% {
    transform: translateX(-18%);
  }
  50% {
    transform: translateX(18%);
  }
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.78;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.45);
  }
}

@keyframes barBreathe {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.08);
  }
}

@keyframes pipelineFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 180% 0;
  }
}

@keyframes featuredPulse {
  0%,
  100% {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 0 0 rgba(35, 208, 189, 0);
  }
  50% {
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.22), 0 0 34px rgba(35, 208, 189, 0.18);
  }
}

@keyframes stepHop {
  0%,
  11%,
  100% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-7px);
  }
}

@keyframes portfolioDash {
  to {
    stroke-dashoffset: -48;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .nav-cta {
    display: none;
  }

  .hero-grid,
  .simple-hero .hero-grid,
  .split,
  .proof-grid-simple,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-help-card {
    justify-self: stretch;
  }

  .hero-visual {
    min-height: auto;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 3;
  }

  .industry-grid,
  .portfolio-grid,
  .help-grid,
  .simple-process,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover,
  .package-card:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  section {
    padding: 68px 0;
  }

  .hero {
    padding: 92px 0 74px;
  }

  .nav {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.78rem 0.8rem;
    border-radius: var(--radius);
  }

  .nav-links a:hover {
    background: var(--surface-soft);
  }

  .hero-grid {
    gap: 2.25rem;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.7rem);
  }

  .hero-actions,
  .cta-box,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }

  .trust-list,
  .pain-grid,
  .form-row,
  .form-actions,
  .ask-grid,
  .help-grid,
  .simple-process,
  .industry-grid,
  .portfolio-grid,
  .modal-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quick-options {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-date {
    padding-top: 0;
  }

  .cta-box {
    padding: 1.4rem;
  }
}
