@font-face {
  font-family: "Gordita";
  src: url("../../gordita-font/Gordita-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Gordita";
  src: url("../../gordita-font/Gordita-Bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Roboto Slab";
  src: url("../../gordita-font/RobotoSlab-700-900.woff2") format("woff2");
  font-display: swap;
  font-weight: 700 900;
}

:root {
  --av-green: #0d4f2c;
  --av-green-2: #167446;
  --av-green-3: #e9f5e7;
  --av-orange: #b55416;
  --av-orange-2: #fff2e7;
  --av-ink: #202235;
  --av-text: #47505c;
  --av-line: #dce8da;
  --av-soft: #f7fbf3;
  --av-white: #ffffff;
  --av-shadow: 0 18px 40px rgba(19, 51, 36, 0.16);
  --av-shadow-soft: 0 12px 28px rgba(20, 47, 36, 0.09);
  --av-radius: 8px;
  --av-header-height: 74px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 102px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--av-text);
  background: var(--av-soft);
  font-family: "Gordita", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.av-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.av-skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--av-radius);
  background: var(--av-ink);
  color: var(--av-white);
  padding: 10px 16px;
  font-weight: 700;
}

.av-skip-link:focus {
  transform: translateY(0);
}

.av-container {
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
}

.av-section {
  padding: 86px 0;
  position: relative;
}

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

.av-section--muted {
  background: var(--av-soft);
}

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

.av-section-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.av-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--av-orange);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.av-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.av-title,
.av-section-title {
  margin: 0;
  color: var(--av-ink);
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.av-section-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.av-lede {
  margin: 16px 0 0;
  color: var(--av-text);
  font-size: 18px;
}

.av-section--green .av-section-title,
.av-section--green .av-lede {
  color: var(--av-white);
}

.av-highlight {
  color: var(--av-orange);
}

.av-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.av-icon,
.av-product-chip svg,
.av-card-icon svg,
.av-footer-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.av-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: var(--av-radius);
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.av-button:focus-visible,
.av-form-control:focus-visible,
.av-nav-link:focus-visible,
.av-mobile-toggle:focus-visible {
  outline: 3px solid rgba(228, 122, 46, 0.38);
  outline-offset: 3px;
}

.av-button--primary {
  background: var(--av-orange);
  color: var(--av-white);
  box-shadow: 0 12px 24px rgba(228, 122, 46, 0.25);
}

.av-button--primary:hover {
  background: #96440f;
}

.av-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--av-white);
  background: rgba(255, 255, 255, 0.08);
}

.av-button--outline {
  border: 1px solid var(--av-green);
  color: var(--av-green);
  background: var(--av-white);
}

