/* ModernBrand — plain CSS (no Tailwind) */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/inter-300.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-400.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-500.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-600.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/manrope-400.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/manrope-700.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/manrope-800.ttf") format("truetype");
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/material-symbols-outlined.woff2") format("woff2");
}

:root {
  --color-background: #fbf9f8;
  --color-on-surface: #1b1c1c;
  --color-on-background: #1b1c1c;
  --color-on-surface-variant: #434653;
  --color-primary: #003b93;
  --color-primary-container: #0051c3;
  --color-on-primary: #ffffff;
  --color-surface: #fbf9f8;
  --color-surface-bright: #fbf9f8;
  --color-surface-container-low: #f6f3f2;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-highest: #e4e2e1;
  --color-outline-variant: #c3c6d6;
  --color-primary-fixed: #dae2ff;
  --color-on-primary-fixed: #001947;
  --color-primary-fixed-dim: #b1c5ff;
  --color-header-bg: #fbf9f8;
  --color-header-text: #1b1c1c;
  --color-nav-muted: rgba(27, 28, 28, 0.7);
  --shadow-header: 0 12px 32px rgba(0, 59, 147, 0.06);
  --font-headline: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-label: "Inter", system-ui, sans-serif;
  --container-max: 80rem;
  --radius-lg: 0.25rem;
}

html.dark {
  --color-header-bg: #1b1c1c;
  --color-header-text: #fbf9f8;
  --color-nav-muted: rgba(251, 249, 248, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-on-surface);
  font-family: var(--font-body);
  line-height: 1.5;
}

body.page::selection {
  background-color: var(--color-primary-fixed);
  color: var(--color-on-primary-fixed);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ——— Header ——— */
.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  background-color: var(--color-header-bg);
  box-shadow: var(--shadow-header);
}

html.dark .site-header {
  background-color: #1b1c1c;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--color-header-text);
  text-decoration: none;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__link {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-nav-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav__link:hover {
  color: #003b93;
}

html.dark .site-logo {
  color: #fbf9f8;
}

html.dark .site-nav__link {
  color: rgba(251, 249, 248, 0.7);
}

html.dark .site-nav__link:hover {
  color: #003b93;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-on-background);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(27, 28, 28, 0.75),
    rgba(27, 28, 28, 0.55),
    rgba(0, 59, 147, 0.4)
  );
}

.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero__inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.hero__col {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .hero__col {
    grid-column: span 8;
  }
}

.hero__title {
  margin: 0 0 2rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 3.75rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--color-surface-bright);
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 6rem;
  }
}

.hero__slogan {
  margin: 0 0 3rem;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.625;
  color: rgba(251, 249, 248, 0.95);
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.hero__actions {
  display: flex;
  gap: 1rem;
}

.btn-hero {
  padding: 1rem 2rem;
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-on-primary);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #003b93 0%, #0051c3 100%);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: transform 0.15s ease;
}

.btn-hero:hover {
  transform: scale(1.05);
}

/* ——— Benefits ——— */
.section-benefits {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--color-surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit__icon-wrap {
  margin-bottom: 2rem;
  overflow: hidden;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.benefit__icon {
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: var(--color-primary);
}

.benefit__title {
  margin: 0 0 1rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.025em;
  color: var(--color-on-surface);
}

.benefit__text {
  margin: 0;
  color: var(--color-on-surface-variant);
  line-height: 1.625;
  opacity: 0.8;
}

/* ——— Catalog sections ——— */
.catalog-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--color-surface-container-low);
}

.catalog-section--alt {
  background-color: var(--color-surface);
}

.catalog-head {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(195, 198, 214, 0.3);
}

.section-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.category-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -0.05em;
  color: var(--color-on-surface);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 3rem;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__figure {
  position: relative;
  margin-bottom: 1.5rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #fff;
}

.catalog-section--alt .product-card__figure {
  background-color: #fff;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.1);
}

.product-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--color-on-surface);
}

.product-card__actions {
  margin-top: auto;
}

.btn-check-price {
  width: 100%;
  padding: 0.75rem;
  background-color: #1b1c1c;
  color: #fbf9f8;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-check-price:hover {
  background-color: #003b93;
  color: #ffffff;
}

.catalog-actions {
  margin-top: 6rem;
  text-align: center;
}

.btn-outline-lg {
  padding: 1.25rem 3rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-on-background);
  background: transparent;
  border: 2px solid var(--color-on-background);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-lg:hover {
  background-color: var(--color-on-background);
  color: var(--color-surface);
}

/* ——— Global products CTA strip ——— */
.section-products-global {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--color-surface-container-highest);
  border-top: 1px solid rgba(195, 198, 214, 0.2);
  border-bottom: 1px solid rgba(195, 198, 214, 0.2);
}

.section-products-global .container {
  text-align: center;
}

/* ——— About ——— */
.section-about {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--color-surface-container-highest);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }

  .about-grid__media {
    grid-column: span 6;
  }

  .about-grid__text {
    grid-column: span 6;
  }
}

.about-grid__media {
  position: relative;
}

.about-grid__figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-surface);
}

.about-grid__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.about-grid__accent {
  display: none;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  background-color: rgba(0, 59, 147, 0.1);
  backdrop-filter: blur(64px);
}

@media (min-width: 768px) {
  .about-grid__accent {
    display: block;
  }
}

.about-title {
  margin: 0 0 2rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-on-surface);
}

.about-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-on-surface-variant);
}

/* ——— Reviews ——— */
.section-reviews {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--color-surface);
}

.reviews-head {
  margin-bottom: 6rem;
  text-align: center;
}

.reviews-title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -0.05em;
  color: var(--color-on-surface);
}

.reviews-rule {
  width: 5rem;
  height: 0.25rem;
  margin: 1.5rem auto 0;
  background-color: var(--color-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  position: relative;
  padding: 2.5rem;
  background-color: var(--color-surface-container-low);
}

.testimonial__quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.75rem;
  line-height: 1;
  color: var(--color-primary-fixed-dim);
  opacity: 0.2;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

.testimonial__name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-on-surface);
}

.testimonial__text {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-on-surface-variant);
  line-height: 1.625;
}

/* ——— Footer ——— */
.site-footer {
  width: 100%;
  margin-top: 5rem;
  background-color: #f6f3f2;
}

html.dark .site-footer {
  background-color: #121212;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  margin: 0 0 1.5rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1rem;
  color: #1b1c1c;
}

html.dark .footer-brand {
  color: #fbf9f8;
}

.footer-col-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #003b93;
}

html.dark .footer-col-title {
  color: #0051c3;
}

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

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

.footer-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--color-on-surface);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
  opacity: 1;
  color: #003b93;
}

.footer-contact {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1rem;
  opacity: 0.6;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  opacity: 1;
  color: #003b93;
}

.footer-disclaimer-wrap {
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(195, 198, 214, 0.1);
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-disclaimers {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(195, 198, 214, 0.4);
  background-color: rgba(246, 243, 242, 0.8);
}

html.dark .footer-disclaimers {
  background-color: rgba(27, 28, 28, 0.4);
}

.footer-disclaimers p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--color-on-surface-variant);
  text-align: center;
  font-weight: 500;
}

.footer-disclaimers p + p {
  margin-top: 1rem;
}
