:root {
  --color-navy: #0b1324;
  --color-graphite: #172033;
  --color-ink: #182234;
  --color-muted: #647084;
  --color-line: #dbe2ec;
  --color-soft: #f5f7fb;
  --color-white: #ffffff;
  --color-logo-green: #7fc241;
  --color-logo-green-soft: #dff2cf;
  --color-logo-green-dark: #3f7f22;
  --color-amber: #ffb000;
  --color-orange: #ff7a1a;
  --color-orange-dark: #d95a00;
  --shadow-soft: 0 18px 50px rgba(11, 19, 36, 0.14);
  --radius: 8px;
  --container: 1160px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 32px, 840px);
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--color-navy);
  background: var(--color-logo-green);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(11, 19, 36, 0.94);
  color: var(--color-white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-logo-green), var(--color-logo-green-dark));
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--color-logo-green);
  border-radius: var(--radius);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--color-white);
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 48px;
  padding: 8px 14px;
  color: var(--color-navy);
  background: var(--color-amber);
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(255, 176, 0, 0.24);
}

.header-call span {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
}

.header-call strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  color: var(--color-white);
  isolation: isolate;
  overflow: hidden;
}

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

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

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 19, 36, 0.96) 0%, rgba(11, 19, 36, 0.82) 44%, rgba(11, 19, 36, 0.36) 100%),
    linear-gradient(0deg, rgba(11, 19, 36, 0.42), rgba(11, 19, 36, 0));
}

.hero-content {
  padding: 72px 0 96px;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2.4vw, 1.34rem);
}

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

.hero .eyebrow,
.conversion-band .eyebrow,
.final-cta .eyebrow {
  color: var(--color-logo-green);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
  box-shadow: 0 16px 38px rgba(255, 122, 26, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffc247, var(--color-orange));
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-row li {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.section,
.page-section {
  padding: 84px 0;
}

.services-section,
.process-section {
  background: var(--color-soft);
}

.references-section {
  background: var(--color-white);
}

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

.section-heading h2,
.split-layout h2,
.conversion-band h2,
.final-cta h2,
.legal-content h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.split-layout p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 19, 36, 0.05);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--color-logo-green-dark);
  background: var(--color-logo-green-soft);
  border-radius: var(--radius);
  font-weight: 900;
}

.service-card h3 {
  min-height: 58px;
  margin: 0;
  color: var(--color-navy);
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-card p {
  margin: 12px 0 20px;
  color: var(--color-muted);
}

.text-link {
  margin-top: auto;
  color: var(--color-orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.prices-section {
  background: var(--color-white);
}

.prices-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.price-panel {
  padding: 28px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.price-list div:first-child {
  padding-top: 0;
}

.price-list dt {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.price-list dd {
  margin: 0;
  color: var(--color-logo-green);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.price-note {
  margin: 20px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 48px;
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(11, 19, 36, 0.05);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--color-logo-green);
  border-bottom: 3px solid var(--color-logo-green);
  transform: rotate(-45deg);
}

.conversion-band,
.final-cta {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy), #1e2e49);
}

.conversion-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 54px 0;
}

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

.conversion-inner p,
.final-cta p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.coverage-panel {
  padding: 28px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.coverage-panel h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 11px;
  color: var(--color-navy);
  background: var(--color-logo-green);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.88rem;
}

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

.reference-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--color-navy);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(11, 19, 36, 0.12);
}

.reference-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.reference-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--color-white);
  background: rgba(11, 19, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

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

.reference-card figcaption span {
  color: var(--color-logo-green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-card figcaption strong {
  margin-top: 2px;
  font-size: 0.96rem;
  line-height: 1.25;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 250px;
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.process-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--color-navy);
  background: var(--color-logo-green);
  border-radius: 999px;
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.25;
}

.process-list p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--color-navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--color-muted);
}

.final-cta {
  text-align: center;
}

.final-cta-inner {
  padding: 76px 0;
}

.final-cta .btn {
  margin-top: 28px;
}

.sticky-call {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
}

.cta-call-sticky {
  display: flex;
  flex-direction: column;
  min-width: 246px;
  padding: 14px 18px;
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(255, 122, 26, 0.38);
  text-decoration: none;
}

.cta-call-sticky span {
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-call-sticky strong {
  font-size: 1.18rem;
  line-height: 1.2;
}

.page-hero {
  padding: 84px 0;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(11, 19, 36, 0.94), rgba(23, 32, 51, 0.9)),
    url("../images/peta24-hero-automentes.avif") center/cover no-repeat;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.content-card,
.legal-content {
  padding: 34px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}

.legal-list dt {
  color: var(--color-muted);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
}

.site-footer {
  padding-bottom: 82px;
  color: rgba(255, 255, 255, 0.78);
  background: #090f1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 42px;
  padding: 56px 0 38px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: 1rem;
}

.site-footer p {
  margin: 10px 0;
}

.footer-brand {
  color: var(--color-white);
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a,
.site-footer a {
  color: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  padding: 18px 0;
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .conversion-inner,
  .split-layout,
  .prices-layout {
    grid-template-columns: 1fr;
  }

  .conversion-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 82px;
  }

  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    gap: 12px;
  }

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

  .brand-logo-wrap {
    width: 46px;
    height: 46px;
  }

  .brand-text small,
  .main-nav {
    display: none;
  }

  .header-call {
    min-height: 42px;
    padding: 7px 10px;
  }

  .header-call span {
    display: none;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 19, 36, 0.96), rgba(11, 19, 36, 0.72)),
      linear-gradient(0deg, rgba(11, 19, 36, 0.48), rgba(11, 19, 36, 0.05));
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-content {
    padding: 56px 0 76px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .conversion-inner .btn,
  .final-cta .btn {
    width: 100%;
  }

  .trust-row li {
    width: 100%;
  }

  .section,
  .page-section {
    padding: 62px 0;
  }

  .section-heading h2,
  .split-layout h2,
  .conversion-band h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .service-grid,
  .reference-grid,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .service-card h3 {
    min-height: auto;
  }

  .conversion-inner {
    padding: 46px 0;
  }

  .coverage-panel,
  .price-panel,
  .content-card,
  .legal-content {
    padding: 22px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-list dd {
    text-align: left;
    white-space: normal;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .sticky-call {
    right: 0;
    bottom: 0;
    left: 0;
  }

  .cta-call-sticky {
    min-width: 0;
    width: 100%;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