.av-site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.av-header-inner {
  width: min(calc(100% - 48px), 1280px);
  min-height: var(--av-header-height);
  margin: 0 auto;
  border: 1px solid rgba(13, 79, 44, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(18, 36, 28, 0.18);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 16px;
  pointer-events: auto;
  transition: min-height 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.av-site-header.is-scrolled .av-header-inner {
  min-height: 64px;
  border-color: rgba(13, 79, 44, 0.2);
  box-shadow: 0 12px 28px rgba(18, 36, 28, 0.22);
}

.av-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 00px;
}

.av-brand-mark {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.av-brand-name {
  color: var(--av-orange);
  font-weight: 900;
  line-height: 1.05;
}

.av-brand-tagline {
  display: block; 
  color: var(--av-text);
  font-size: 12px;
  font-weight: 600;
}

.av-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.av-nav-link {
  border-radius: var(--av-radius);
  color: var(--av-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 12px;
  transition: background 160ms ease, color 160ms ease;
}

.av-nav-link:hover,
.av-nav-link.is-active {
  background: var(--av-green-3);
  color: var(--av-green);
}

.av-header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(135deg, #12091f 0%, #d96f24 54%, #f28a2c 100%);
  color: var(--av-white);
  box-shadow: 0 12px 28px rgba(217, 111, 36, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.58) inset;
  white-space: nowrap;
  animation: av-quote-glow 4.8s ease-in-out infinite;
}

.av-header-cta::before {
  content: "";
  position: absolute;
  inset: -80% -35%;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 45%, rgba(255, 191, 120, 0.78), transparent 28%),
    radial-gradient(circle at 76% 50%, rgba(18, 9, 31, 0.74), transparent 31%);
  opacity: 0.58;
  transform: translateX(-12%) rotate(8deg);
  animation: av-quote-aurora 8s ease-in-out infinite;
}

.av-header-cta::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(18deg);
  animation: av-quote-sheen 6.5s ease-in-out infinite;
}

.av-header-cta:hover {
  color: var(--av-white);
  box-shadow: 0 16px 34px rgba(217, 111, 36, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.av-header-cta .av-header-cta-label,
.av-header-cta .av-icon {
  position: relative;
  z-index: 1;
}

.av-header-cta .av-icon {
  transition: transform 220ms ease;
}

.av-header-cta:hover .av-icon {
  transform: translate(2px, -2px);
}

@keyframes av-quote-glow {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(217, 111, 36, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.58) inset;
  }
  50% {
    box-shadow: 0 16px 38px rgba(18, 9, 31, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  }
}

@keyframes av-quote-aurora {
  0%,
  100% {
    transform: translateX(-12%) rotate(8deg);
  }
  50% {
    transform: translateX(12%) rotate(8deg);
  }
}

@keyframes av-quote-sheen {
  0%,
  46% {
    left: -55%;
    opacity: 0;
  }
  58% {
    opacity: 0.55;
  }
  72%,
  100% {
    left: 120%;
    opacity: 0;
  }
}

.av-mobile-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--av-radius);
  background: var(--av-green);
  color: var(--av-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.av-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.av-mobile-nav.is-open {
  display: block;
}

.av-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 14, 0.58);
}

.av-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;
  padding: 20px;
  background: var(--av-white);
  box-shadow: -18px 0 36px rgba(16, 35, 26, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.av-mobile-nav.is-open .av-mobile-panel {
  transform: translateX(0);
}

.av-mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.av-mobile-close {
  width: 32px;
  height: 32px;
  border-radius: var(--av-radius);
  background: var(--av-green-3);
  color: var(--av-green);
  cursor: pointer;
}

.av-mobile-links {
  display: grid;
  gap: 8px;
}

.av-mobile-links a {
  border-radius: var(--av-radius);
  border: 1px solid var(--av-line);
  color: var(--av-ink);
  font-weight: 700;
  padding: 14px 15px;
}

.av-mobile-links a:hover {
  background: var(--av-green-3);
  color: var(--av-green);
}

.av-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--av-ink);
  color: var(--av-white);
}

.av-hero-slides,
.av-hero-slide,
.av-hero-media,
.av-hero-media img,
.av-hero-overlay {
  position: absolute;
  inset: 0;
}

.av-hero-slide {
  opacity: 0;
  transition: opacity 700ms ease;
}

.av-hero-slide.is-active {
  opacity: 1;
}

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

.av-hero-overlay {
  background: linear-gradient(90deg, rgba(11, 23, 18, 0.88) 0%, rgba(11, 23, 18, 0.63) 48%, rgba(11, 23, 18, 0.28) 100%);
}

.av-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 142px 0 108px;
}

.av-hero-copy {
  width: min(100%, 720px);
}

.av-hero .av-eyebrow {
  color: #ffd3aa;
}

.av-hero h1 {
  color: var(--av-white);
  font-size: 56px;
}

.av-hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.av-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.av-hero-points li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--av-radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 700;
}

.av-slider-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 76px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.av-slider-dot {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: background 160ms ease, width 160ms ease;
}

.av-slider-dot.is-active {
  width: 54px;
  background: var(--av-orange);
}

.av-product-nav {
  position: relative;
  z-index: 8;
  margin-top: -50px;
  padding-bottom: 34px;
}

.av-product-nav-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0 10px 4px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.av-product-nav-item {
  flex: 0 0 auto;
}

