:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --surface: #ffffff;
  --surface-alt: #fff7e3;
  --text: #12213f;
  --muted: #5e6b85;
  --navy: #071a4c;
  --navy-soft: #0d2768;
  --navy-deep: #041235;
  --gold: #ffca28;
  --gold-strong: #f3b300;
  --orange: #ff7a00;
  --orange-strong: #ef6200;
  --black: #0b1430;
  --white: #ffffff;
  --border: rgba(7, 26, 76, 0.1);
  --border-strong: rgba(7, 26, 76, 0.18);
  --shadow: 0 20px 50px rgba(7, 26, 76, 0.08);
  --shadow-soft: 0 12px 28px rgba(7, 26, 76, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 202, 40, 0.14), transparent 20%),
    radial-gradient(circle at top right, rgba(7, 26, 76, 0.05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 42%, #f7f9fd 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.promo-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.contact-strip {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: rgba(255, 255, 255, 0.86);
}

.contact-strip__content,
.contact-strip__items,
.social-links,
.topbar__content,
.brand,
.nav,
.hero__actions,
.cta__content,
.floating-whatsapp {
  display: flex;
  align-items: center;
}

.contact-strip__content {
  justify-content: space-between;
  gap: 1rem;
  min-height: 46px;
}

.contact-strip__items {
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.96rem;
}

.contact-strip__items a {
  transition: color 0.2s ease;
}

.contact-strip__items a:hover,
.contact-strip__items a:focus-visible {
  color: var(--gold);
}

.social-links {
  gap: 0.55rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 202, 40, 0.7);
  color: var(--gold);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 26, 76, 0.08);
  box-shadow: 0 8px 28px rgba(7, 26, 76, 0.05);
}

.topbar__content {
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  gap: 0.9rem;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(100%, 300px);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(7, 26, 76, 0.12));
}

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

.section-heading h2,
.hero h1,
.cta h2,
.footer h3,
.highlight-card h3,
.region-card h3,
.brand-card strong {
  font-family: "Sora", sans-serif;
}

.nav {
  gap: 1.3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-shell {
  display: contents;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
}

.nav-toggle,
.nav-mobile-cta {
  display: none;
}

.nav-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(7, 26, 76, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.96));
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(7, 26, 76, 0.08);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 0, 0.28);
  box-shadow: 0 16px 28px rgba(7, 26, 76, 0.14);
}

.nav-toggle__line {
  position: absolute;
  left: 14px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.2s ease, top 0.24s ease;
}

.nav-toggle__line:nth-child(1) {
  top: 17px;
}

.nav-toggle__line:nth-child(2) {
  top: 24px;
}

.nav-toggle__line:nth-child(3) {
  top: 31px;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-toggle__line:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

body.menu-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle__line:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--navy-deep);
  box-shadow: 0 18px 30px rgba(255, 122, 0, 0.24);
}

.button--secondary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.button--call {
  background: linear-gradient(135deg, #0c2a72 0%, #1547aa 100%);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(12, 42, 114, 0.24);
}

.button--call:hover,
.button--call:focus-visible {
  box-shadow: 0 22px 34px rgba(12, 42, 114, 0.32);
}

.button__icon {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button--ghost {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 122, 0, 0.35);
  color: var(--navy);
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.promo-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 53, 0.58);
  backdrop-filter: blur(8px);
}

.promo-popup__dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 227, 0.98)),
    var(--surface);
  border: 1px solid rgba(255, 202, 40, 0.24);
  box-shadow: 0 34px 80px rgba(4, 18, 53, 0.28);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.32s ease;
}

.promo-popup.is-visible .promo-popup__dialog {
  transform: translateY(0) scale(1);
}

.promo-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 26, 76, 0.06);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.promo-popup__close:hover,
.promo-popup__close:focus-visible {
  background: rgba(255, 122, 0, 0.12);
  transform: scale(1.04);
}

.promo-popup__eyebrow,
.location-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 202, 40, 0.16);
  color: var(--orange-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.promo-popup__dialog h2,
.location-card__content h3 {
  margin: 1rem 0 0.75rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.promo-popup__dialog h2 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  line-height: 1.05;
}

.promo-popup__dialog p,
.location-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.promo-popup__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 3rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 202, 40, 0.16), transparent 18%),
    radial-gradient(circle at 82% 30%, rgba(255, 122, 0, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 253, 0.92));
  pointer-events: none;
}

