:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dbe2ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --navy: #072a5a;
  --blue: #0c4f9e;
  --steel: #60758a;
  --green: #20a35b;
  --warning: #d9480f;
  --shadow: 0 20px 60px rgba(7, 42, 90, 0.14);
  --mx: 50%;
  --my: 35%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1160px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 226, 234, 0.9);
  backdrop-filter: blur(14px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #314155;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--blue);
}

.header-cta,
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-cta {
  background: var(--navy);
  color: var(--white);
}

.header-whatsapp {
  background: #20a35b;
  color: var(--white);
}

.header-whatsapp:hover,
.header-whatsapp:focus {
  background: #178a4b;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  padding: 124px 0 38px;
}

.hero-media,
.hero-overlay,
.shader-canvas,
.morph-mark {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(32, 163, 91, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(3, 16, 35, 0.9) 0%, rgba(3, 16, 35, 0.76) 40%, rgba(3, 16, 35, 0.26) 100%),
    linear-gradient(180deg, rgba(3, 16, 35, 0.14) 0%, rgba(3, 16, 35, 0.78) 100%);
}

.shader-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.38;
  mix-blend-mode: screen;
}

.morph-mark {
  left: auto;
  top: 16%;
  right: 8%;
  width: min(28vw, 360px);
  height: auto;
  opacity: 0.16;
  filter: blur(0.4px);
  transform-origin: center;
  animation: morphFloat 9s ease-in-out infinite;
}

.morph-mark path {
  fill: var(--green);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

@media (max-width: 1200px) {
  .hero-content {
    max-width: 520px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 5vw, 3.5rem);
  }
}

.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
}

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

.hero-metrics {
  max-width: 940px;
  margin-top: 36px;
}

.hero-metrics div {
  width: min(280px, 100%);
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.intro-band {
  background: var(--navy);
  color: var(--white);
  padding: 78px 0;
}

.intro-grid,
.method-grid,
.audit-grid,
.confidence-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.intro-grid h2,
.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 102px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.wide {
  max-width: 860px;
}

.section-heading h2,
.method-copy h2,
.audit-grid h2,
.confidence-grid h2,
.contact-copy h2 {
  margin-bottom: 18px;
}

.section-heading p,
.method-copy p,
.audit-grid p,
.confidence-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.results {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-grid article {
  min-height: 248px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid span {
  color: var(--green);
  font-weight: 800;
}

.benefit-grid h3,
.service-grid h3,
.plan-grid h3 {
  margin: 22px 0 12px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.benefit-grid p,
.service-grid p,
.plan-grid p {
  margin: 0;
  color: var(--muted);
}

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

.service-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 24px 70px rgba(7, 42, 90, 0.18);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.char {
  display: inline-block;
  transform: translateY(0.55em);
  opacity: 0;
  transition: transform 0.68s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.68s ease;
}

.word {
  display: inline-block;
  white-space: nowrap;
}

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

.service-grid article::before,
.plan-grid article::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  background: var(--green);
}

.proof-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
  min-height: 310px;
  background: var(--ink);
  overflow: hidden;
}

.proof-strip img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.proof-strip img:nth-child(1) {
  object-position: center 42%;
}

.operations-showcase {
  position: relative;
  overflow: clip;
  padding: 118px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 163, 91, 0.22), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(12, 79, 158, 0.26), transparent 34%),
    linear-gradient(135deg, #06162d 0%, #0c2642 48%, #102f34 100%);
}

.operations-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}

.operations-sticky {
  position: sticky;
  top: 118px;
  color: var(--white);
}

.operations-sticky h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
}

.operations-sticky p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.scroll-progress {
  width: 100%;
  height: 4px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: var(--green);
  transition: width 0.1s linear;
}

.operations-steps {
  display: grid;
  gap: 26px;
}

.operation-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(156, 238, 192, 0.22);
  color: var(--white);
}

