:root {
  --blue: #1a6ea8;
  --blue-dark: #0d3d5d;
  --navy: #102535;
  --black: #0b0d10;
  --charcoal: #1d2329;
  --white: #ffffff;
  --silver: #eef5fb;
  --gold: #d9b36a;
  --green: #1ab66d;
  --soft-blue: #64add6;
  --shadow: rgba(11, 16, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: #f4f7fb;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

img, iframe {
  border: 0;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  overflow: visible;
}

main {
  padding-top: 126px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(90deg, #0b6ea7 0%, #0a4f78 100%);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
  min-height: 42px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
}

.topbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.topbar-inner i {
  font-size: 1.08rem;
  line-height: 1;
}

.top-contact {
  font-weight: 800;
  white-space: nowrap;
}

.top-contact-left {
  justify-self: start;
}

.top-contact-center {
  justify-self: center;
}

.top-contact-address {
  justify-self: end;
  display: none;
}

@media (min-width: 761px) {
  .top-contact-address {
    display: inline-flex;
  }
}

.header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 37, 53, 0.08);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .header {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1.5rem;
}

.main-nav {
  margin-left: auto;
  margin-right: 0.75rem;
}

.brand-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 1.15rem;
  margin-bottom: -1.15rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.05rem, 0.8vw + 0.7rem, 1.5rem);
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.brand-dropdown:hover .brand-panel,
.brand-dropdown:focus-within .brand-panel,
.brand-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.brand-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  width: min(19rem, 85vw);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 71, 119, 0.12);
  border-radius: 1rem;
  box-shadow: 0 22px 50px rgba(10, 20, 30, 0.14);
  padding: 0.9rem;
  display: grid;
  gap: 0.8rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.brand-panel-group {
  display: grid;
  gap: 0.35rem;
}

