/* =============================================================
   Cabiclean — Official Website | thecabiclean.com
   Style System: 8px grid, 60-30-10 color, Golden Ratio layout
   ============================================================= */

:root {
  /* Brand Colors */
  --brand-blue:       #1B4FD8;
  --brand-blue-dark:  #1339A8;
  --brand-blue-light: #EFF6FF;
  --brand-blue-mid:   #DBEAFE;
  --brand-green:      #16A34A;
  --brand-green-dark: #15803D;

  /* Neutrals */
  --color-white:         #FFFFFF;
  --color-bg:            #F8FAFF;
  --color-text:          #111827;
  --color-text-sec:      #374151;
  --color-text-muted:    #6B7280;
  --color-border:        #E5E7EB;
  --color-footer-bg:     #0F172A;
  --color-footer-text:   rgba(255,255,255,0.70);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* 8px spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  16px;
  --sp-4:  24px;
  --sp-5:  32px;
  --sp-6:  48px;
  --sp-7:  64px;
  --sp-8:  96px;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 5vw, 4rem);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.10), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-blue: 0 8px 24px rgba(27,79,216,.20);

  /* Transitions */
  --t: .22s ease;
  --t-slow: .40s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- SECTION ---- */
.section        { padding: var(--sp-8) 0; }
.section--alt   { background: var(--color-bg); }
.section--dark  { background: #0F172A; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: var(--sp-6); }
.section-header .section-desc { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px var(--sp-5);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  min-height: 44px;
  min-width: 44px;
  white-space: nowrap;
  font-family: var(--font);
}

.btn--primary {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}
.btn--primary:hover {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}

.btn--blue {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}
.btn--blue:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.btn--outline:hover {
  background: var(--brand-blue);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--brand-blue);
  border-color: #fff;
}
.btn--white:hover { background: var(--brand-blue-light); }

.btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--white-outline:hover { background: rgba(255,255,255,.1); }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--brand-blue);
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav__link {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text-sec);
  transition: color var(--t);
  padding: var(--sp-2) 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-blue);
  transition: width var(--t);
  border-radius: 2px;
}

.nav__link:hover,
.nav__link--active { color: var(--brand-blue); }

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: var(--sp-3); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--t);
}

.nav__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--container-pad);
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile .nav__link { font-size: 1.0625rem; }

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #0F172A 0%, #1B4FD8 60%, #1339A8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-8) var(--container-pad);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-7);
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.hero__title span {
  background: linear-gradient(90deg, #93C5FD, #C4B5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrap {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__placeholder {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  text-align: center;
  padding: var(--sp-5);
}

.hero__float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-lg);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.hero__float--1 { bottom: 5%; left: -8%; }
.hero__float--2 { top: 12%; right: -5%; }

.hero__float-icon { font-size: 1.25rem; }

/* ---- MARQUEE ---- */
.marquee {
  background: var(--brand-blue);
  padding: 14px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: var(--sp-5);
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__item::after { content: '✦'; opacity: .5; }

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

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-4) 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-text-sec);
}
.trust-item__icon { font-size: 1.25rem; }

