/* =============================================
   Virgen de Chapi — Agua Ozonizada
   Paleta extraída del logo:
   Navy #0c2d5e | Sky #4da3d9 | Gold #c9a84c
   ============================================= */

:root {
  --color-navy: #0c2d5e;
  --color-navy-dark: #071a38;
  --color-navy-light: #164a8a;
  --color-sky: #4da3d9;
  --color-sky-light: #7ec4ef;
  --color-sky-pale: #e8f4fc;
  --color-gold: #c9a84c;
  --color-gold-light: #dfc06a;
  --color-white: #ffffff;
  --color-off-white: #f7f9fc;
  --color-gray-100: #eef2f7;
  --color-gray-200: #d8e0ea;
  --color-gray-500: #6b7c93;
  --color-gray-700: #3d4f66;
  --color-text: #1a2b3c;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1da851;

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(12, 45, 94, 0.06);
  --shadow-md: 0 8px 30px rgba(12, 45, 94, 0.1);
  --shadow-lg: 0 20px 60px rgba(12, 45, 94, 0.14);
  --shadow-gold: 0 8px 24px rgba(201, 168, 76, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --header-height: 80px;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { color: var(--color-gray-700); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-sky));
  border-radius: 2px;
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.0625rem;
}

/* Layout */
.container {
  width: min(var(--container-max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding);
}

.section--alt {
  background: var(--color-off-white);
}

.section--dark {
  background: linear-gradient(160deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
}

.btn--sm {
  padding: 0.6875rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header:not(.scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.header:not(.scrolled) .nav__link:hover,
.header:not(.scrolled) .nav__link.active {
  color: var(--color-white);
}

.header:not(.scrolled) .nav-toggle span {
  background: var(--color-white);
}

.header.scrolled .nav__link {
  color: var(--color-gray-700);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
  color: var(--color-navy);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-700);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 26, 56, 0.88) 0%,
    rgba(12, 45, 94, 0.72) 45%,
    rgba(12, 45, 94, 0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  padding-bottom: 4rem;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-sky-light), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.375rem;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--color-sky-pale) 0%, var(--color-white) 100%);
  padding: 2rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image-wrap::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(77, 163, 217, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.product-card__image {
  position: relative;
  z-index: 1;
  max-height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  min-height: 2.9em;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.product-card__price small {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about__accent-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-navy-dark);
  line-height: 1;
}

.about__accent-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  text-align: center;
  margin-top: 0.25rem;
}

.about__content .section-label {
  margin-bottom: 0.75rem;
}

.about__content h2 {
  margin-bottom: 1.5rem;
}

.about__content p + p {
  margin-top: 1rem;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about__value {
  padding: 1rem 1.25rem;
  background: var(--color-sky-pale);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
}

.about__value h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.about__value p {
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-sky-light) 100%);
  border-radius: var(--radius-md);
  color: var(--color-white);
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.625rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Quick Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sky-pale);
  border-radius: 50%;
  color: var(--color-navy);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--color-sky);
}

/* Page Hero (inner pages) */
.page-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(160deg, var(--color-navy-dark) 0%, var(--color-navy) 60%, var(--color-navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 163, 217, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--color-gold-light);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

/* Contact Page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-card--full {
  grid-column: 1 / -1;
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
  margin-bottom: 0.375rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.5;
}

.contact-info-card a:hover {
  color: var(--color-sky);
}

.contact-whatsapp-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-whatsapp-banner h2 {
  color: var(--color-white);
  font-size: 1.75rem;
}

.contact-whatsapp-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  margin-top: 2rem;
  aspect-ratio: 21/9;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
  height: 64px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer__links li + li {
  margin-top: 0.625rem;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-sky-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.floating-wa svg {
  width: 30px;
  height: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .header__actions .btn--sm {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about__accent {
    bottom: -16px;
    right: 16px;
    width: 110px;
    height: 110px;
  }

  .about__values {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .map-wrap {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 -8px 32px rgba(7, 26, 56, 0.25);
  padding: 1.25rem 0;
  transform: translateY(0);
  transition: transform var(--transition), opacity var(--transition);
}

.cookie-bar.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-bar__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}

.cookie-bar__btn {
  flex-shrink: 0;
  min-width: 140px;
}

body.cookie-bar-visible .floating-wa {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .cookie-bar__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-bar__btn {
    width: 100%;
    max-width: 280px;
  }

  body.cookie-bar-visible .floating-wa {
    bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Policy page */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
}

.policy-block h2 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-sky-pale);
}

.policy-block p {
  margin-bottom: 0.875rem;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  color: var(--color-gray-700);
  line-height: 1.65;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.policy-note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-sky-pale);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-sky);
}

.policy-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}

.policy-cta h3 {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.policy-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .policy-block {
    padding: 1.5rem;
  }

  .policy-cta {
    padding: 2rem 1.5rem;
  }
}
