:root {
  --blue: #285a86;
  --blue-dark: #173854;
  --blue-ink: #0d2235;
  --slate: #5f6872;
  --muted: #eef3f6;
  --line: #dce5eb;
  --white: #ffffff;
  --teal: #2aa7a5;
  --gold: #c59b54;
  --shadow: 0 24px 70px rgba(18, 45, 68, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(18, 45, 68, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.brand img {
  width: 176px;
  height: auto;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2d4355;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  position: relative;
}

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

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(40, 90, 134, 0.25);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 46px;
  padding: 140px max(24px, calc((100vw - var(--max)) / 2)) 86px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(10, 28, 45, 0.88), rgba(22, 55, 83, 0.42)),
    url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 35%, rgba(42, 167, 165, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(4, 16, 25, 0.12), rgba(4, 16, 25, 0.54));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee4e1;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6.2vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-ink);
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

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

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-top,
.progress-card > div:first-child,
.dashboard-header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-top {
  justify-content: flex-start;
  margin-bottom: 22px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #58e0a7;
  box-shadow: 0 0 0 7px rgba(88, 224, 167, 0.16);
}

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

.metric-grid div,
.progress-card,
.dash-card {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.metric-grid strong,
.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.metric-grid span,
.progress-card span,
.mini-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.progress-line {
  height: 7px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.progress-line span {
  display: block;
  width: 87%;
  height: 100%;
  background: linear-gradient(90deg, #72dfd8, #ffffff);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mini-list span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  padding: 22px;
  color: var(--blue);
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.split,
.tech,
.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.section-copy p,
.contact-copy p,
.service-card p,
blockquote p,
.dash-card p {
  color: var(--slate);
}

.signature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.signature-card img {
  width: 46px;
}

.signature-card span {
  display: block;
  color: var(--slate);
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 220px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(23, 56, 84, 0.92);
  backdrop-filter: blur(12px);
}

.floating-note b {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(18, 45, 68, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #e9f2f6;
  font-weight: 900;
}

.benefits {
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(13, 34, 53, 0.92), rgba(13, 34, 53, 0.67)),
    url("https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover fixed;
}

.benefit-panel {
  max-width: 720px;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.benefit-panel h2 {
  color: var(--white);
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefit-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list span {
  color: rgba(255, 255, 255, 0.76);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 34px;
}

.stat {
  padding: 28px;
  border-bottom: 3px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(18, 45, 68, 0.07);
}

.stat strong {
  color: var(--blue);
  font-size: 3rem;
}

.stat span {
  color: var(--slate);
  font-weight: 800;
}

.tech {
  grid-template-columns: 1.08fr 0.92fr;
}

.dashboard {
  padding: 18px;
  border: 1px solid #d2dde5;
  border-radius: var(--radius);
  background: #102d44;
  box-shadow: var(--shadow);
}

.dashboard-header {
  padding: 8px 6px 18px;
  color: #d9eef3;
  font-weight: 900;
}

.dashboard-header i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-radius: 50%;
  background: #6ec6c0;
}

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

.dash-card {
  min-height: 138px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.dash-card.wide {
  grid-column: 1 / -1;
}

.dash-card span {
  color: #a6c3d3;
}

.dash-card strong {
  display: block;
  margin-top: 7px;
  font-size: 2.2rem;
}

.dash-card.soft {
  background: #f3f8fa;
}

.dash-card.soft strong,
.dash-card.soft span,
.dash-card.soft p {
  color: var(--blue-ink);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 120px;
  margin-top: 18px;
}

.chart-bars i {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #79dfd8, #285a86);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(18, 45, 68, 0.07);
}

blockquote p {
  font-size: 1.1rem;
}

cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(18, 45, 68, 0.08);
}

.gallery-grid img:first-child {
  height: 520px;
}

.contact {
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 800;
}

.contact-lines span {
  max-width: 520px;
  color: var(--slate);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-ink);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfdbe3;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--blue-ink);
  font: inherit;
  background: #fbfdfe;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(40, 90, 134, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.map-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 96px;
}

.map-section iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1fb45b;
  box-shadow: 0 18px 42px rgba(31, 180, 91, 0.32);
  font-weight: 900;
}

.footer {
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #102d44;
}

.footer img {
  width: 190px;
  margin-bottom: 12px;
}

.footer p {
  max-width: 360px;
  margin-bottom: 0;
}

.footer nav {
  display: flex;
  gap: 18px;
  color: var(--white);
  font-weight: 900;
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--blue-ink);
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 12px;
    padding: 14px 0 4px;
  }

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

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

  .hero-panel {
    max-width: 520px;
  }

  .trust-strip,
  .service-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .hero {
    gap: 26px;
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 54px;
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-panel {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .metric-grid,
  .trust-strip,
  .service-grid,
  .stats,
  .testimonial-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(calc(100% - 32px), var(--max));
    padding: 72px 0;
  }

  .benefits {
    padding: 72px 16px;
    background-attachment: scroll;
  }

  .benefit-panel,
  .contact-form {
    padding: 22px;
  }

  .dash-card.wide {
    grid-column: auto;
  }

  .footer {
    display: grid;
    align-items: start;
    justify-content: start;
  }

  .footer nav {
    flex-wrap: wrap;
  }

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