/* ---- FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}

.feature-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: all var(--t-slow);
}

.feature-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--brand-blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  margin-bottom: var(--sp-4);
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: var(--sp-2);
}

.feature-card__desc {
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- PRODUCT CARD ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--sp-4);
}

.product-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
  container-type: inline-size;
}

.product-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card__img-wrap {
  aspect-ratio: 1;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  overflow: hidden;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
}

.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: 100%;
  width: 100%;
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--sp-3);
}
.img-placeholder span { font-size: 2.5rem; }
.img-placeholder small { font-size: .7rem; line-height: 1.4; }

.product-card__body {
  padding: var(--sp-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: var(--sp-2);
}

.product-card__name {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--sp-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__desc {
  font-size: .8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-3);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: var(--sp-3);
}

.product-card__tag {
  font-size: .625rem;
  font-weight: 700;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.btn--check-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  background: var(--brand-green);
  color: #fff;
  padding: 12px var(--sp-4);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 700;
  border: 2px solid var(--brand-green);
  transition: all var(--t);
  min-height: 44px;
}

.btn--check-price:hover {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}

/* Product detailed card (products page) */
.product-card--detailed .product-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-3);
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: .8125rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.product-feature::before {
  content: '✓';
  color: var(--brand-green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- STATS ---- */
.stats {
  background: var(--brand-blue);
  padding: var(--sp-7) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-5);
}

.stat-item { text-align: center; color: #fff; }

.stat-item__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-item__label {
  font-size: 1rem;
  opacity: .82;
  font-weight: 500;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, #0F172A 0%, var(--brand-blue) 100%);
  padding: var(--sp-8) 0;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.cta-section__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto var(--sp-5);
  line-height: 1.75;
}

.cta-section__actions {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- REVIEWS (judge.me style) ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

/* Asymmetric spans */
.review-card:nth-child(2) { grid-row: span 2; }
.review-card:nth-child(7) { grid-column: span 2; }

.review-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.review-card__meta { flex: 1; }

.review-card__name {
  font-size: .9375rem;
  font-weight: 800;
  color: var(--color-text);
}

.review-card__location {
  font-size: .8125rem;
  color: var(--color-text-muted);
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--brand-green);
  background: #F0FDF4;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.review-card__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}

.review-card__body {
  font-size: .875rem;
  color: var(--color-text-sec);
  line-height: 1.72;
  flex: 1;
}

.review-card__product {
  margin-top: var(--sp-3);
  font-size: .75rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-3);
}

.review-card__product b { color: var(--brand-blue); font-weight: 700; }

/* ---- FOOTER ---- */
.footer {
  background: var(--color-footer-bg);
  padding: var(--sp-8) 0 var(--sp-5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 1.375rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--sp-3);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
}

.footer__desc {
  color: var(--color-footer-text);
  font-size: .875rem;
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  max-width: 320px;
}

.footer__col-title {
  font-size: .8125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__nav a {
  color: var(--color-footer-text);
  font-size: .875rem;
  transition: color var(--t);
}
.footer__nav a:hover { color: #fff; }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  color: var(--color-footer-text);
  font-size: .875rem;
  line-height: 1.6;
}

.footer__contact a {
  color: var(--color-footer-text);
  transition: color var(--t);
}
.footer__contact a:hover { color: #fff; }

.footer__contact-item { display: flex; align-items: flex-start; gap: var(--sp-2); }
.footer__contact-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.footer__address {
  color: var(--color-footer-text);
  font-size: .875rem;
  line-height: 1.75;
}

.footer__hours {
  color: var(--color-footer-text);
  font-size: .8125rem;
  line-height: 1.8;
  margin-top: var(--sp-2);
}

.footer__hours b { color: rgba(255,255,255,.9); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer__copyright { color: var(--color-footer-text); font-size: .8125rem; }

.footer__bottom-links { display: flex; gap: var(--sp-4); }
.footer__bottom-links a {
  color: var(--color-footer-text);
  font-size: .8125rem;
  transition: color var(--t);
}
.footer__bottom-links a:hover { color: #fff; }

/* ---- ABOUT PAGE ---- */
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, var(--brand-blue) 100%);
  padding: var(--sp-8) var(--container-pad);
  text-align: center;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.page-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  margin-top: var(--sp-4);
}

.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--t); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: .5; }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: var(--sp-7);
  align-items: center;
}

.mission__visual {
  position: sticky;
  top: 100px;
}

.mission__img-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.mission__img-placeholder {
  color: var(--color-text-muted);
  font-size: .875rem;
  text-align: center;
  padding: var(--sp-5);
}

.mission__content .section-title { margin-top: var(--sp-3); }

.mission__lead {
  font-size: 1.1875rem;
  color: var(--color-text-sec);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  font-weight: 500;
}

.mission__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  margin-bottom: var(--sp-3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}

.value-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: all var(--t-slow);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card__icon { font-size: 2rem; margin-bottom: var(--sp-3); }
.value-card__title { font-size: 1.125rem; font-weight: 800; margin-bottom: var(--sp-2); }
.value-card__desc { font-size: .9375rem; color: var(--color-text-muted); line-height: 1.65; }

.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
}