.hero__content,
.about,
.footer__grid {
  display: grid;
  gap: 2rem;
}

.hero__content {
  position: relative;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.hero__copy {
  display: flex;
  justify-content: center;
}

.hero__copy > div {
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--orange-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero p,
.section-heading p,
.product-card p,
.highlight-card p,
.region-card p,
.about p,
.footer p,
.footer li,
.hero-card__items p {
  color: var(--muted);
}

.hero p {
  max-width: 64ch;
  margin: 1rem 0 0;
  font-size: 1.08rem;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.2rem;
  justify-content: center;
}

.hero__panel {
  display: flex;
  justify-content: center;
}

.hero-card,
.highlight-card,
.product-card,
.region-card,
.brand-card,
.testimonial-card,
.about-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 250, 243, 0.94));
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(100%, 490px);
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(10, 31, 87, 0.98), rgba(6, 20, 60, 1));
  border: 1px solid rgba(255, 202, 40, 0.18);
  color: var(--white);
  box-shadow: 0 28px 56px rgba(4, 18, 53, 0.3);
}

.hero-banner {
  width: 100%;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 54px rgba(7, 26, 76, 0.14);
  border: 1px solid rgba(7, 26, 76, 0.08);
}

.hero-banner__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-card__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-card__top strong {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.hero-card__pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 202, 40, 0.18);
  color: #ffe28a;
  font-weight: 700;
}

.hero-card__items {
  display: grid;
  gap: 1rem;
}

.hero-card__items article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card__items p {
  color: rgba(255, 255, 255, 0.76);
}

.icon-box,
.product-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 202, 40, 0.24), rgba(255, 122, 0, 0.16));
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-card .icon-box {
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 202, 40, 0.25), rgba(255, 122, 0, 0.18));
}

.icon-box svg,
.product-card__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlights {
  padding: 0 0 2rem;
}

.highlights__grid,
.product-grid,
.regions-grid,
.brands-grid,
.testimonials-grid {
  display: grid;
  gap: 1.35rem;
}

.highlights__grid {
  grid-template-columns: repeat(4, 1fr);
}

.highlight-card,
.product-card,
.region-card,
.brand-card,
.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 1.55rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.highlight-card:hover,
.product-card:hover,
.region-card:hover,
.brand-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(7, 26, 76, 0.12);
  border-color: rgba(255, 122, 0, 0.28);
}

.highlight-card h3,
.product-card h3,
.region-card h3,
.about-card strong,
.footer h4 {
  margin: 1rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.section {
  padding: 5.8rem 0;
}

.section--products,
.section--about,
.section--regions,
.section--testimonials,
.section--location {
  background: linear-gradient(180deg, rgba(255, 248, 220, 0.22), transparent);
}

.location-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 250, 243, 0.94));
  box-shadow: var(--shadow);
}

.location-card__map {
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(7, 26, 76, 0.08);
  box-shadow: 0 18px 40px rgba(7, 26, 76, 0.1);
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.location-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

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

.section-heading h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--orange-strong);
  font-weight: 700;
}

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

.region-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.region-card .button {
  margin-top: auto;
}

.region-card--featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  border: none;
}

.region-card--featured p {
  color: rgba(255, 255, 255, 0.76);
}

.brands-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 176px;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, #ffffff, #fffdfb),
    linear-gradient(90deg, rgba(255, 202, 40, 0.04), rgba(255, 122, 0, 0.03));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 76, 0.08);
  box-shadow: 0 16px 36px rgba(7, 26, 76, 0.08);
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(7, 26, 76, 0.14);
  border-color: rgba(255, 122, 0, 0.22);
}

.brand-card__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 190px;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}

.brand-card:nth-child(1) .brand-card__logo {
  max-width: 172px;
}

.brand-card:nth-child(2) .brand-card__logo,
.brand-card:nth-child(3) .brand-card__logo,
.brand-card:nth-child(4) .brand-card__logo,
.brand-card:nth-child(5) .brand-card__logo {
  max-width: 200px;
}

.zetta-logo {
  max-width: 244px;
  max-height: 110px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, #ffffff, #fffdf7);
}

