:root {
  --blue: #1f5b8f;
  --green: #2f8a6b;
  --gray: #4b5563;
  --ink: #0f172a;
  --paper: #f8fafc;
  --mist: #e2e8f0;
}

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

body {
  font-family: "Spectral", serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(47, 138, 107, 0.12), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(31, 91, 143, 0.18), transparent 50%),
    linear-gradient(180deg, #f9fbfd 0%, #eef2f7 100%);
  min-height: 100vh;
}

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

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Sora", sans-serif;
  gap: 2px;
  font-size: 0.9rem;
  color: var(--gray);
}

.brand-text strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  color: var(--gray);
}

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

.cta {
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  padding: 90px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green);
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  color: var(--ink);
}

.lead {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 30px rgba(47, 138, 107, 0.2);
}

.button.ghost {
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(31, 91, 143, 0.2);
  box-shadow: none;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 10px;
}

.stat {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.stat-label {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.panel-card h3 {
  margin-bottom: 8px;
}

.hero-glow {
  position: absolute;
  inset: 10% 0 0 0;
  background: radial-gradient(circle at 70% 40%, rgba(47, 138, 107, 0.25), transparent 55%);
  z-index: -1;
  pointer-events: none;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: linear-gradient(120deg, rgba(47, 138, 107, 0.08), rgba(31, 91, 143, 0.12));
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-header p {
  max-width: 520px;
  color: var(--gray);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.process-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  color: var(--gray);
  list-style: none;
}

.process-list li {
  padding-left: 18px;
  position: relative;
}

.process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.process-panel {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 45px rgba(15, 23, 42, 0.08);
}

.indicators {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.indicator-title {
  display: block;
  font-family: "Sora", sans-serif;
  color: var(--gray);
}

.indicator-value {
  font-weight: 600;
  color: var(--blue);
}

.segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.segment {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
}

.contact {
  background: linear-gradient(140deg, rgba(31, 91, 143, 0.14), rgba(47, 138, 107, 0.12));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 16px;
}

.contact-phone {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 26px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-bar {
  border-top: 1px solid rgba(226, 232, 240, 0.2);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    align-self: stretch;
    text-align: center;
  }

  .hero {
    padding-top: 70px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 8px;
  }
}
