:root {
  --white: #ffffff;
  --ice: #f4fbff;
  --ice-2: #eaf7ff;
  --blue-50: #eef9ff;
  --blue-100: #d8efff;
  --blue-300: #7bc8ff;
  --blue-500: #1395e8;
  --blue-600: #0b78d0;
  --blue-800: #07427a;
  --navy: #092844;
  --text: #153148;
  --muted: #62778a;
  --line: rgba(11, 120, 208, 0.14);
  --shadow: 0 20px 60px rgba(7, 66, 122, 0.13);
  --shadow-soft: 0 12px 36px rgba(7, 66, 122, 0.1);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 6%, rgba(123, 200, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f6fbff 0%, #edf7ff 48%, #f8fcff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(120deg, rgba(11, 120, 208, 0.04), transparent 34%),
    linear-gradient(300deg, rgba(123, 200, 255, 0.08), transparent 30%);
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

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

.section {
  scroll-margin-top: 96px;
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(11, 120, 208, 0.09);
  background: rgba(246, 251, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 251, 255, 0.96);
  box-shadow: 0 10px 30px rgba(7, 66, 122, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100% - 40px, var(--container));
  min-height: 76px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-800);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(19, 149, 232, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #ddf3ff 100%);
  color: var(--blue-600);
  box-shadow: 0 10px 28px rgba(19, 149, 232, 0.16);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #365369;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a {
  border-radius: 999px;
  padding: 10px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--blue-50);
  color: var(--blue-600);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--blue-800);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn::after {
  position: absolute;
  inset: -1px auto -1px -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg);
  pointer-events: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  animation: buttonShine 760ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(11, 120, 208, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(11, 120, 208, 0.32);
}

.btn-secondary {
  border-color: rgba(11, 120, 208, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-800);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(11, 120, 208, 0.32);
  background: var(--blue-50);
}

.btn-light {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: 0 16px 36px rgba(0, 52, 100, 0.18);
}

.btn-large {
  min-height: 54px;
  padding: 16px 25px;
  font-size: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding-top: 156px;
  background:
    radial-gradient(circle at 12% 18%, rgba(123, 200, 255, 0.34), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(11, 120, 208, 0.1), transparent 28%),
    linear-gradient(135deg, #eef8ff 0%, #f8fcff 48%, #eaf6ff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(11, 120, 208, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(11, 120, 208, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  animation: gridDrift 22s linear infinite;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(19, 149, 232, 0.18), transparent 70%);
  content: "";
  pointer-events: none;
  animation: frostPulse 7s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 56px;
}

.hero-copy h1,
.section-heading h2,
.split-heading h2,
.why-copy h2,
.product-content h2,
.cta-box h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: 4.8rem;
}

.hero-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

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

.hero-stats {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.hero-stats div {
  border: 1px solid rgba(11, 120, 208, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(231, 247, 255, 0.72));
  padding: 16px;
  box-shadow: 0 10px 28px rgba(7, 66, 122, 0.06);
}

.hero-stats strong {
  display: block;
  color: var(--blue-800);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 218, 255, 0.5);
  border-radius: 28px;
  background: #eaf7ff;
  box-shadow: var(--shadow);
}

.image-frame::after,
.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 120, 208, 0.04), rgba(7, 66, 122, 0.26));
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  animation: heroImageDrift 12s ease-in-out infinite alternate;
}

.temperature-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(210px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(245, 251, 255, 0.9);
  padding: 18px;
  color: var(--blue-800);
  box-shadow: 0 18px 42px rgba(7, 66, 122, 0.22);
  backdrop-filter: blur(14px);
  animation: coolFloat 4.8s ease-in-out infinite;
}

.temperature-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.temperature-card strong {
  display: block;
  margin-top: 2px;
  color: var(--blue-600);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.air-streams {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.air-streams span {
  position: absolute;
  left: -34%;
  width: 42%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(210, 242, 255, 0.86), rgba(11, 120, 208, 0.28), transparent);
  filter: drop-shadow(0 0 8px rgba(123, 200, 255, 0.42));
  opacity: 0;
  animation: airFlow 5.8s ease-in-out infinite;
}

.air-streams span:nth-child(1) {
  top: 24%;
}

.air-streams span:nth-child(2) {
  top: 38%;
  animation-delay: 1.25s;
}

.air-streams span:nth-child(3) {
  top: 53%;
  animation-delay: 2.35s;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-heading h2,
.why-copy h2,
.product-content h2,
.cta-box h2 {
  font-size: 3.2rem;
}

.section-heading p,
.split-heading p,
.why-copy p,
.product-content p,
.cta-box p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.highlights {
  background: linear-gradient(180deg, #f5fbff 0%, #edf8ff 100%);
}

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

.feature-card,
.service-card,
.trust-item,
.address-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 249, 255, 0.74));
  box-shadow: 0 10px 30px rgba(7, 66, 122, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.feature-card::after,
.service-card::after,
.trust-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(123, 200, 255, 0.18) 46%, transparent 70%);
  content: "";
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 240ms ease, transform 560ms ease;
  pointer-events: none;
}