.av-product-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 104px;
  color: var(--av-green);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.av-product-chip span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: var(--av-green);
  color: var(--av-white);
  box-shadow: var(--av-shadow-soft);
}

.av-product-nav-item:nth-child(2) .av-product-chip span {
  background: #167446;
}

.av-product-nav-item:nth-child(3) .av-product-chip span {
  background: #2d9b62;
}

.av-product-nav-item:nth-child(4) .av-product-chip span {
  background: #58b979;
}

.av-product-nav-item:nth-child(5) .av-product-chip span {
  background: #6dcbd3;
}

.av-product-chip svg {
  width: 50px;
  height: 50px;
}

.av-stats {
  padding: 34px 0 58px;
}

.av-stat-strip {
  border-radius: var(--av-radius);
  background: var(--av-green);
  box-shadow: var(--av-shadow);
  color: var(--av-white);
  padding: 34px 26px;
}

.av-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.av-stat {
  text-align: center;
}

.av-stat strong {
  display: block;
  color: var(--av-white);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.av-stat span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.av-about-grid,
.av-spec-grid,
.av-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.av-about-copy p,
.av-spec-copy p {
  margin: 0 0 18px;
}

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

.av-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--av-ink);
  font-weight: 700;
}

.av-check-list svg {
  color: var(--av-green-2);
  margin-top: 4px;
}

.av-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.av-image-stack img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: var(--av-radius);
  object-fit: cover;
  box-shadow: var(--av-shadow-soft);
}

.av-image-stack img:first-child {
  grid-row: span 2;
}

.av-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.av-product-card,
.av-application-card,
.av-proof-card,
.av-form-shell,
.av-newsletter,
.av-faq-card {
  border: 1px solid var(--av-line);
  border-radius: var(--av-radius);
  background: var(--av-white);
  box-shadow: var(--av-shadow-soft);
}

.av-product-card {
  overflow: hidden;
}

.av-product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.av-product-body {
  padding: 26px;
}

.av-product-body h3,
.av-application-card h3,
.av-proof-card h3,
.av-form-shell h3,
.av-newsletter h3,
.av-faq-card h3 {
  margin: 0 0 12px;
  color: var(--av-ink);
  font-size: 22px;
  line-height: 1.25;
}

.av-product-body p,
.av-application-card p,
.av-proof-card p,
.av-newsletter p,
.av-faq-card p {
  margin: 0;
}

.av-spec-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.av-spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  border-top: 1px solid var(--av-line);
  padding-top: 10px;
}

.av-spec-row dt {
  color: var(--av-ink);
  font-weight: 900;
}

.av-spec-row dd {
  margin: 0;
}

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

.av-application-card {
  padding: 22px;
  min-height: 188px;
}

.av-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--av-radius);
  margin-bottom: 18px;
  background: var(--av-orange-2);
  color: var(--av-orange);
}

.av-card-icon svg {
  width: 23px;
  height: 23px;
}

.av-spec-panel {
  border-radius: var(--av-radius);
  background: var(--av-green-3);
  padding: 28px;
}

.av-spec-image {
  border-radius: var(--av-radius);
  overflow: hidden;
  box-shadow: var(--av-shadow-soft);
}

.av-spec-image img {
  width: 100%; 
  object-fit: cover;
}

.av-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.av-proof-card {
  padding: 22px 18px;
  text-align: center;
}

.av-proof-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 16px;
  background: var(--av-green);
  color: var(--av-white);
  font-weight: 900;
}

.av-cta {
  background: var(--av-soft);
  padding-top: 26px;
  padding-bottom: 82px;
}

.av-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--av-radius);
  background: var(--av-green);
  color: var(--av-white);
  padding: 34px 38px;
  box-shadow: var(--av-shadow);
}

.av-cta-panel h2 {
  margin: 0;
  color: var(--av-white);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
}

.av-cta-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.av-contact {
  background: #f1f8ec;
  border-top: 1px solid var(--av-line);
}

.av-contact-grid {
  align-items: start;
}

.av-contact-details {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.av-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--av-ink);
  font-weight: 700;
}