.promise-item {
  text-align: center;
  padding: var(--sp-5);
  background: var(--brand-blue);
  border-radius: var(--radius-xl);
  color: #fff;
}

.promise-item__icon { font-size: 2.5rem; margin-bottom: var(--sp-3); }
.promise-item__title { font-size: 1.0625rem; font-weight: 800; margin-bottom: var(--sp-2); }
.promise-item__desc { font-size: .875rem; opacity: .82; line-height: 1.65; }

/* ---- PRODUCTS PAGE ---- */
.filter-bar {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-6);
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--color-border);
  background: #fff;
  color: var(--color-text-sec);
  transition: all var(--t);
  min-height: 44px;
  font-family: var(--font);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--brand-blue-light);
}

.cat-header::before {
  content: '';
  width: 4px;
  height: 1.4em;
  background: var(--brand-blue);
  border-radius: 2px;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: var(--sp-7);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--brand-blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__label { font-size: .875rem; font-weight: 800; color: var(--color-text); margin-bottom: 4px; }
.contact-info__value { font-size: .875rem; color: var(--color-text-muted); line-height: 1.65; }
.contact-info__value a { color: var(--brand-blue); transition: color var(--t); }
.contact-info__value a:hover { color: var(--brand-blue-dark); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: var(--sp-2) 0; font-size: .875rem; color: var(--color-text-muted); border-bottom: 1px solid var(--color-border); }
.hours-table td:first-child { font-weight: 700; color: var(--color-text); width: 45%; }

.contact-form {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: var(--sp-4); }

.form-label { display: block; font-size: .875rem; font-weight: 700; color: var(--color-text); margin-bottom: var(--sp-2); }

.form-input {
  width: 100%;
  padding: 14px var(--sp-3);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(27,79,216,.10);
}

textarea.form-input { min-height: 128px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.is-open { border-color: var(--brand-blue); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font);
  min-height: 44px;
  gap: var(--sp-3);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.125rem;
  line-height: 1;
  transition: transform var(--t), background var(--t);
  flex-shrink: 0;
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--brand-blue);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 var(--sp-5) var(--sp-4);
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.faq-item.is-open .faq-answer { display: block; }

/* ---- ANIMATIONS ---- */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate-in.is-visible { opacity: 1; transform: translateY(0); }

.animate-in--delay-1 { transition-delay: .10s; }
.animate-in--delay-2 { transition-delay: .20s; }
.animate-in--delay-3 { transition-delay: .30s; }
.animate-in--delay-4 { transition-delay: .40s; }
.animate-in--delay-5 { transition-delay: .50s; }

/* ---- INTERNAL LINK SECTION ---- */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}

.link-card {
  background: var(--brand-blue-light);
  border: 1.5px solid var(--brand-blue-mid);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  transition: all var(--t);
}

.link-card:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.link-card__icon { font-size: 1.75rem; }
.link-card__title { font-size: 1rem; font-weight: 700; }
.link-card__sub { font-size: .8125rem; opacity: .75; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card:nth-child(2) { grid-row: auto; }
  .review-card:nth-child(7) { grid-column: auto; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission__visual { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(2) { grid-row: auto; }
  .review-card:nth-child(7) { grid-column: auto; }

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .trust-strip__inner { gap: var(--sp-4); }

  .mission-grid { gap: var(--sp-5); }
}

@media (max-width: 540px) {
  html { font-size: 15px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .product-card__body { padding: var(--sp-3); }
  .product-card__name { font-size: .875rem; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: var(--sp-6) 0; }
  .hero { min-height: 75vh; }

  .nav__mobile .btn { width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .promises-grid { grid-template-columns: 1fr 1fr; }

  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
}
