:root {
  --blue: #1e3a5f;
  --blue-deep: #10243d;
  --teal: #14b8a6;
  --amber: #f59e0b;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #dbe4ee;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(16, 36, 61, 0.12);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

h1,
h2,
h3 {
  color: var(--blue-deep);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 850px;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(219, 228, 238, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--teal);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white) !important;
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.24);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #0f9f91;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--blue);
  margin: 5px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section,
.section-band {
  padding: 92px 0;
}

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

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 247, 250, 0.98), rgba(255, 255, 255, 0.94) 48%, rgba(232, 247, 246, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.16), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  color: #314158;
  font-size: 1.22rem;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 760px;
  font-size: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.button-row.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.82rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.25);
}

.button-primary:hover {
  background: #0f9f91;
}

.button-secondary {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 12px 26px rgba(16, 36, 61, 0.08);
}

.button-secondary:hover {
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 16px 32px rgba(16, 36, 61, 0.12);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

.trust-line {
  margin-top: 1.4rem;
  color: #475569;
  font-weight: 750;
}

.hero-visual {
  position: relative;
}

.dashboard-shell {
  position: relative;
  min-height: 520px;
  padding: 22px;
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.dashboard-top {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
}

.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: var(--line);
}

.dashboard-top span:nth-child(1) {
  background: #ef4444;
}

.dashboard-top span:nth-child(2) {
  background: var(--amber);
}

.dashboard-top span:nth-child(3) {
  background: var(--teal);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.metric-row article,
.chart-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric-row article {
  min-height: 120px;
  padding: 16px;
}

.metric-row small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.metric-row strong {
  display: block;
  color: var(--blue);
  font-size: 1.9rem;
  line-height: 1;
}

.metric-row article span {
  display: block;
  height: 8px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(20, 184, 166, 0.14));
}

.chart-card {
  padding: 24px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 14px;
  height: 210px;
  padding: 8px 4px 0;
  border-bottom: 1px solid var(--line);
}

.chart-bars span {
  min-height: 42px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.task-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.task-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 750;
}

.task-list span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: var(--teal);
}

.floating-note {
  position: absolute;
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--white);
  padding: 0.75rem 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(16, 36, 61, 0.14);
}

.note-one {
  right: -18px;
  top: 115px;
}

.note-two {
  left: -20px;
  bottom: 84px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: center;
}

.section-copy p + p {
  margin-top: 1rem;
}

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

.problem-grid div,
.benefit-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
  color: #334155;
  font-weight: 700;
}

.problem-grid div::before,
.benefit-grid span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 99px;
  background: var(--teal);
  vertical-align: 1px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid,
.solution-grid,
.examples-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.card,
.solution-card,
.example-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 36, 61, 0.06);
}

.service-card {
  padding: 24px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.1);
}

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

.service-card p,
.package-card p {
  font-size: 0.96rem;
}

.highlight {
  margin-top: 0.8rem;
  color: var(--blue);
  font-weight: 800;
}

ul {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 22px;
  color: #475569;
  margin-top: 0.48rem;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
}

.purpose-section {
  background: var(--blue);
}

.purpose-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
  color: var(--white);
}

.purpose-panel h2,
.purpose-panel p {
  color: var(--white);
}

.purpose-panel .eyebrow {
  color: #7ddbd1;
}

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

.benefit-grid span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

.callout {
  grid-column: 1 / -1;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

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

.solution-card,
.example-card,
.process-step {
  padding: 24px;
}

.solution-card {
  min-height: 188px;
}

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

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.examples-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.example-card {
  border-left: 4px solid var(--teal);
}

.package-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.package-card ul {
  margin-bottom: 1.4rem;
}

.featured {
  border-color: rgba(20, 184, 166, 0.48);
  box-shadow: 0 20px 44px rgba(20, 184, 166, 0.12);
}

.badge {
  align-self: flex-start;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  color: var(--blue);
  background: rgba(245, 158, 11, 0.16);
  font-size: 0.78rem;
  font-weight: 850;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.portrait-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 32px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(30, 58, 95, 0.95), rgba(20, 184, 166, 0.82)),
    linear-gradient(45deg, #1e3a5f, #14b8a6);
  box-shadow: var(--shadow);
  text-align: center;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

.portrait-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
  font-size: 3rem;
  font-weight: 900;
}

.portrait-card div:last-child {
  position: relative;
  z-index: 1;
}

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

.portrait-card strong {
  margin-top: 24px;
  font-size: 1.45rem;
}

.portrait-card span {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  padding: 92px 0;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 64%, #0f766e);
}

.final-cta-inner {
  max-width: 850px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .eyebrow {
  color: #8ce2d8;
}

.site-footer {
  padding: 52px 0 26px;
  background: #0d1b2f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  gap: 32px;
}

.footer-brand,
.site-footer h2,
.site-footer a {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer p {
  max-width: 360px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.76);
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--white);
  background: #16a34a;
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(22, 163, 74, 0.38);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 44px rgba(16, 36, 61, 0.12);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
  }

  .section,
  .section-band,
  .final-cta {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero-grid {
    gap: 42px;
  }

  .purpose-panel,
  .solution-grid,
  .examples-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .button-row,
  .button-row.centered {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .dashboard-shell {
    min-height: auto;
    padding: 16px;
  }

  .metric-row,
  .problem-grid,
  .benefit-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .chart-bars {
    height: 160px;
    gap: 9px;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
  }

  .solution-card {
    min-height: auto;
  }

  .portrait-card {
    min-height: 340px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