.av-contact-detail svg {
  color: var(--av-green);
  margin-top: 3px;
}

.av-newsletter {
  padding: 24px;
}

.av-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}

.av-newsletter-status,
.av-form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.av-newsletter-status.is-success,
.av-form-status.is-success {
  color: var(--av-green);
}

.av-newsletter-status.is-error,
.av-form-status.is-error {
  color: #b3261e;
}

.av-form-shell {
  padding: 30px;
}

.av-form {
  display: grid;
  gap: 14px;
}

.av-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.av-field {
  display: grid;
  gap: 7px;
}

.av-field label {
  color: var(--av-ink);
  font-size: 14px;
  font-weight: 700;
}

.av-form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cddcc8;
  border-radius: var(--av-radius);
  background: var(--av-white);
  color: var(--av-ink);
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.av-form-control:focus {
  border-color: var(--av-green-2);
  box-shadow: 0 0 0 4px rgba(22, 116, 70, 0.12);
}

textarea.av-form-control {
  min-height: 126px;
  resize: vertical;
}

.av-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.av-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.av-submit-note {
  margin: 0;
  color: var(--av-text);
  font-size: 13px;
}

.av-faq-card {
  margin-top: 22px;
  padding: 24px;
}

.av-faq-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.av-faq-list details {
  border-top: 1px solid var(--av-line);
  padding-top: 14px;
}

.av-faq-list summary {
  color: var(--av-ink);
  cursor: pointer;
  font-weight: 900;
}

.av-faq-list p {
  margin: 8px 0 0;
}

.av-footer {
  background: #eef7e7;
  border-top: 1px solid var(--av-line);
  padding: 54px 0 22px;
}

.av-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.av-footer-about {
  max-width: 410px;
}

.av-footer-logo {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 16px;
}

.av-footer h2,
.av-footer h3 {
  margin: 0 0 14px;
  color: var(--av-ink);
  font-size: 17px;
}

.av-footer p,
.av-footer li {
  margin: 0;
  color: var(--av-text);
}

.av-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.av-footer-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  line-height: 1.45;
}

.av-footer-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.av-footer-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
  color: var(--av-green);
}

.av-footer a.av-footer-line {
  transition: color 160ms ease, transform 160ms ease;
}

.av-footer a.av-footer-line:hover {
  color: var(--av-green);
  transform: translateX(2px);
}

.av-footer-brochure {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(181, 84, 22, 0.26);
  border-radius: var(--av-radius);
  margin-top: 18px;
  padding: 10px 13px;
  color: var(--av-orange);
  font-weight: 900;
  line-height: 1.2;
  background: rgba(255, 242, 231, 0.64);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.av-footer-brochure:hover {
  background: var(--av-orange);
  color: var(--av-white);
  transform: translateY(-1px);
}

.av-footer-brochure .av-footer-icon {
  margin-top: 0;
  color: currentColor;
}

.av-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.av-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--av-line);
  border-radius: var(--av-radius);
  color: var(--av-green);
  font-weight: 900;
}

.av-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--av-line);
  margin-top: 38px;
  padding-top: 20px;
  font-size: 14px;
}

.av-footer-bottom .av-footer-line {
  align-items: center;
}

.av-footer-bottom .av-footer-icon {
  margin-top: 0;
  color: var(--av-orange);
}

.av-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, #075e54 0%, #128c7e 42%, #25d366 100%);
  color: var(--av-white);
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.44) inset;
  padding: 12px 16px;
  font-weight: 900;
  animation: av-whatsapp-glow 5.2s ease-in-out infinite;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.av-whatsapp::before {
  content: "";
  position: absolute;
  inset: -95% -45%;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 45%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 76% 55%, rgba(69, 255, 150, 0.78), transparent 31%);
  opacity: 0.42;
  transform: translateX(-14%) rotate(10deg);
  animation: av-whatsapp-aurora 8.5s ease-in-out infinite;
}