.operation-card img,
.operation-card video {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.operation-card div {
  padding: 28px;
}

.operation-card span {
  color: #9ceec0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operation-card h3 {
  margin: 12px 0 12px;
  font-size: 1.5rem;
  line-height: 1.16;
}

.operation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.glass-panel {
  background:
    linear-gradient(145deg, rgba(7, 26, 53, 0.92), rgba(13, 47, 52, 0.82)),
    rgba(7, 26, 53, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.visual-bento {
  background: var(--white);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.bento-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.bento-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.bento-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  background: rgba(7, 26, 53, 0.72);
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.method {
  background: #eef3f7;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #243245;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 18px;
  height: 18px;
  border: 5px solid var(--green);
}

.method-panel {
  position: relative;
  box-shadow: var(--shadow);
}

.method-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.panel-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.panel-note span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-note strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.plans {
  background: var(--white);
}

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

.plan-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.featured-plan {
  color: var(--white);
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}

.featured-plan p {
  color: rgba(255, 255, 255, 0.78);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  background: rgba(32, 163, 91, 0.18);
  color: #b5f4ce;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audits {
  background: #142031;
  color: var(--white);
}

.audits p {
  color: rgba(255, 255, 255, 0.76);
}

.audit-points {
  display: grid;
  gap: 14px;
}

.audit-points span {
  padding: 22px 24px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.confidence {
  background: var(--paper);
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.values span {
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: #2e4054;
  font-weight: 800;
}

.final-cta {
  padding: 108px 0;
  color: var(--white);
  background: linear-gradient(135deg, #071a35 0%, #12395f 55%, #1f673f 100%);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-media {
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.contact-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lead-form {
  padding: 34px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.lead-form h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.lead-form p {
  margin: 0 0 24px;
  color: var(--muted);
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #263548;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfd8e3;
  border-radius: 0;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(32, 163, 91, 0.22);
  border-color: var(--green);
}

.form-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  font-size: 0.96rem;
}

.privacy-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  line-height: 1.35;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.privacy-check a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-local-warning {
  display: none;
  margin: 14px 0 0 !important;
  padding: 12px 14px;
  border-left: 4px solid var(--warning);
  background: #fff4ed;
  color: #7c2d12 !important;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-local-warning.is-visible {
  display: block;
}

.site-footer {
  background: #071a35;
  color: var(--white);
  padding: 66px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr;
  gap: 34px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 22px;
  background: var(--white);
}

.footer-brand p,
.footer-col p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-col a:hover,
.footer-col a:focus {
  color: var(--green);
}

.footer-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(32, 163, 91, 0.14);
  color: #b5f4ce !important;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
}

.legal-body {
  background: var(--paper);
}

.legal-header {
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.legal-header img {
  width: 170px;
}

.legal-header a:last-child {
  color: var(--navy);
  font-weight: 800;
}

.legal-main {
  padding: 72px 0;
}

.legal-content {
  max-width: 880px;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.thanks-actions .btn {
  color: var(--white);
}

.thanks-whatsapp {
  background: var(--navy);
  border-color: var(--navy);
}

@keyframes morphFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    border-radius: 44% 56% 60% 40%;
  }
  50% {
    transform: translate3d(-22px, 18px, 0) rotate(18deg) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

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

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

  [data-reveal],
  .char {
    opacity: 1;
    transform: none;
  }
}

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

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .benefit-grid,
  .service-grid,
  .plan-grid,
  .footer-grid,
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large,
  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 900px) {
  .hero-content {
    max-width: 430px;
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  .container {
    width: 100%;
    max-width: 1160px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 92vh;
    padding: 104px 0 36px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.85rem);
    line-height: 1.05;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics div {
    width: 100%;
  }

  .intro-grid,
  .method-grid,
  .audit-grid,
  .confidence-grid,
  .contact-grid,
  .footer-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

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

  .operations-showcase {
    background:
      radial-gradient(circle at 18% 8%, rgba(32, 163, 91, 0.22), transparent 34%),
      linear-gradient(180deg, #071a35 0%, #122841 52%, #102f34 100%);
  }

  .operations-sticky {
    position: relative;
    top: auto;
  }

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

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .benefit-grid,
  .service-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .service-grid article,
  .plan-grid article {
    min-height: auto;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip img,
  .method-panel img {
    min-height: 260px;
  }

  .panel-note {
    position: static;
  }

  .lead-form {
    padding: 24px;
  }

  .site-footer {
    padding-top: 50px;
  }

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

  .legal-content {
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    display: flex;
  }

  .header-cta {
    display: none;
  }

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