:root {
  --ink: #0b132b;
  --ink-2: #14213d;
  --teal: #1fb6a6;
  --amber: #f4b15a;
  --sky: #e8f3ff;
  --muted: #8aa1c1;
  --white: #ffffff;
  --card: #f9fbff;
  --border: rgba(15, 32, 66, 0.12);
  --shadow: 0 24px 60px rgba(10, 27, 60, 0.18);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fdf2e0, transparent 45%),
    radial-gradient(circle at 20% 20%, #dff5ff, transparent 40%),
    linear-gradient(180deg, #f7f9ff 0%, #f2f6fb 40%, #f6f2ed 100%);
  min-height: 100vh;
}

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

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

.page {
  position: relative;
  overflow-x: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 27, 60, 0.08);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}

.brand img {
  width: auto;
  height: 44px;
  max-width: 180px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.nav-links a {
  padding: 0.3rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-access {
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(25, 113, 97, 0.25);
}

.nav-access:hover {
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(10, 27, 60, 0.2);
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}


.hero-content h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 182, 166, 0.12);
  color: #0c6b62;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-tag img {
  width: 18px;
  height: 18px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(11, 19, 43, 0.2);
}

.btn.ghost {
  border-color: rgba(11, 19, 43, 0.3);
  color: var(--ink);
  background: transparent;
}

.hero-meta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.visual-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(10, 27, 60, 0.1);
  box-shadow: var(--shadow);
}

.visual-card.alt {
  background: linear-gradient(180deg, #f7f9ff 0%, #eff2fb 100%);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.chip {
  background: rgba(31, 182, 166, 0.18);
  color: #0f6a60;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.chip.warm {
  background: rgba(244, 177, 90, 0.2);
  color: #93550c;
}

.visual-body {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  height: 120px;
}

.visual-body.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  height: auto;
}

.bar {
  width: 100%;
  height: calc(var(--value) * 1%);
  max-width: 36px;
  background: linear-gradient(180deg, rgba(28, 111, 214, 0.85), rgba(11, 43, 102, 0.9));
  border-radius: 12px;
}

.tile {
  background: rgba(11, 19, 43, 0.08);
  border-radius: 12px;
  height: 42px;
}

.visual-footer {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.visual-footer strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0.6rem 0 1rem;
}

.section-head p {
  color: var(--ink-2);
  line-height: 1.7;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.cards {
  display: grid;
  gap: 1.8rem;
}

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

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 19, 43, 0.1);
  box-shadow: 0 20px 40px rgba(11, 19, 43, 0.12);
}

.card-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.3rem;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(31, 182, 166, 0.14);
  color: #0f6a60;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.icon-powerbi {
  background: rgba(28, 111, 214, 0.18);
  color: #1c6fd6;
}

.icon-tableau {
  background: rgba(11, 43, 102, 0.18);
  color: #0b2b66;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--ink-2);
}

.card li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.5;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.portal-callout {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(31, 182, 166, 0.2), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(31, 182, 166, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.portal-callout h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
  margin: 0.4rem 0 0.6rem;
}

.portal-callout p {
  color: var(--ink-2);
  line-height: 1.6;
}

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

.split-left h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0.6rem 0 1rem;
}

.split-left p {
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(11, 19, 43, 0.08);
}

.feature h4 {
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps {
  background: rgba(11, 19, 43, 0.03);
  border-radius: 32px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.step {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 0.6rem;
}

.step-grid h3 {
  font-family: "Raleway", sans-serif;
  margin-bottom: 0.5rem;
}

.step-grid p {
  color: var(--ink-2);
  line-height: 1.6;
}

.reportes {
  background: linear-gradient(120deg, rgba(31, 182, 166, 0.12), rgba(244, 177, 90, 0.12));
  border-radius: 32px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.report-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(11, 19, 43, 0.08);
}

.report-card.alt {
  background: rgba(255, 255, 255, 0.9);
}

.report-card h3 {
  font-family: "Raleway", sans-serif;
  margin-bottom: 1rem;
}

.report-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-2);
}

.report-card li {
  padding-left: 1.2rem;
  position: relative;
}

.report-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.metric {
  background: var(--white);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(11, 19, 43, 0.08);
}

.metric h3 {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.metric p {
  color: var(--ink-2);
  font-size: 0.95rem;
}

.highlight {
  padding-top: 2rem;
}

.highlight-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 32px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.highlight-card h2 {
  font-family: "Raleway", sans-serif;
  margin: 0.6rem 0 1rem;
}

.highlight-card p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.highlight-links {
  display: grid;
  gap: 0.8rem;
}

.highlight-links a {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(11, 19, 43, 0.08);
  display: grid;
  gap: 1rem;
}

.price-card.featured {
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid rgba(31, 182, 166, 0.3);
  transform: translateY(-12px);
}

.price-card h3 {
  font-family: "Raleway", sans-serif;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(11, 19, 43, 0.08);
}

.faq-item h4 {
  font-family: "Raleway", sans-serif;
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: var(--ink-2);
  line-height: 1.6;
}

.contact {
  background: rgba(11, 19, 43, 0.04);
  border-radius: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-info h2 {
  font-family: "Raleway", sans-serif;
  margin: 0.6rem 0 1rem;
}

.contact-info p {
  color: var(--ink-2);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-cards div {
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 19, 43, 0.08);
  display: grid;
  gap: 0.3rem;
}

.contact-cards span {
  font-size: 0.85rem;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 19, 43, 0.2);
  font-size: 0.85rem;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(11, 19, 43, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(11, 19, 43, 0.2);
  padding: 0.75rem 0.9rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.form-message {
  font-size: 0.8rem;
  color: var(--ink-2);
  min-height: 1.2rem;
}

.form-message.success {
  color: #0f6a60;
}

.form-message.warning {
  color: #a85a00;
}

.footer {
  padding: 3rem 1.5rem 2rem;
  background: #0b132b;
  color: var(--white);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-inner img {
  width: 48px;
  margin-bottom: 1rem;
}

.footer-inner h4 {
  font-family: "Raleway", sans-serif;
  margin-bottom: 0.8rem;
}

.footer-inner a,
.footer-inner span,
.footer-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.two,
  .feature-grid,
  .step-grid,
  .report-grid,
  .metrics,
  .pricing-grid,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    grid-template-columns: 1fr;
  }

  .portal-callout {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    border-radius: 18px;
    flex-direction: column;
    padding: 1rem 1.2rem;
    gap: 0.9rem;
    box-shadow: var(--shadow);
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .visual-card {
    padding: 1.2rem;
  }
}