.av-whatsapp::after {
  content: "";
  position: absolute;
  top: -34%;
  bottom: -34%;
  left: -58%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: rotate(18deg);
  animation: av-whatsapp-sheen 7.2s ease-in-out infinite;
}

.av-whatsapp-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 77, 43, 0.62);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26) inset;
}

.av-whatsapp-icon,
.av-whatsapp strong {
  position: relative;
  z-index: 1;
}

.av-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.av-whatsapp:hover {
  color: var(--av-white);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.58) inset;
  transform: translateY(-1px);
}

@keyframes av-whatsapp-glow {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(18, 140, 126, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.44) inset;
  }
  50% {
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.62) inset;
  }
}

@keyframes av-whatsapp-aurora {
  0%,
  100% {
    transform: translateX(-14%) rotate(10deg);
  }
  50% {
    transform: translateX(12%) rotate(10deg);
  }
}

@keyframes av-whatsapp-sheen {
  0%,
  48% {
    left: -58%;
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  74%,
  100% {
    left: 122%;
    opacity: 0;
  }
}

.av-hidden {
  display: none !important;
}

.av-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@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;
  }

  .av-header-cta {
    animation: none !important;
  }

  .av-header-cta::before,
  .av-header-cta::after,
  .av-whatsapp::before,
  .av-whatsapp::after {
    display: none;
  }
}

@media (max-width: 1120px) {
  .av-header-cta {
    display: none;
  }

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

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

  .av-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .av-desktop-nav {
    display: none;
  }

  .av-mobile-toggle {
    display: inline-flex;
  }

  .av-header-inner {
    width: min(calc(100% - 28px), 1220px);
  }

  .av-hero,
  .av-hero-content {
    min-height: 650px;
  }

  .av-hero h1 {
    font-size: 42px;
  }

  .av-about-grid,
  .av-spec-grid,
  .av-contact-grid,
  .av-product-grid,
  .av-cta-panel {
    grid-template-columns: 1fr;
  }

  .av-cta-panel {
    text-align: left;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .av-container {
    width: min(calc(100% - 32px), 1280px);
  }

  .av-section {
    padding: 64px 0;
  }

  .av-section-title {
    font-size: 32px;
  }

  .av-lede {
    font-size: 16px;
  }
 

  .av-brand-name {
    font-size: 15px;
  }

  .av-brand-mark {
    width: 60px;
    height: 60px;
  }

  .av-hero,
  .av-hero-content {
    min-height: 610px;
  }

  .av-hero-content {
    padding: 126px 0 92px;
  }

  .av-hero h1 {
    font-size: 34px;
  }

  .av-hero-copy,
  .av-hero-text {
    max-width: 360px;
  }

  .av-hero-text {
    font-size: 16px;
  }

  .av-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .av-product-chip {
    min-width: 84px;
  }

  .av-product-chip span {
    width: 72px;
    height: 72px;
  }

  .av-product-chip svg {
    width: 28px;
    height: 28px;
  }

  .av-product-nav-list {
    justify-content: flex-start;
  }

  .av-image-stack,
  .av-application-grid,
  .av-proof-grid,
  .av-stat-grid,
  .av-form-grid,
  .av-newsletter-form {
    grid-template-columns: 1fr;
  }

  .av-spec-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .av-stat-strip,
  .av-cta-panel,
  .av-form-shell,
  .av-newsletter,
  .av-faq-card {
    padding: 22px;
  }

  .av-footer-grid,
  .av-footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .av-whatsapp {
    inset: auto 16px 16px auto;
    right: 14px;
    bottom: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 110;
    gap: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    transform: translateZ(0);
  }

  .av-whatsapp strong {
    display: none;
  }

  .av-whatsapp-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 540px) {
  .av-header-inner {
    width: min(calc(100% - 28px), 360px);
    margin-left: 14px;
    margin-right: auto;
  }
}

@media (max-width: 460px) {
  .av-header-inner {
    padding: 8px 10px;
  }

  .av-brand-name {
    max-width: 126px;
  }

  .av-hero h1 {
    font-size: 30px;
  }

  .av-slider-controls {
    bottom: 60px;
  }
}
