/* ===============================================================
   TOTAL RELIANCE — HOMEPAGE REDESIGN
   Drop-in replacement for index.css

   Design direction:
   - Less blue-heavy
   - Warm, premium skincare aesthetic
   - Quiet partner section instead of floating white card
   - Navy reserved for hero / trust / CTA / footer
   - Orange used as a restrained accent
   - Soft motion instead of excessive effects
================================================================= */

:root {
  --tr-navy: #102033;
  --tr-navy-deep: #0b1726;
  --tr-navy-soft: #182b3d;
  --tr-ink: #243342;
  --tr-muted: #667482;
  --tr-light: #f6f4ef;
  --tr-cream: #fbfaf7;
  --tr-white: #ffffff;
  --tr-border: #e6e2da;
  --tr-orange: #d9822b;
  --tr-orange-dark: #b96818;
  --tr-orange-soft: rgba(217, 130, 43, 0.10);
  --tr-shadow: 0 18px 45px rgba(16, 32, 51, 0.08);
}

/* ===============================================================
   HERO
================================================================= */

.landing-hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 8% 9rem;
  background:
    radial-gradient(circle at 78% 35%, rgba(217, 130, 43, 0.10), transparent 32%),
    linear-gradient(135deg, #0b1726 0%, #102033 58%, #193246 100%);
  box-shadow: 0 8px 30px rgba(11, 23, 38, 0.16);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 70%, rgba(255,255,255,0.035), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(217,130,43,0.08), transparent 30%);
  animation: heroAtmosphere 18s ease-in-out infinite alternate;
}

@keyframes heroAtmosphere {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

.hero-grid-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(217, 130, 43, 0.45);
  border-radius: 999px;
  background: rgba(217, 130, 43, 0.08);
  color: #efb06c;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  backdrop-filter: blur(8px);
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8a158;
  box-shadow: 0 0 0 5px rgba(232, 161, 88, 0.10);
  animation: subtlePulse 2.6s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.35); opacity: 1; }
}

.hero-header {
  margin: 0 0 1.7rem;
  color: var(--tr-white);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 900px;
}

.hero-header-subtext{
  color: #e5a15d;
  font-style: normal;
  font-weight: 750;
  text-shadow: none;
}

.hero-header-subtext em {
  color: #e5a15d;
  font-style: normal;
  font-weight: 750;
  text-shadow: none;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 1rem;
  color: #c8d1d9;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-content p:last-of-type {
  margin-bottom: 2.6rem;
}

.hero-content strong {
  color: #f1f4f6;
  font-weight: 700;
}

.hero-content em {
  color: #e5a15d;
  font-style: normal;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--tr-orange);
  border: 1px solid var(--tr-orange);
  box-shadow: 0 8px 24px rgba(217, 130, 43, 0.20);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--tr-orange-dark);
  border-color: var(--tr-orange-dark);
  box-shadow: 0 12px 30px rgba(217, 130, 43, 0.28);
}

.btn-secondary {
  color: #eef2f5;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.48);
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.45rem;
  transition: transform 220ms ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.glow-orb {
  position: absolute;
  right: -10%;
  bottom: -25%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle,
    rgba(217,130,43,0.11) 0%,
    rgba(217,130,43,0.035) 35%,
    transparent 70%
  );
  animation: orbFloat 14s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-25px, -18px, 0) scale(1.05); }
}

.spotlight-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255,255,255,0.018) 50%,
    transparent 65%
  );
  background-size: 220% 100%;
  animation: spotlightSweep 16s ease-in-out infinite;
}

@keyframes spotlightSweep {
  0%, 55%, 100% { background-position: 180% 0; }
  75% { background-position: -20% 0; }
}

/* ===============================================================
   SHARED SECTION TYPOGRAPHY
================================================================= */

.section-title {
  margin: 0 0 0.9rem;
  color: var(--tr-navy);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  border-left: 0;
  padding-left: 0;
}

