:root {
  --primary: #2563eb;
  --secondary: #0f172a;
  --accent: #06b6d4;
  --success: #10b981;
  --bg: #fff;
  --soft: #f5f7fb;
  --text: #162033;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --card: rgba(255, 255, 255, 0.84);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}
[data-theme='dark'] {
  --bg: #0b1120;
  --soft: #111827;
  --text: #edf3ff;
  --muted: #a8b4c7;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(15, 23, 42, 0.84);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 2000;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
}
.skip-link:focus {
  left: 8px;
}
.section-pad {
  padding: 110px 0;
}
.soft-band {
  background: var(--soft);
}
.dark-band {
  background: var(--secondary);
  color: #fff;
}
.dark-band .section-head p,
.dark-band .eyebrow,
.dark-band .blog-card span {
  color: #a8dff0;
}
.glass-nav {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
[data-theme='dark'] .glass-nav {
  background: rgba(11, 17, 32, 0.78);
}
.navbar-brand {
  color: var(--text);
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}
.nav-link {
  color: var(--text);
  font-weight: 700;
}
.nav-cta,
.btn {
  border-radius: 999px;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
}
.mega-menu {
  width: min(900px, 92vw);
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: var(--bg);
}
.mega-link {
  padding: 1rem;
  border-radius: 10px;
  font-weight: 900;
  color: var(--text);
}
.mega-link span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.mega-link:hover {
  background: var(--soft);
  color: var(--primary);
}
.btn {
  font-weight: 800;
  padding: 0.8rem 1.35rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  border: 0;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.35);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(37, 99, 235, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, var(--soft), var(--bg));
  padding-top: 150px;
}
.eyebrow {
  color: var(--primary);
  display: inline-flex;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  font-weight: 900;
  max-width: 780px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}
h3 {
  font-size: 1.25rem;
  font-weight: 900;
}
.hero-copy {
  color: var(--muted);
  font-size: 1.24rem;
  max-width: 620px;
  margin: 1.4rem 0 2rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.hero-proof span {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--muted);
  font-weight: 700;
}
.hero-dashboard {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.92),
    rgba(30, 64, 175, 0.86)
  );
  box-shadow: 0 34px 100px rgba(15, 23, 42, 0.32);
  min-height: 620px;
  overflow: hidden;
}
.hero-dashboard:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    transparent 42%
  );
  pointer-events: none;
}
.dashboard-top,
.metric-grid,
.chart-card,
.ad-stack,
.funnel {
  position: relative;
  z-index: 1;
}
.dashboard-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  padding: 0.5rem 0.3rem 1rem;
}
.dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}
.dashboard-top span:nth-child(2) {
  background: var(--accent);
}
.dashboard-top span:nth-child(3) {
  background: #f59e0b;
  margin-right: 0.5rem;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.metric-card,
.chart-card,
.ad-stack div,
.funnel span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #fff;
  backdrop-filter: blur(14px);
}
.metric-card {
  padding: 1rem;
}
.metric-card small,
.ad-stack span {
  color: #cbd5e1;
  display: block;
}
.metric-card strong {
  display: block;
  font-size: 1.55rem;
  margin: 0.25rem 0;
}
.metric-card em {
  color: #86efac;
  font-style: normal;
  font-weight: 800;
}
.chart-card {
  height: 230px;
  margin: 1rem 0;
  padding: 1rem;
  overflow: hidden;
}
.chart-line {
  height: 100px;
  border-bottom: 5px solid var(--accent);
  border-right: 5px solid var(--success);
  border-radius: 0 0 80px 0;
  transform: skew(-16deg);
  margin: 1rem 2rem;
}
.bar-row {
  height: 86px;
  display: flex;
  gap: 0.7rem;
  align-items: end;
}
.bar-row span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  animation: pulseBars 2.8s infinite alternate;
}
.ad-stack {
  display: grid;
  gap: 0.8rem;
}
.ad-stack div {
  padding: 0.95rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.funnel {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}
.funnel span {
  padding: 0.75rem;
  text-align: center;
  font-weight: 800;
}
.funnel span:nth-child(2) {
  width: 78%;
  justify-self: center;
}
.funnel span:nth-child(3) {
  width: 56%;
  justify-self: center;
  background: rgba(16, 185, 129, 0.2);
}
@keyframes pulseBars {
  to {
    transform: scaleY(0.86);
    opacity: 0.82;
  }
}
.section-head {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}
.service-card,
.price-card,
.case-card,
.testimonial,
.office-card,
.contact-form,
.blog-card,
.stat-card {
  /* height: 100%; */
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.service-card,
.case-card,
.price-card,
.blog-card {
  padding: 1.6rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.service-card:hover,
.case-card:hover,
.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.38);
}
.service-card span {
  color: var(--accent);
  font-weight: 900;
}
.service-card ul,
.price-card ul {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--muted);
}
.service-card li,
.price-card li {
  margin: 0.35rem 0;
}
.stats-row {
  text-align: center;
}
.stat-card {
  padding: 1.6rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}