.brand-panel-title {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.brand-panel a {
  display: block;
  padding: 0.65rem 0.7rem;
  border-radius: 0.7rem;
  color: var(--navy);
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.brand-panel a:hover {
  background: rgba(26, 110, 168, 0.06);
  color: var(--blue-dark);
}

.brand-panel-link {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand-panel-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  margin-top: 0.3rem;
  padding: 0.8rem 1rem !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue) 0%, #2b88d6 100%) !important;
  color: var(--white) !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 22px rgba(26, 110, 168, 0.25) !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.brand-title-home {
  color: #d62222;
}

.brand-logo {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(26, 110, 168, 0.2);
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(26, 110, 168, 0.18);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(26, 110, 168, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 600;
}

.mobile-menu-trigger {
  display: none;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 1.1rem;
  margin-bottom: -1.1rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.main-nav > a:hover::after,
.nav-link:hover::after,
.nav-dropdown:hover > .nav-link::after {
  transform: scaleX(1);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 18rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 71, 119, 0.12);
  border-radius: 1rem;
  box-shadow: 0 26px 54px rgba(13, 41, 70, 0.12);
  padding: 0.8rem;
  display: grid;
  gap: 0.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel,
.nav-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-panel a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-panel a:hover {
  background: rgba(26, 110, 168, 0.06);
  color: var(--blue-dark);
  transform: translateX(2px);
}

.nav-panel-last {
  text-transform: uppercase !important;
  font-weight: 800 !important;
  color: var(--blue-dark) !important;
}

@media (max-width: 900px) {
  .nav-dropdown {
    position: static;
  }

  .nav-panel {
    display: none;
  }
}

.nav-cta,
.primary-btn,
.secondary-btn,
.blue-btn,
.store-btn,
.wa-badge,
.photo-card a,
.maint-card a,
.product-grid a,
.contact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta,
.primary-btn,
.blue-btn,
.store-btn,
.contact button {
  background: linear-gradient(135deg, var(--blue) 0%, #2b88d6 100%);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(26, 110, 168, 0.25);
}

.nav-cta {
  padding: 0.7rem 1.05rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: auto;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  font-weight: 500;
}

.primary-btn,
.blue-btn,
.store-btn {
  padding: 0.95rem 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.blue-btn:hover,
.store-btn:hover,
.wa-badge:hover,
.photo-card a:hover,
.maint-card a:hover,
.product-grid a:hover,
.contact button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 805px;
  overflow: hidden;
  background: #0d1b2a;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease, transform 1.2s ease;
  transform: scale(1.08);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 25, 0.88) 0%, rgba(8, 16, 25, 0.62) 42%, rgba(8, 16, 25, 0.25) 100%);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2rem;
  align-items: center;
  min-height: 805px;
  padding: 4rem 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9e5ff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.eyebrow-dark {
  color: var(--blue);
}

.hero-subtitle {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d9f3ff;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.5rem, 3.8vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: min(100%, 220px);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-actions a i,
.floating-wa i {
  display: inline-block;
  line-height: 1;
  font-size: 1.15rem;
  vertical-align: middle;
}

.hero-actions a span {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.hero-card {
  background: rgba(14, 30, 44, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 50px rgba(3, 11, 17, 0.28);
}

.card-topline {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #dcecff;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}

@media (max-width: 760px) {
  .hero-card {
    padding: 1.5rem 1rem;
  }

  .mini-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.hero-card h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  line-height: 1.05;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.mini-stats div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 0.7rem;
  text-align: center;
}

.mini-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.mini-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  line-height: 1.4;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: var(--white);
}

.services-photo {
  background: linear-gradient(180deg, #1c7db5 0%, #0d3d5d 100%);
  padding: 4.5rem 0 5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  position: relative;
  margin-top: 2rem;
}

.photo-card {
  position: relative;
  min-height: 225px;
  padding: 1.2rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(7, 20, 32, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.photo-card:hover {
  transform: scale(1.03);
  box-shadow: 0 24px 38px rgba(7, 20, 32, 0.25);
  filter: brightness(1.12);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.44), rgba(7, 11, 18, 0.8));
}

.photo-card:hover::before {
  background: linear-gradient(180deg, rgba(10, 15, 22, 0.24), rgba(10, 15, 22, 0.7));
}

.card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--white);
  width: 100%;
}

.photo-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  width: 100%;
  text-align: center;
}

.photo-card p {
  margin: 0 auto 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 24ch;
  text-align: center;
  width: 100%;
}

.photo-card a,
.maint-card a,
.product-grid a {
  display: inline-block;
  width: fit-content;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 auto;
}

.c1 {
  background-image: url("aire-acondicionado.jpg");
  grid-column: span 1;
  min-height: 250px;
}

.c2 {
  background-image: url("hero/reforma-electricidad.jpg");
  grid-column: span 1;
  min-height: 290px;
}

.c3 { background-image: url("diseño-instalacion-camaras-frigorificas.jpg"); }
.c4 { background-image: url("curso-de-fontaneria.jpg"); }
.c5 { background-image: url("panelsolar.jpg"); }
.c6 { background-image: url("calefaccion.jpg"); }

.maintenance {
  background: linear-gradient(180deg, #ebf3fb 0%, #dfeaf7 100%);
  padding: 4.5rem 0 5rem;
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.maint-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 32px var(--shadow);
  border: 1px solid rgba(11, 16, 25, 0.04);
}

.maint-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.maint-copy {
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.maint-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.maint-card p {
  margin: 0 0 1.1rem;
  color: #455463;
  line-height: 1.6;
}

.maint-card a {
  background: var(--blue);
  color: var(--white);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.dark-services {
  background: linear-gradient(180deg, #0d1116 0%, #212933 100%);
  padding: 4.5rem 0 5rem;
}

.service-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-box-grid article {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.service-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(127, 63, 244, 0.08);
  border: 2px solid rgba(127, 63, 244, 0.35);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04), 0 10px 20px rgba(28, 25, 39, 0.12);
}

.service-box-grid h3 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.service-box-grid p {
  margin: 0;
  color: #586274;
  line-height: 1.55;
  font-size: 0.9rem;
}

.sustainable {
  position: relative;
  background: linear-gradient(180deg, #0f1d1c 0%, #132c27 100%);
  padding: 4.5rem 0 5rem;
}

.sustainable::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 95px;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.02), rgba(10, 14, 20, 0.14));
  clip-path: polygon(0 45%, 15% 60%, 30% 38%, 46% 58%, 60% 25%, 74% 48%, 88% 24%, 100% 40%, 100% 100%, 0 100%);
}

.sustainable-heading h2,
.sustainable-heading .eyebrow {
  color: #8fe3a1;
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-grid article {
  background: rgba(8, 19, 17, 0.76);
  border: 1px solid rgba(143, 227, 161, 0.12);
  border-radius: 18px;
  padding: 1.6rem 1.2rem;
  color: #edf8f0;
  text-align: center;
  min-height: 180px;
  box-shadow: 0 12px 24px rgba(5, 14, 12, 0.28);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.9rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(143, 227, 161, 0.12);
  border: 2px solid rgba(143, 227, 161, 0.45);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04), 0 8px 16px rgba(17, 53, 42, 0.1);
  filter: drop-shadow(0 6px 12px rgba(17, 53, 42, 0.12));
}

.benefit-grid h3 {
  margin: 0 0 0.7rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fe3a1;
}

.benefit-grid p {
  margin: 0;
  color: rgba(237, 248, 240, 0.8);
  line-height: 1.6;
  font-size: 0.85rem;
}

.text-center {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 2.4rem;
}

.sustainable .blue-btn {
  background: linear-gradient(135deg, #1f8f5a 0%, #2fb070 100%);
  box-shadow: 0 12px 22px rgba(31, 143, 90, 0.22);
}

.testimonials {
  background: linear-gradient(180deg, #1f242a 0%, #090c0f 100%);
  padding: 4.5rem 0 5rem;
}

.testimonial-track-wrap {
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
}

.testimonial-track-wrap::before,
.testimonial-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #11161a 0%, rgba(17, 22, 26, 0) 100%);
}

.testimonial-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #11161a 0%, rgba(17, 22, 26, 0) 100%);
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: testimonial-scroll 28s linear infinite;
}

.testimonial-track article {
  background: rgba(28, 125, 181, 0.75);
  border-radius: 18px;
  color: var(--white);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 220px;
  width: min(32vw, 360px);
  flex: 0 0 auto;
}

.testimonial-track p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.location {
  background: #1e2329;
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.location-copy {
  padding: 4rem 0;
}

.location-copy h2 {
  margin: 0 0 1rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2rem, 2vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-copy p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.wa-badge {
  width: fit-content;
  margin-top: 0.8rem;
  padding: 0.8rem 1.1rem;
  background: var(--green);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.map-wrap {
  min-height: 350px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  filter: grayscale(0.15) saturate(1.2);
}

.products {
  background: linear-gradient(180deg, #9dc5f5 0%, #6da9e8 100%);
  padding: 0 0 4rem;
}

.bar-title {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.product-slider {
  overflow: hidden;
  margin-top: 2rem;
}

.product-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  transition: transform 0.8s ease;
}

.product-card {
  flex: 0 0 280px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(238,247,255,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 28px rgba(12, 39, 61, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 34px rgba(12, 39, 61, 0.22);
}

.product-card-top {
  position: relative;
  background: linear-gradient(135deg, #dfeeff 0%, #a9d3ff 100%);
  padding: 0;
  overflow: hidden;
}

.product-card-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  left: auto;
  background: linear-gradient(135deg, #ffb703 0%, #ff8c00 100%);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 140, 0, 0.28);
  z-index: 2;
}

.product-card-badge.accent {
  background: linear-gradient(135deg, #12b886 0%, #0e9f6e 100%);
  box-shadow: 0 8px 18px rgba(18, 184, 134, 0.26);
}

.product-card-top img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

@media (max-width: 760px) {
  .product-card-top img {
    height: 264px;
    object-fit: fill;
    width: 100%;
    display: block;
    transform: none;
  }
}

.product-card-body {
  padding: 1.1rem 1rem 1.2rem;
  text-align: left;
}

.product-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.product-card-copy {
  margin: 0 0 0.9rem;
  color: #4f5e71;
  font-size: 0.82rem;
  line-height: 1.6;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.product-card-price strong {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
}

.product-card-price .old-price {
  color: #7a8ca1;
  text-decoration: line-through;
  font-size: 0.82rem;
}

.product-card-features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card-features li {
  background: rgba(17, 79, 126, 0.07);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-checks {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  justify-items: start;
}

.product-card-checks span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-card-checks i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #1bb76d;
  font-size: 0.9rem;
  line-height: 1;
}

.product-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  margin: 0 0 0.85rem;
  color: #f7b500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #0d5fa3 0%, #0f7ec9 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.brands {
  background: var(--white);
  padding: 4rem 0 5rem;
}

.brands h2 {
  margin: 0 0 2.2rem;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  color: #384a5d;
  font-size: clamp(2rem, 2.2vw, 3rem);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.brand-grid > .brand-item:nth-child(n + 6) {
  display: none;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.brand-grid img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
}

.lidl {
  text-align: center;
  color: #1863a0;
  font-weight: 900;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.1em;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact {
  background: linear-gradient(180deg, #f5f7fb 0%, #edf3fa 100%);
  padding: 4.2rem 0 5rem;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: min(760px, calc(100% - 20px));
  background: rgba(10, 24, 36, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(8, 16, 24, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
}

.cookie-consent-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  color: rgba(255,255,255,0.92);
  min-width: 0;
}

.cookie-consent-copy strong {
  display: inline;
  margin: 0;
  font-size: 0.8rem;
  color: #fff;
  white-space: nowrap;
}

.cookie-consent-copy a {
  color: #a9d8ff;
  font-size: 0.72rem;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-consent-copy p {
  display: none;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #1a87d5 0%, #0a5ca8 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(9, 92, 168, 0.25);
}

.cookie-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(6, 14, 20, 0.64);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 2200;
}

.cookie-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-modal {
  position: relative;
  width: min(560px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,251,0.98));
  border: 1px solid rgba(15, 60, 93, 0.08);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(8, 16, 24, 0.26);
  padding: 1.15rem;
}

.cookie-modal-content {
  color: var(--navy);
}

.cookie-modal-content h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  color: var(--navy);
}

.cookie-modal-content p,
.cookie-modal-content li {
  color: #4a5c6c;
  line-height: 1.7;
  font-size: 0.92rem;
}

.cookie-modal-content ul {
  margin: 0.7rem 0 0.9rem 1.1rem;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1rem;
}

.cookie-modal-close {
  z-index: 2;
}

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 20, 0.68);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 2147483647;
}

.contact-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal {
  position: relative;
  width: min(980px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,251,0.98));
  border: 1px solid rgba(15, 60, 93, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(8, 16, 24, 0.26);
}

.contact-modal-content {
  padding: 1.35rem;
}

.contact-modal .contact-panel {
  margin: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.contact-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(17, 79, 126, 0.12), rgba(17, 79, 126, 0.2));
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  background: linear-gradient(135deg, rgba(17, 79, 126, 0.18), rgba(17, 79, 126, 0.28));
  transform: rotate(90deg);
}

.callback-step {
  padding: 1.5rem 1.2rem 1.2rem;
}

.callback-step-header {
  margin-bottom: 1rem;
}

.callback-step-header .eyebrow {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.callback-step-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.callback-form {
  display: grid;
  gap: 1rem;
}

.callback-field {
  display: grid;
  gap: 0.45rem;
}

.callback-field label {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
}

.callback-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 60, 93, 0.2);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
}

.callback-field input:focus {
  outline: none;
  border-color: rgba(18, 104, 184, 0.75);
  box-shadow: 0 0 0 4px rgba(18, 104, 184, 0.12);
}

.weekend-warning {
  margin: 0;
  color: #b3261e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weekend-warning.is-error {
  color: #d93025;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.time-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 60, 93, 0.14);
  border-radius: 14px;
  background: rgba(248, 251, 255, 0.96);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.time-option:hover {
  border-color: rgba(18, 104, 184, 0.42);
}

.time-option input {
  accent-color: var(--blue);
}

.callback-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.8rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(17, 79, 126, 0.04);
  color: var(--navy);
}

.callback-summary strong {
  color: var(--navy);
}

.callback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.callback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d5fa3 0%, #0f7ec9 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-decoration: none;
  cursor: pointer;
}

.callback-btn.secondary {
  background: rgba(15, 60, 93, 0.08);
  color: var(--navy);
}

body.modal-open {
  overflow: hidden;
}

.contact-wrap {
  max-width: 1120px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,249,253,0.94));
  border: 1px solid rgba(16, 37, 53, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(16, 37, 53, 0.08);
  padding: clamp(1.5rem, 2vw, 2.5rem);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.5rem 0.5rem 0;
  background: linear-gradient(180deg, rgba(17, 79, 126, 0.03), rgba(17, 79, 126, 0.01));
  border-radius: 20px;
}

.available {
  margin: 0 0 0.9rem;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
}

.contact h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.contact-intro {
  margin: 0;
  color: #586777;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-points i {
  color: var(--green);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: end;
  padding: 0.3rem 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form label {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact input,
.contact textarea {
  width: 100%;
  border: 1px solid rgba(17, 79, 126, 0.12);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(10, 22, 32, 0.02);
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #728196;
}

.contact input:hover,
.contact textarea:hover {
  border-color: rgba(17, 79, 126, 0.24);
}

.contact input:focus,
.contact textarea:focus {
  border-color: rgba(26, 110, 168, 0.7);
  box-shadow: 0 0 0 4px rgba(26, 110, 168, 0.08), inset 0 1px 2px rgba(10, 22, 32, 0.02);
  background: var(--white);
  transform: translateY(-1px);
}

.contact textarea {
  resize: vertical;
  min-height: 120px;
}

.contact button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, #2b88d6 100%);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 18px 26px rgba(26, 110, 168, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact button:hover,
.contact button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 30px rgba(26, 110, 168, 0.24);
  filter: brightness(1.02);
}

.contact-logo {
  margin-top: 2rem;
  color: var(--blue-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-wrap > p:last-child {
  display: none;
}

footer {
  background: #090d11;
  color: var(--white);
  padding: 3.8rem 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-columns h3 {
  margin: 0 0 1rem;
  color: #d8b98d;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  line-height: 1.9;
  margin-bottom: 0.2rem;
}

.copyright {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-actions {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-call,
.floating-wa {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 18px 34px rgba(10, 20, 30, 0.18);
}

.floating-call {
  background: linear-gradient(135deg, #0d6fb7, #0b4d7c);
}

.floating-wa {
  background: linear-gradient(135deg, #1dcf62, #18a753);
}

.floating-call i,
.floating-wa i {
  font-size: 1.45rem;
  line-height: 1;
  display: inline-block;
}

.tawk-chat-bubble {
  position: fixed;
  right: 1.9rem;
  bottom: 5.9rem;
  z-index: 2147483646;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border: 1px solid rgba(16, 37, 53, 0.08);
  box-shadow: 0 14px 28px rgba(10, 20, 30, 0.12);
  border-radius: 16px 16px 4px 16px;
  padding: 0.75rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  max-width: 190px;
  pointer-events: none;
}

.tawk-chat-bubble::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(16, 37, 53, 0.08);
  border-bottom: 1px solid rgba(16, 37, 53, 0.08);
  transform: rotate(45deg);
}

.tawk-overlay {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  transform: translateX(-5px);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6fb7, #0b4d7c);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(10, 20, 30, 0.18);
  cursor: pointer;
  z-index: 2147483647;
  pointer-events: none;
}

.tawk-overlay i {
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .service-grid,
  .three-grid,
  .service-box-grid,
  .testimonial-grid,
  .benefit-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    flex-basis: 280px;
  }

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

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

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

  .mobile-menu-trigger {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 0.6rem;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }

  .brand-logo {
    width: 2.35rem;
    height: 2.35rem;
  }

  .testimonial-track-wrap {
    overflow: hidden;
  }

  .testimonial-track {
    width: max-content;
    animation: testimonial-scroll 18s linear infinite;
  }

  .testimonial-track article {
    width: 88vw;
    min-height: 180px;
  }

  .brands .container {
    overflow: hidden;
    padding-inline: 0;
  }

  .brand-grid {
    display: flex;
    width: max-content;
    gap: 1rem;
    padding-inline: 0.75rem;
    animation: brands-scroll 22s linear infinite;
    will-change: transform;
  }

  .brand-grid > .brand-item:nth-child(n + 6) {
    display: flex;
  }

  .brand-item {
    flex: 0 0 auto;
    width: 160px;
    min-height: 72px;
  }

  .brand-grid img {
    width: 100%;
    height: 68px;
  }

  .product-slider {
    overflow: visible;
  }

  .product-track {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
    transform: none !important;
    transition: none;
  }

  .product-card {
    flex: none;
    width: 100%;
  }

  .lidl {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
  .topbar {
    top: 0;
  }

  .topbar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.7rem;
    padding: 0.55rem 0;
    min-height: auto;
    font-size: 0.56rem;
  }

  .topbar-inner span {
    font-size: 0.56rem;
    line-height: 1.4;
  }

  .top-contact-address {
    display: none !important;
  }

  .header {
    top: 42px;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0.9rem 0 1.1rem;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .brand-title-home {
    font-size: 0.88rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
  }

  .main-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-grid {
    min-height: 620px;
    padding: 2.5rem 0 7rem;
  }

  .hero-copy {
    min-height: 260px;
  }

  .hero-copy h1 {
    line-height: 1;
  }

  .hero-actions {
    bottom: 8%;
  }

  .service-grid,
  .three-grid,
  .service-box-grid,
  .testimonial-grid,
  .benefit-grid,
  .product-grid,
  .brand-grid,
  .contact form,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.1rem;
    border-radius: 22px;
  }

  .contact-copy {
    padding: 0.4rem;
  }

  .contact h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .field,
  .field-full {
    grid-column: auto;
  }

  .contact input,
  .contact textarea,
  .contact button {
    border-radius: 14px;
  }

  .contact button {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 0.95rem 1rem;
  }

  .contact-modal {
    width: min(100%, 420px);
    max-height: 88vh;
    border-radius: 22px;
  }

  .contact-modal-content {
    padding: 0.85rem;
  }

  .contact-modal-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.3rem;
    height: 2.3rem;
  }

  .contact form {
    width: 100%;
  }

  .location-copy {
    padding: 3rem 0 2rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 260px;
  }

  .floating-wa {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 1rem;
  }
}


.legal-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 20, 0.68);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 2147483647;
}

.legal-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal {
  width: min(980px, 100%);
  max-height: 90vh;
  overflow-y: auto;
}

.legal-modal-content {
  padding: 1.5rem 1.25rem 2rem;
}

.legal-doc {
  color: var(--navy, #12324a);
  line-height: 1.7;
  font-size: 0.96rem;
}

.legal-doc h1,
.legal-doc h2,
.legal-doc h3,
.legal-doc h4 {
  color: var(--navy, #12324a);
  margin-top: 1.1rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.legal-doc h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-top: 0;
}

.legal-doc h3,
.legal-doc h4 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.legal-doc p,
.legal-doc li {
  margin: 0.45rem 0;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0.7rem 0 0.7rem 1.2rem;
  padding-left: 1rem;
}

.legal-doc a {
  color: var(--blue, #0f4f7e);
  text-decoration: underline;
}

.legal-doc strong {
  font-weight: 700;
}