.section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 1rem;
  border-radius: 99px;
  background: var(--tr-orange);
}

.section-desc {
  max-width: 720px;
  margin: 0;
  padding-left: 0;
  color: var(--tr-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}


/* ===============================================================
   BRAND PORTFOLIO — COMPACT HORIZONTAL RAIL
   =============================================================== */

.landing-brands {
  --brands-cream: #fbfaf7;
  --brands-ink: #243342;
  --brands-muted: #697682;
  --brands-line: rgba(36, 51, 66, 0.13);
  --brands-orange: #d9822b;

  position: relative;
  overflow: hidden;
  padding: 5.5rem 8% 4.75rem;
  background:
    radial-gradient(circle at 92% 20%, rgba(217,130,43,0.065), transparent 25rem),
    var(--brands-cream);
}

.landing-brands::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -280px;
  bottom: -230px;
  border: 1px solid rgba(217,130,43,0.10);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(217,130,43,0.022),
    0 0 0 110px rgba(217,130,43,0.014);
  pointer-events: none;
}

.brands-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.brands-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.brands-heading-copy {
  max-width: 760px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  color: #b96818;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.landing-brands .section-title {
  margin-bottom: 0.65rem;
}

.landing-brands .section-desc {
  max-width: 680px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.brand-rail-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-rail-count {
  min-width: 72px;
  color: #7a858d;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.brand-rail-count strong {
  color: var(--brands-ink);
  font-size: 0.8rem;
}

.brand-rail-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36,51,66,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  color: var(--brands-ink);
  font: inherit;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.brand-rail-button:hover {
  transform: translateY(-2px);
  border-color: rgba(217,130,43,0.45);
  background: #fff;
  color: #b96818;
}

.brand-rail-mask {
  position: relative;
  overflow: hidden;
}

.brand-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  cursor: grab;
}

.brand-carousel::-webkit-scrollbar {
  display: none;
}

.brand-carousel:active {
  cursor: grabbing;
}

.brand-card {
  --brand-accent: #9a8060;
  --brand-wash: rgba(154,128,96,0.10);
  --brand-line: rgba(154,128,96,0.28);

  position: relative;
  flex: 0 0 calc((100% - 2.4rem) / 3.5);
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 1.45rem;

  border: 1px solid rgba(36,51,66,0.11);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,245,240,0.92));
  box-shadow:
    0 10px 28px rgba(16,32,51,0.045),
    inset 0 1px 0 rgba(255,255,255,0.95);

  transition:
    transform 420ms cubic-bezier(0.22,1,0.36,1),
    box-shadow 420ms cubic-bezier(0.22,1,0.36,1),
    border-color 300ms ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-wash), transparent 68%);
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.brand-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -62px;
  bottom: -70px;
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  opacity: 0.5;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.brand-card:hover {
  transform: translateY(-7px);
  border-color: var(--brand-line);
  box-shadow:
    0 20px 38px rgba(16,32,51,0.085),
    0 4px 12px var(--brand-wash);
}

.brand-card:hover::before {
  transform: scale(1.35);
}

.brand-card:hover::after {
  transform: scale(1.15) translate(-8px,-5px);
}

#brand-luxe-organix {
  --brand-accent: #8d9b65;
  --brand-wash: rgba(141,155,101,0.12);
  --brand-line: rgba(141,155,101,0.30);
}

#brand-skin1004 {
  --brand-accent: #9a8060;
  --brand-wash: rgba(154,128,96,0.11);
  --brand-line: rgba(154,128,96,0.29);
}

#brand-beautyofjoseon {
  --brand-accent: #a47b72;
  --brand-wash: rgba(164,123,114,0.10);
  --brand-line: rgba(164,123,114,0.28);
}

#brand-anua {
  --brand-accent: #829b88;
  --brand-wash: rgba(130,155,136,0.11);
  --brand-line: rgba(130,155,136,0.29);
}