.stat-card span {
  color: #cbd5e1;
  font-weight: 700;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.8rem;
}
.timeline div {
  min-height: 98px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  font-weight: 900;
  box-shadow: var(--shadow);
}
.timeline div:nth-child(even) {
  margin-top: 2rem;
}
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.chip-grid span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-weight: 800;
  color: var(--muted);
}
.testimonial {
  max-width: 820px;
  margin: auto;
  padding: 2rem 4rem;
  text-align: center;
}
.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}
.testimonial p {
  font-size: 1.35rem;
}
.testimonial span {
  display: block;
  color: var(--muted);
  margin-top: 0.5rem;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}
.case-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}
.case-card span {
  color: var(--muted);
  font-weight: 800;
}
.price-card strong {
  display: block;
  margin: 1rem 0;
  font-size: 2rem;
}
.price-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
}
.price-card.featured > span {
  display: inline-block;
  color: #fff;
  background: var(--success);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 0.8rem;
}
.blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  min-height: 180px;
}
.blog-card h3 {
  color: #fff;
  margin-top: 0.8rem;
}
.accordion-item {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
}
.accordion-button {
  background: var(--card);
  color: var(--text);
  font-weight: 900;
}
.accordion-button:not(.collapsed) {
  background: rgba(37, 99, 235, 0.09);
  color: var(--primary);
}
.accordion-body {
  color: var(--muted);
}
.contact-section {
  background: linear-gradient(180deg, var(--soft), var(--bg));
}
.office-card,
.contact-form {
  padding: 1.5rem;
}
.office-card span {
  display: block;
  color: var(--muted);
  margin-top: 0.45rem;
}
.map-placeholder {
  min-height: 210px;
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(37, 99, 235, 0.4);
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(6, 182, 212, 0.12)
  );
  font-weight: 900;
}
label {
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.form-control,
.form-select {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background-color: var(--bg);
  color: var(--text);
}
.captcha {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}
.form-note {
  margin: 0.8rem 0 0;
  min-height: 24px;
  color: var(--success);
  font-weight: 800;
}
.footer {
  background: #080d18;
  color: #cbd5e1;
  padding: 70px 0 26px;
}
.footer h2,
.footer h3 {
  color: #fff;
}
.footer a {
  display: block;
  color: #cbd5e1;
  margin: 0.45rem 0;
}
.newsletter {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1100;
  max-width: 420px;
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--secondary);
  color: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.float-btn,
.back-top {
  position: fixed;
  right: 1rem;
  z-index: 1000;
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
.whatsapp {
  bottom: 7.4rem;
  background: var(--success);
}
.chat {
  bottom: 3.8rem;
  background: var(--primary);
  font-size: 0.78rem;
}
.back-top {
  width: 44px;
  height: 44px;
  bottom: 10.9rem;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.15s;
}
@media (max-width: 991px) {
  .section-pad {
    padding: 82px 0;
  }
  .hero {
    min-height: auto;
    padding-top: 125px;
  }
  .hero-dashboard {
    min-height: 540px;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline div:nth-child(even) {
    margin-top: 0;
  }
  .footer-bottom,
  .newsletter {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 2.5rem;
  }
  .hero-dashboard {
    min-height: auto;
    border-radius: 18px;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .ad-stack div {
    flex-direction: column;
  }
  .testimonial {
    padding: 1.5rem;
  }
  .price-card.featured {
    transform: none;
  }
  .cookie-banner {
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
