:root {
  --bg: #edf4ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #08366f;
  --muted: #52657c;
  --green: #10952e;
  --green-strong: #087321;
  --blue: #005ab3;
  --blue-strong: #06387d;
  --yellow: #f6c112;
  --silver: #dce4ef;
  --line: rgba(0, 90, 179, 0.16);
  --shadow: 0 28px 80px rgba(3, 43, 101, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(16, 149, 46, 0.18), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(0, 90, 179, 0.18), transparent 24%),
    radial-gradient(circle at 65% 45%, rgba(246, 193, 18, 0.18), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fd 48%, #e7f0fb 100%);
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.48) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 72%);
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 48px;
}

.hero,
.section,
.visual-frame,
.hero-badge,
.info-card,
.feature-panel,
.testimonial-card,
.timeline-step,
.highlight-box,
.contact-form,
.client-pill {
  backdrop-filter: blur(16px);
}

.hero {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.76)),
    linear-gradient(120deg, rgba(16, 149, 46, 0.08), rgba(0, 90, 179, 0.08));
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  display: block;
  width: min(260px, 42vw);
  height: auto;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(0, 90, 179, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-strong);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--blue-strong);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-content,
.contact {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-content {
  padding: 42px 4px 8px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--green);
  font-weight: 800;
}

h1,
h2,
h3,
strong,
.button,
.card-tag {
  font-family: "Sora", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.lead,
.info-card p,
.feature-panel p,
.testimonial-card p,
.timeline-step p,
.highlight-box p:last-child,
.contact-copy p:last-of-type,
.form-note {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--green), #1cc94a);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 14px 28px rgba(16, 149, 46, 0.22);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(16, 149, 46, 0.28);
}

.button-secondary {
  background: linear-gradient(135deg, var(--blue), #1a86e8);
  box-shadow: 0 14px 28px rgba(0, 90, 179, 0.2);
}

.button-ghost {
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 90, 179, 0.14);
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-stats div,
.hero-badge,
.info-card,
.feature-panel,
.testimonial-card,
.timeline-step,
.section,
.highlight-box,
.contact-form,
.client-pill {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  justify-items: center;
  align-content: center;
}

.hero-visual-stage {
  width: min(560px, 100%);
  min-height: 540px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 36px 28px;
  gap: 22px;
}

.visual-frame {
  width: min(430px, 100%);
  padding: 26px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(246, 193, 18, 0.12), rgba(16, 149, 46, 0.1), rgba(0, 90, 179, 0.1));
  box-shadow: 0 30px 90px rgba(0, 90, 179, 0.18);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  animation: floatLogo 6s ease-in-out infinite;
}

.hero-badge {
  position: relative;
  width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  min-height: 118px;
  display: grid;
  align-content: start;
}

.hero-badge span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-badge strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-badge-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(480px, 100%);
}

.badge-blue {
  background: rgba(4, 106, 206, 0.92);
  color: #ffffff;
}

.badge-green {
  background: rgba(16, 149, 46, 0.92);
  color: #ffffff;
}

.section {
  margin-top: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 255, 0.72));
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading.narrow {
  margin-bottom: 34px;
}

.card-grid,
.feature-grid,
.testimonial-grid,
.timeline,
.sector-list,
.client-marquee {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.feature-panel,
.testimonial-card,
.timeline-step {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246, 193, 18, 0.2);
  color: var(--blue-strong);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-panel strong,
.testimonial-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
}

.testimonial-card span {
  display: block;
  margin-top: 12px;
  color: var(--green-strong);
  font-weight: 700;
}

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

.client-pill {
  padding: 18px 20px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(16, 149, 46, 0.08), rgba(0, 90, 179, 0.08)),
    rgba(255, 255, 255, 0.9);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

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

.timeline-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 1.6rem;
  font-weight: 800;
}

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

.sector-list div {
  padding: 22px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(16, 149, 46, 0.08), rgba(0, 90, 179, 0.08)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.highlight-box {
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(0, 90, 179, 0.94), rgba(6, 56, 125, 0.96)),
    linear-gradient(120deg, rgba(246, 193, 18, 0.18), rgba(16, 149, 46, 0.12));
  color: #ffffff;
}

.highlight-box .eyebrow,
.highlight-box p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.contact-copy {
  padding-right: 10px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
}

.form-actions .button {
  flex: 1 1 240px;
  max-width: 280px;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex: 0 0 auto;
}

.button-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 90, 179, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.94rem;
}

.form-note.is-success {
  color: var(--green-strong);
}

.form-note.is-error {
  color: #c63b25;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e9f32, #25d366);
  color: #ffffff;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(16, 149, 46, 0.32);
}

.whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

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

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

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

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .hero-content,
  .contact,
  .card-grid,
  .feature-grid,
  .testimonial-grid,
  .timeline,
  .sector-list,
  .client-marquee,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-visual-stage {
    width: 100%;
    min-height: auto;
    padding: 0;
    gap: 18px;
  }

  .hero-badge-row {
    width: 100%;
  }

  .hero-badge {
    position: static;
    max-width: none;
    width: 100%;
  }

  .visual-frame {
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .topbar {
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    margin: 10px auto 30px;
  }

  .hero,
  .section,
  .highlight-box {
    padding: 22px;
    border-radius: 24px;
  }

  .brand img {
    width: min(230px, 70vw);
  }

  .topbar {
    justify-content: center;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .hero-copy,
  .contact-copy,
  .section-heading,
  .highlight-box,
  .testimonial-card,
  .feature-panel,
  .info-card,
  .timeline-step {
    text-align: center;
  }

  .contact-list {
    justify-items: center;
  }

  .hero-actions,
  .nav-links,
  .hero-stats,
  .form-actions {
    width: 100%;
  }

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

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

  .hero-badge {
    text-align: center;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .form-actions .button {
    max-width: none;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
}