.feature-card:hover,
.service-card:hover,
.trust-item:hover {
  border-color: rgba(11, 120, 208, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.feature-card:hover::after,
.service-card:hover::after,
.trust-item:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.feature-card {
  padding: 26px;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #d7efff, #f5fbff);
  color: var(--blue-600);
  box-shadow: 0 10px 22px rgba(19, 149, 232, 0.14);
}

.icon-box svg {
  width: 27px;
  height: 27px;
}

.feature-card h3,
.service-card h3,
.address-card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
}

.feature-card p,
.service-card p,
.trust-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services {
  background:
    linear-gradient(180deg, #edf8ff 0%, #f8fcff 100%);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 36px;
  margin-bottom: 42px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-300));
  content: "";
}

.service-card h3 {
  max-width: 280px;
  margin-top: 0;
  font-size: 1.22rem;
}

.products {
  padding: 76px 0;
  background: #eef8ff;
}

.product-band {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  overflow: hidden;
  border: 1px solid rgba(11, 120, 208, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(221, 243, 255, 0.84)),
    url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1200&q=75") center / cover;
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.product-content {
  max-width: 620px;
}

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

.product-list span {
  display: flex;
  min-height: 72px;
  align-items: center;
  border: 1px solid rgba(11, 120, 208, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  color: var(--blue-800);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 66, 122, 0.07);
}

.why {
  background:
    radial-gradient(circle at 92% 8%, rgba(123, 200, 255, 0.18), transparent 30%),
    #f7fcff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
}

.why-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 24px;
}

.trust-item span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-500);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.gallery-section {
  background: linear-gradient(180deg, #eaf7ff 0%, #f7fcff 100%);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  background: var(--blue-100);
  box-shadow: 0 12px 32px rgba(7, 66, 122, 0.1);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.cta-section {
  padding: 78px 0;
}

.cta-box {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 28px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 66, 122, 0.94), rgba(11, 120, 208, 0.92)),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1400&q=75") center / cover;
  padding: 54px;
  color: var(--white);
  box-shadow: var(--shadow);
  animation: ctaGlow 6s ease-in-out infinite;
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  opacity: 0.86;
}

.location {
  background:
    linear-gradient(180deg, #f7fcff 0%, #eaf7ff 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}

.map-card {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(11, 120, 208, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-50), #ffffff);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.map-placeholder {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 24px;
  color: var(--blue-800);
  text-align: center;
}

.map-placeholder span {
  display: block;
  color: var(--blue-600);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.map-placeholder strong {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-size: 1.45rem;
}

.address-card {
  align-self: stretch;
  padding: 30px;
}

.address-card h3 {
  margin: 0 0 20px;
}

.address-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.address-card div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.address-card dt {
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.address-card dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
}

.site-footer {
  background: #061f36;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

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

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

.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--blue-300);
  box-shadow: none;
}

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

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.site-footer a:not(.brand):hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.36);
  animation: pulse 2.4s infinite;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes buttonShine {
  0% {
    left: -45%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 72px 0, 0 72px;
  }
}

@keyframes frostPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.035);
  }
}

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

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

@keyframes airFlow {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) rotate(-5deg) scaleX(0.72);
  }

  18% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.48;
  }

  100% {
    opacity: 0;
    transform: translate3d(350%, -24px, 0) rotate(-5deg) scaleX(1.05);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: 0 26px 68px rgba(7, 66, 122, 0.24);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42), 0 16px 38px rgba(37, 211, 102, 0.36);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 16px 38px rgba(37, 211, 102, 0.36);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 16px 38px rgba(37, 211, 102, 0.36);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

  .hero-copy h1 {
    font-size: 4rem;
  }

  .section-heading h2,
  .split-heading h2,
  .why-copy h2,
  .product-content h2,
  .cta-box h2 {
    font-size: 2.75rem;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .image-frame img {
    height: min(64vw, 560px);
  }

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

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

  .product-band,
  .why-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(11, 120, 208, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-copy h1 {
    font-size: 3.25rem;
  }

  .section-heading h2,
  .split-heading h2,
  .why-copy h2,
  .product-content h2,
  .cta-box h2 {
    font-size: 2.3rem;
  }

  .hero-grid {
    gap: 36px;
  }

  .split-heading,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 38px 28px;
  }

  .cta-box .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 1rem;
  }

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

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-copy p,
  .section-heading p,
  .split-heading p,
  .why-copy p,
  .product-content p,
  .cta-box p {
    font-size: 1rem;
  }

  .section-heading h2,
  .split-heading h2,
  .why-copy h2,
  .product-content h2,
  .cta-box h2 {
    font-size: 2rem;
  }

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

  .hero-stats,
  .feature-grid,
  .service-grid,
  .trust-list,
  .gallery-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

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

  .image-frame {
    border-radius: 20px;
  }

  .image-frame img {
    height: 380px;
  }

  .temperature-card {
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .feature-card,
  .service-card,
  .trust-item,
  .address-card {
    border-radius: 8px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .product-band {
    border-radius: 20px;
    padding: 28px;
  }

  .map-card,
  .map-placeholder,
  .map-card iframe {
    min-height: 340px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }
}