#brand-cosrx {
  --brand-accent: #7f93a0;
  --brand-wash: rgba(127,147,160,0.10);
  --brand-line: rgba(127,147,160,0.28);
}

.brand-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(36,51,66,0.09);
}

.brand-number {
  color: rgba(36,51,66,0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand-region {
  color: var(--brand-accent);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.28em;
  padding: 1.3rem 0 0.9rem;
  color: var(--brands-ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.brand-mark-main{
  color: #fffae5
}

.brand-mark-accent {
  color: var(--brand-accent);
}

.brand-card-bottom {
  position: relative;
  z-index: 2;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(36,51,66,0.09);
}

.brand-category {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--brand-accent);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-card-bottom p {
  max-width: 270px;
  margin: 0;
  color: #71808a;
  font-size: 0.75rem;
  line-height: 1.65;
}

.brand-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(36,51,66,0.14);
  border-radius: 50%;
  color: var(--brand-accent);
  font-size: 0.78rem;
  transition:
    transform 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease;
}

.brand-card:hover .brand-arrow {
  transform: translate(2px,-2px);
  border-color: var(--brand-accent);
  background: var(--brand-wash);
}

.brand-rail-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
  color: #7a858d;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rail-footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d9822b;
}


/* ===============================================================
   WHY TOTAL RELIANCE — B2B CAPABILITIES
   =============================================================== */

.landing-why-us {
  position: relative;
  overflow: hidden;
  padding: 5.6rem 8%;
  background:
    radial-gradient(circle at 82% 10%, rgba(217,130,43,0.10), transparent 24rem),
    linear-gradient(135deg, #0b1726, #122639);
  color: #fff;
}

.landing-why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(255,255,255,0.025) 50%, transparent 100%);
  background-size: 180% 100%;
  animation: whyLightSweep 15s ease-in-out infinite;
}

@keyframes whyLightSweep {
  0%, 60%, 100% { background-position: 160% 0; }
  75% { background-position: -20% 0; }
}

.why-us-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.why-us-header {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(260px,0.65fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-eyebrow-dark {
  color: #e3a15f;
}

.section-title-dark {
  color: #fff;
}

.section-title-dark em {
  color: #e3a15f;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.why-us-intro {
  margin: 0;
  color: #aebbc5;
  font-size: 0.92rem;
  line-height: 1.75;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,0.13);
}

.why-card {
  position: relative;
  min-height: 245px;
  padding: 1.8rem 2rem 1.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transition:
    transform 350ms cubic-bezier(0.22,1,0.36,1),
    background-color 300ms ease;
}

.why-card + .why-card {
  padding-left: 2rem;
  border-left: 1px solid rgba(255,255,255,0.13);
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.why-number {
  color: #e3a15f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.why-line {
  width: 42px;
  height: 1px;
  background: rgba(227,161,95,0.45);
  transition: width 300ms ease;
}

.why-card:hover .why-line {
  width: 65px;
}

.why-card h3 {
  max-width: 260px;
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.why-card p {
  max-width: 310px;
  margin: 0;
  color: #9faeb9;
  font-size: 0.78rem;
  line-height: 1.72;
}

.why-tag {
  display: inline-block;
  margin-top: 1.2rem;
  color: #6f8290;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ===============================================================
   WHAT WE DISTRIBUTE — COMPACT CATEGORY STRIP
   =============================================================== */

.landing-categories {
  padding: 5rem 8%;
  background: #f4f2ed;
}

.categories-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.categories-header {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,0.7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.categories-header > p {
  margin: 0;
  color: #6f7c86;
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.category-card {
  position: relative;
  min-height: 205px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: end;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid rgba(36,51,66,0.11);
  border-radius: 16px;
  background: #fbfaf7;
  transition:
    transform 350ms cubic-bezier(0.22,1,0.36,1),
    box-shadow 350ms ease,
    border-color 300ms ease;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -75px;
  top: -75px;
  border: 1px solid rgba(217,130,43,0.10);
  border-radius: 50%;
  transition: transform 500ms ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,130,43,0.28);
  box-shadow: 0 18px 35px rgba(16,32,51,0.07);
}

.category-card:hover::before {
  transform: scale(1.3);
}

.category-index {
  position: absolute;
  top: 1.15rem;
  left: 1.45rem;
  color: rgba(36,51,66,0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.74rem;
}

.category-initial {
  align-self: center;
  color: #d7d0c5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.8;
  transition:
    color 300ms ease,
    transform 400ms cubic-bezier(0.22,1,0.36,1);
}

.category-card:hover .category-initial {
  color: #d9a56f;
  transform: translateY(-4px);
}

.category-region {
  display: block;
  margin-bottom: 0.35rem;
  color: #b96818;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 0 0 0.45rem;
  color: #243342;
  font-size: 1rem;
  line-height: 1.3;
}

.category-card p {
  max-width: 250px;
  margin: 0;
  color: #75818a;
  font-size: 0.73rem;
  line-height: 1.65;
}

.category-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(36,51,66,0.14);
  border-radius: 50%;
  color: #b96818;
  transition: transform 250ms ease;
}

.category-card:hover .category-arrow {
  transform: translate(2px,-2px);
}


/* ===============================================================
   CTA — B2B
   =============================================================== */

.landing-cta {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 8%;
  background:
    radial-gradient(circle at 86% 50%, rgba(217,130,43,0.13), transparent 30%),
    linear-gradient(135deg, #091522, #102033);
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(217,130,43,0.34);
  border-radius: 999px;
  background: rgba(217,130,43,0.07);
  color: #e3a15f;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-wrapper h2 {
  max-width: 720px;
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.cta-wrapper p {
  max-width: 700px;
  margin: 0 0 1.8rem;
  color: #aebbc5;
  font-size: 0.92rem;
  line-height: 1.72;
}

.cta-button {
  display: inline-flex;
}


/* ===============================================================
   REVEAL / MOTION COMPATIBILITY
   Works with the existing animations.js IntersectionObserver.
   =============================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.22,1,0.36,1),
    transform 700ms cubic-bezier(0.22,1,0.36,1);
}

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

@media(max-width:1024px){.hero-grid-container,.brands-container,.why-us-container,.categories-wrapper,.landing-cta-inner{width:min(100% - 3rem,1240px)}.why-us-header,.categories-header{grid-template-columns:1fr;gap:1.25rem}.why-us-grid,.categories-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:768px){.landing-hero{min-height:auto;padding:6.5rem 0 4.5rem}.hero-grid-container,.brands-container,.why-us-container,.categories-wrapper,.landing-cta-inner{width:min(100% - 2rem,1240px)}.hero-header{font-size:clamp(2.7rem,14vw,4rem);overflow-wrap:anywhere}.hero-header-subtext{font-size:clamp(1.8rem,9vw,2.7rem)}.hero-content p{font-size:.98rem}.hero-actions{align-items:stretch;flex-direction:column;gap:.75rem}.hero-actions a{justify-content:center;width:100%;text-align:center}.brands-header{align-items:flex-start;flex-direction:column;gap:1.5rem}.brand-rail-controls{align-self:stretch;justify-content:space-between}.brand-carousel{scroll-padding-inline:0}.brand-card{flex:0 0 min(86vw,340px);min-width:0}.brand-rail-footer{align-items:flex-start;flex-direction:column;gap:.5rem}.rail-footer-dot{display:none}.why-us-grid,.categories-grid{grid-template-columns:1fr}.why-card,.category-card{min-height:0}.landing-brands,.landing-why-us,.landing-categories{padding-block:4.5rem}}
@media(max-width:480px){.hero-badge{align-items:flex-start;font-size:.66rem;line-height:1.45}.section-title{font-size:clamp(2rem,11vw,2.7rem)}.brand-card{flex-basis:88vw;padding:1.25rem}.brand-mark-main{font-size:1.55rem}.brand-rail-button{width:44px;height:44px}}