.testimonial-card__top {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testimonial-card__top strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.testimonial-card__top span {
  color: var(--muted);
  font-size: 0.96rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.stars {
  display: flex;
  gap: 0.22rem;
  color: var(--gold-strong);
  font-size: 1.15rem;
  line-height: 1;
}

.testimonials__action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.reviews-overview {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.3rem;
  margin-bottom: 1.6rem;
}

.reviews-summary-card,
.reviews-overview__content,
.reviews-carousel__control {
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.reviews-summary-card,
.reviews-overview__content {
  border-radius: 24px;
  padding: 1.5rem;
}

.reviews-summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: center;
}

.reviews-summary-card__label,
.reviews-summary-card__count,
.review-card__identity span,
.review-card__date,
.reviews-status,
.reviews-overview__text {
  color: var(--muted);
}

.reviews-summary-card__label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-summary-card__score {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stars--summary {
  font-size: 1.35rem;
}

.reviews-overview__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviews-overview__text {
  margin: 0;
  max-width: 56ch;
  font-size: 1.02rem;
}

.reviews-overview__actions {
  flex-shrink: 0;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.reviews-carousel--single {
  grid-template-columns: 1fr;
}

.reviews-carousel__control {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.9rem;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.reviews-carousel__control:hover,
.reviews-carousel__control:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.24);
  box-shadow: 0 20px 36px rgba(7, 26, 76, 0.12);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-carousel--single .reviews-track {
  grid-auto-flow: row;
  grid-auto-columns: min(100%, 720px);
  justify-content: center;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.review-card--placeholder {
  background: linear-gradient(180deg, #ffffff, #fffdf7);
}

.review-card__header,
.review-card__meta {
  display: flex;
  align-items: center;
}

.review-card__header {
  gap: 0.9rem;
}

.review-card__meta {
  justify-content: space-between;
  gap: 1rem;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 202, 40, 0.3), rgba(255, 122, 0, 0.2));
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__avatar--placeholder {
  background: linear-gradient(135deg, rgba(7, 26, 76, 0.08), rgba(7, 26, 76, 0.04));
}

.review-card__identity strong,
.review-card__date,
.review-card__text {
  margin: 0;
}

.review-card__identity strong {
  display: block;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.review-card__identity span,
.review-card__date {
  font-size: 0.92rem;
}

.review-card .stars {
  font-size: 1rem;
}

.review-card__text {
  color: var(--text);
  font-size: 1rem;
}

.review-card__link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  color: var(--orange-strong);
  font-weight: 700;
}

.reviews-status {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}

.about {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.about__content p {
  font-size: 1.05rem;
  max-width: 58ch;
}

.about__panel {
  display: grid;
  gap: 1rem;
}

.about-card {
  padding: 1.65rem;
  border-radius: var(--radius-xl);
}

.about-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-card--accent {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border: none;
  color: var(--white);
  box-shadow: 0 28px 60px rgba(7, 26, 76, 0.22);
}

.about-card--accent span {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.cta {
  padding: 0 0 6rem;
}

.cta__content {
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(7, 26, 76, 0.96), rgba(13, 39, 104, 0.96)),
    linear-gradient(135deg, rgba(255, 202, 40, 0.18), rgba(255, 122, 0, 0.12));
  border: 1px solid var(--border);
  box-shadow: 0 24px 54px rgba(7, 26, 76, 0.2);
  color: var(--white);
}

.cta h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cta p,
.cta .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.cta .eyebrow::before {
  background: rgba(255, 202, 40, 0.9);
}

.footer {
  padding: 2.8rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

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

.footer li + li {
  margin-top: 0.45rem;
}

.footer li {
  line-height: 1.6;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold);
}

.footer__info-block {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer__info-block h4 {
  margin-top: 0;
}

.floating-phone,
.floating-whatsapp {
  position: fixed;
  bottom: 1rem;
  z-index: 60;
  gap: 0.7rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-phone {
  right: 5.8rem;
  width: 48px;
  height: 48px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c2a72 0%, #1547aa 100%);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(12, 42, 114, 0.26);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 42px rgba(37, 211, 102, 0.4);
}

.floating-phone:hover,
.floating-phone:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 34px rgba(12, 42, 114, 0.34);
}

.floating-whatsapp {
  right: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.34);
}

.floating-phone__icon,
.floating-whatsapp__icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.floating-phone__icon {
  width: 100%;
  height: 100%;
  background: transparent;
}

.floating-whatsapp__icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.floating-phone svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .hero__content,
  .about,
  .footer__grid,
  .highlights__grid,
  .product-grid,
  .regions-grid,
  .brands-grid,
  .testimonials-grid,
  .reviews-overview,
  .location-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .topbar__content {
    flex-wrap: wrap;
    padding: 0.9rem 0;
  }

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

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

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

  .hero {
    padding-top: 3.4rem;
  }

  .hero__bg {
    background:
      radial-gradient(circle at 14% 12%, rgba(255, 202, 40, 0.18), transparent 18%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 253, 0.95) 100%);
  }

  .hero__content,
  .about,
  .footer__grid,
  .highlights__grid,
  .product-grid,
  .regions-grid,
  .testimonials-grid,
  .reviews-overview,
  .location-card {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 100%;
  }

  .hero-card {
    width: 100%;
  }

  .hero-banner {
    border-radius: 24px;
  }

  .section {
    padding: 4.8rem 0;
  }

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

  .contact-strip__content {
    flex-direction: column;
    justify-content: center;
    padding: 0.65rem 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .topbar__content {
    min-height: 72px;
  }

  .brand {
    width: 100%;
  }

  .brand__logo {
    height: 48px;
    max-width: 230px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

  .hero-banner {
    border-radius: 18px;
  }

  .hero p,
  .section-heading p,
  .about__content p,
  .product-card p,
  .highlight-card p,
  .region-card p {
    font-size: 1rem;
  }

  .button,
  .floating-whatsapp,
  .region-card .button {
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .floating-phone {
    right: 5rem;
    left: auto;
    width: 48px;
  }

  .floating-whatsapp {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .hero-card,
  .highlight-card,
  .product-card,
  .region-card,
  .brand-card,
  .testimonial-card,
  .about-card,
  .cta__content {
    padding: 1.3rem;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  .brand-card {
    min-height: 132px;
    padding: 1.2rem;
  }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .brand-card__logo {
    max-width: 160px;
    max-height: 72px;
  }

  .zetta-logo {
    max-width: 214px;
    max-height: 92px;
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  body {
    line-height: 1.45;
  }

  .header {
    position: sticky;
  }

  .contact-strip__content {
    gap: 0.55rem;
    padding: 0.55rem 0;
  }

  .contact-strip__items {
    width: 100%;
    justify-content: center;
    gap: 0.45rem 0.9rem;
    font-size: 0.84rem;
    line-height: 1.35;
    text-align: center;
  }

  .social-links {
    display: none;
  }

  .topbar__content {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.9rem;
    min-height: auto;
    padding: 0.85rem 0 1rem;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .brand__logo {
    height: 46px;
    max-width: min(100%, 220px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(7, 26, 76, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(7, 26, 76, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  body.menu-open .nav-shell {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(7, 26, 76, 0.04);
    color: var(--navy);
    font-size: 0.98rem;
    line-height: 1.15;
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(7, 26, 76, 0.05);
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--navy);
    background: rgba(255, 122, 0, 0.08);
  }

  .nav-mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .nav-mobile-cta .button {
    min-height: 46px;
    width: 100%;
  }

  .hero {
    padding: 2.2rem 0 1.8rem;
  }

  .hero__content {
    gap: 1.15rem;
  }

  .hero__copy {
    display: flex;
    justify-content: center;
  }

  .hero__copy,
  .hero__panel,
  .hero__actions {
    width: 100%;
  }

  .hero__copy > div {
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    justify-content: center;
    text-align: center;
  }

  .hero__panel {
    justify-content: stretch;
  }

  .hero-banner {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(7, 26, 76, 0.12);
  }

  .hero-banner__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero__actions {
    gap: 0.75rem;
    margin-top: 0;
  }

  .hero__actions .button {
    min-height: 50px;
    padding: 0 1.1rem;
  }

  .highlights__grid {
    margin-top: 0.2rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .section-heading {
    margin-bottom: 1.8rem;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .highlights {
    padding-bottom: 1.2rem;
  }

  .highlights__grid,
  .product-grid,
  .regions-grid,
  .brands-grid,
  .testimonials-grid,
  .reviews-overview,
  .footer__grid,
  .about,
  .location-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlight-card,
  .product-card,
  .region-card,
  .brand-card,
  .testimonial-card,
  .about-card,
  .cta__content,
  .location-card {
    padding: 1.2rem;
  }

  .reviews-summary-card,
  .reviews-overview__content,
  .review-card {
    padding: 1.2rem;
  }

  .location-card__map,
  .location-card__map iframe {
    min-height: 300px;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .reviews-carousel__control {
    display: none;
  }

  .reviews-track {
    grid-auto-columns: min(88%, 360px);
  }

  .reviews-overview__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-card,
  .product-card,
  .region-card,
  .testimonial-card,
  .about-card {
    box-shadow: 0 14px 28px rgba(7, 26, 76, 0.08);
  }

  .highlight-card h3,
  .product-card h3,
  .region-card h3,
  .about-card strong {
    margin-top: 0.85rem;
    font-size: 1.08rem;
  }

  .region-card .button,
  .cta__content .button,
  .testimonials__action .button {
    width: 100%;
  }

  .section-heading,
  .about__content,
  .cta__content > div {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .about__content,
  .footer__brand,
  .cta__content {
    text-align: center;
  }

  .reviews-summary-card,
  .reviews-overview__content,
  .reviews-status {
    text-align: center;
  }

  .reviews-overview__content {
    align-items: center;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__info-block {
    text-align: center;
  }

  .cta {
    padding-bottom: 4.5rem;
  }

  .floating-phone {
    right: 4.9rem;
    left: auto;
    bottom: 0.9rem;
    width: 46px;
    height: 46px;
    min-height: 46px;
  }

  .floating-whatsapp {
    right: 0.9rem;
    left: auto;
    bottom: 0.9rem;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
  }

  .floating-whatsapp span:last-child {
    display: none;
  }

  .floating-whatsapp__icon {
    width: 100%;
    height: 100%;
    background: transparent;
  }

  .floating-phone svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .contact-strip__content {
    padding: 0.45rem 0;
  }

  .contact-strip__items {
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.78rem;
  }

  .topbar__content {
    gap: 0.8rem;
    padding: 0.75rem 0 0.9rem;
  }

  .brand__logo {
    height: 40px;
    max-width: 190px;
  }

  .nav-shell {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .nav a {
    min-height: 44px;
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }

  .nav-mobile-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.7rem 0 1.35rem;
  }

  .hero__content {
    gap: 0.95rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero-banner {
    border-radius: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .button,
  .region-card .button {
    width: 100%;
    min-height: 48px;
  }

  .promo-popup__dialog {
    padding: 1.4rem 1rem 1rem;
    border-radius: 22px;
  }

  .promo-popup__actions {
    flex-direction: column;
  }

  .promo-popup__actions .button {
    width: 100%;
    min-height: 48px;
  }

  .cta__content {
    gap: 1rem;
  }

  .reviews-track {
    grid-auto-columns: 100%;
  }

  .section {
    padding: 3.1rem 0;
  }

  .section-heading {
    margin-bottom: 1.4rem;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .hero p,
  .section-heading p,
  .about__content p,
  .product-card p,
  .highlight-card p,
  .region-card p,
  .testimonial-card p {
    font-size: 0.95rem;
  }

  .highlight-card,
  .product-card,
  .region-card,
  .brand-card,
  .testimonial-card,
  .about-card,
  .cta__content {
    padding: 1rem;
    border-radius: 18px;
  }

  .icon-box,
  .product-card__icon {
    width: 50px;
    height: 50px;
  }

  .icon-box svg,
  .product-card__icon svg {
    width: 26px;
    height: 26px;
  }

  .brand-card {
    min-height: 118px;
  }

  .brand-card__logo {
    max-width: 150px;
    max-height: 64px;
  }

  .zetta-logo {
    max-width: 192px;
    max-height: 82px;
    transform: scale(1.03);
  }

  .location-card__map,
  .location-card__map iframe {
    min-height: 250px;
  }

  .floating-phone {
    right: 4.35rem;
    bottom: 0.7rem;
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .floating-whatsapp {
    right: 0.7rem;
    bottom: 0.7rem;
    width: 52px;
    height: 52px;
    min-height: 52px;
  }

  .floating-whatsapp svg {
    width: 18px;
    height: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
