:root {
  --ink: #14161a;
  --muted: #626b78;
  --soft: #f2f4f7;
  --line: rgba(20, 22, 26, 0.1);
  --surface: rgba(255, 255, 255, 0.72);
  --solid: #ffffff;
  --black: #101114;
  --yellow: #e7b900;
  --green: #72bc2b;
  --blue: #0a7edb;
  --pink: #df2572;
  --shadow: 0 20px 60px rgba(32, 38, 48, 0.12);
  --fine-shadow: 0 12px 36px rgba(32, 38, 48, 0.09);
  --body-bg: linear-gradient(180deg, #f7f8fb 0%, #edf1f4 42%, #fbfbf8 100%);
  --header-bg: rgba(248, 249, 251, 0.76);
  --header-border: rgba(255, 255, 255, 0.72);
  --nav-bg: rgba(255, 255, 255, 0.62);
  --nav-hover: #ffffff;
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.74);
  --glass-border: rgba(255, 255, 255, 0.78);
  --image-bg: #ffffff;
  --contact-bg: linear-gradient(180deg, #ffffff, #eef2f5);
  --button-ghost-bg: rgba(255, 255, 255, 0.68);
  --radius: 8px;
  --font-ar: "IBM Plex Sans Arabic", "Noto Sans Arabic", "SF Arabic", "Geeza Pro", "Arial", "Tahoma", sans-serif;
  --font-latin: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4f6fb;
    --muted: #aab3c1;
    --soft: #151920;
    --line: rgba(255, 255, 255, 0.1);
    --surface: rgba(24, 28, 36, 0.74);
    --solid: #171b22;
    --black: #08090c;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
    --fine-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
    --body-bg: linear-gradient(180deg, #0d1016 0%, #111720 45%, #08090c 100%);
    --header-bg: rgba(14, 17, 23, 0.72);
    --header-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.06);
    --nav-hover: rgba(255, 255, 255, 0.1);
    --glass: rgba(21, 25, 33, 0.72);
    --glass-strong: rgba(23, 28, 37, 0.84);
    --glass-border: rgba(255, 255, 255, 0.1);
    --image-bg: #f5f5f2;
    --contact-bg: linear-gradient(180deg, #121821, #090b0f);
    --button-ghost-bg: rgba(255, 255, 255, 0.08);
  }
}

:root[data-theme="light"] {
  --ink: #14161a;
  --muted: #626b78;
  --soft: #f2f4f7;
  --line: rgba(20, 22, 26, 0.1);
  --surface: rgba(255, 255, 255, 0.72);
  --solid: #ffffff;
  --black: #101114;
  --shadow: 0 20px 60px rgba(32, 38, 48, 0.12);
  --fine-shadow: 0 12px 36px rgba(32, 38, 48, 0.09);
  --body-bg: linear-gradient(180deg, #f7f8fb 0%, #edf1f4 42%, #fbfbf8 100%);
  --header-bg: rgba(248, 249, 251, 0.76);
  --header-border: rgba(255, 255, 255, 0.72);
  --nav-bg: rgba(255, 255, 255, 0.62);
  --nav-hover: #ffffff;
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.74);
  --glass-border: rgba(255, 255, 255, 0.78);
  --image-bg: #ffffff;
  --contact-bg: linear-gradient(180deg, #ffffff, #eef2f5);
  --button-ghost-bg: rgba(255, 255, 255, 0.68);
  color-scheme: light;
}

:root[data-theme="dark"] {
  --ink: #f4f6fb;
  --muted: #aab3c1;
  --soft: #151920;
  --line: rgba(255, 255, 255, 0.1);
  --surface: rgba(24, 28, 36, 0.74);
  --solid: #171b22;
  --black: #08090c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --fine-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  --body-bg: linear-gradient(180deg, #0d1016 0%, #111720 45%, #08090c 100%);
  --header-bg: rgba(14, 17, 23, 0.72);
  --header-border: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(255, 255, 255, 0.06);
  --nav-hover: rgba(255, 255, 255, 0.1);
  --glass: rgba(21, 25, 33, 0.72);
  --glass-strong: rgba(23, 28, 37, 0.84);
  --glass-border: rgba(255, 255, 255, 0.1);
  --image-bg: #f5f5f2;
  --contact-bg: linear-gradient(180deg, #121821, #090b0f);
  --button-ghost-bg: rgba(255, 255, 255, 0.08);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--body-bg);
  font-family: var(--font-ar);
  font-weight: 500;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

@media (prefers-color-scheme: dark) {
  body {
    color-scheme: dark;
  }
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: var(--header-bg);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--header-border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 10px 34px rgba(22, 26, 33, 0.08);
  display: flex;
  inset: 0 0 auto;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: fixed;
  z-index: 20;
}

.header-actions {
  align-items: center;
  direction: ltr;
  display: flex;
  gap: 8px;
}

.brand {
  align-items: center;
  background: var(--button-ghost-bg);
  border: 1px solid var(--header-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  direction: ltr;
  display: inline-flex;
  min-height: 46px;
  padding: 7px 15px;
  text-decoration: none;
}

.brand-wordmark {
  display: block;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--ink);
  display: block;
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-wordmark b {
  color: var(--yellow);
  font-weight: 800;
}

.brand-wordmark small {
  color: var(--muted);
  direction: rtl;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  margin-top: 3px;
  text-align: left;
}

.site-footer p:first-child {
  display: block;
  font-family: var(--font-latin);
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  background: var(--nav-bg);
  border: 1px solid var(--header-border);
  border-radius: 999px;
  display: flex;
  gap: 4px;
  font-size: 13px;
  font-weight: 650;
  padding: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 14px;
}

.site-nav a:hover {
  background: var(--nav-hover);
  color: var(--ink);
}

.nav-toggle {
  background: var(--button-ghost-bg);
  border: 1px solid var(--header-border);
  border-radius: 999px;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.theme-toggle {
  align-items: center;
  background: var(--button-ghost-bg);
  border: 1px solid var(--header-border);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.theme-toggle svg {
  display: block;
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.theme-toggle .icon-sun {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-toggle .icon-moon {
    display: none;
  }

  :root:not([data-theme]) .theme-toggle .icon-sun {
    display: block;
  }
}

:root[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

:root[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

:root[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 22px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 86svh;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 84px) 70px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(223, 37, 114, 0.12), transparent 28%),
    linear-gradient(225deg, rgba(10, 126, 219, 0.12), transparent 32%),
    linear-gradient(0deg, rgba(114, 188, 43, 0.08), transparent 36%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 660px;
}

.eyebrow {
  color: var(--pink);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(38px, 5.8vw, 72px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
  margin-bottom: 20px;
  max-width: 760px;
}

h2 {
  font-size: clamp(27px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  font-weight: 750;
  line-height: 1.45;
  margin-bottom: 8px;
}

.hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 50px;
  padding: 10px 22px;
}

.button.primary {
  background: var(--black);
  box-shadow: 0 16px 34px rgba(16, 17, 20, 0.22);
  color: #fff;
}

.button.ghost {
  background: var(--button-ghost-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--fine-shadow);
  color: var(--ink);
  direction: ltr;
  font-family: var(--font-latin);
}

.hero-visual {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(14px, 2vw, 22px);
}

.product-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-strip img {
  aspect-ratio: 3 / 4;
  background: var(--image-bg);
  border: 1px solid rgba(20, 22, 26, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(32, 38, 48, 0.12);
  object-fit: cover;
  width: 100%;
}

.quick-stats {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(145%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--fine-shadow);
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -36px auto 0;
  max-width: 1180px;
  position: relative;
  z-index: 2;
}

.quick-stats article {
  border-left: 1px solid var(--line);
  padding: 26px clamp(18px, 4vw, 42px);
}

.quick-stats article:last-child {
  border-left: 0;
}

.quick-stats strong {
  display: block;
  direction: ltr;
  font-family: var(--font-latin);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.quick-stats span {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.section {
  margin-inline: auto;
  max-width: 1180px;
  padding: 88px clamp(18px, 4vw, 34px);
}

.intro {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.intro > p,
.section-copy + p,
.quality-copy p,
.contact p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.filter-group {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(145%);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  display: flex;
  gap: 4px;
  padding: 4px;
}

.filter {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  min-height: 40px;
  padding: 6px 14px;
}

.filter.active {
  background: var(--nav-hover);
  box-shadow: 0 8px 20px rgba(32, 38, 48, 0.1);
  color: var(--black);
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--fine-shadow);
  overflow: hidden;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  aspect-ratio: 3 / 4;
  background: var(--image-bg);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-info {
  border-top: 5px solid var(--accent);
  padding: 20px;
}

.product-info h3 {
  direction: ltr;
  font-family: var(--font-latin);
  font-size: 28px;
  letter-spacing: 0;
  text-align: right;
}

.product-info p:last-child,
.feature-grid p,
.note-list p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.stage {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  color: var(--black);
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 4px 10px;
}

.yellow {
  --accent: var(--yellow);
  --accent-soft: #fff5c4;
  --accent-border: #efd85b;
}

.green {
  --accent: var(--green);
  --accent-soft: #e8f7d4;
  --accent-border: #addb76;
}

.blue {
  --accent: var(--blue);
  --accent-soft: #d9edff;
  --accent-border: #7bbbec;
}

.pink {
  --accent: var(--pink);
  --accent-soft: #ffe0ed;
  --accent-border: #ee8cb4;
}

@media (prefers-color-scheme: dark) {
  .stage {
    color: #111318;
  }

  .yellow {
    --accent-soft: #ffeaa0;
    --accent-border: #f1ca2f;
  }

  .green {
    --accent-soft: #d8f0be;
    --accent-border: #93cd5d;
  }

  .blue {
    --accent-soft: #cfe8ff;
    --accent-border: #5eaae6;
  }

  .pink {
    --accent-soft: #ffd3e5;
    --accent-border: #e871a3;
  }
}

.quality-band {
  background: var(--black);
  color: #fff;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  padding: 92px clamp(20px, 6vw, 84px);
}

.quality-copy {
  max-width: 590px;
}

.quality-copy .eyebrow {
  color: var(--yellow);
}

.quality-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.64);
}

.feature-icon {
  border: 2px solid currentColor;
  color: var(--blue);
  display: inline-block;
  height: 36px;
  margin-bottom: 14px;
  position: relative;
  width: 36px;
  clip-path: polygon(50% 0, 92% 22%, 92% 72%, 50% 100%, 8% 72%, 8% 22%);
}

.feature-grid article:nth-child(2) .feature-icon {
  color: var(--green);
}

.feature-grid article:nth-child(3) .feature-icon {
  color: var(--pink);
}

.feature-grid article:nth-child(4) .feature-icon {
  color: var(--yellow);
}

.feature-icon::after {
  background: currentColor;
  content: "";
  display: block;
  height: 12px;
  inset: 10px 15px auto auto;
  position: absolute;
  width: 4px;
}

.chart::after {
  box-shadow: -7px 4px 0 currentColor, -14px 8px 0 currentColor;
}

.pulse::after {
  background: transparent;
  border: 3px solid currentColor;
  border-left: 0;
  border-top: 0;
  height: 10px;
  transform: rotate(45deg);
  width: 6px;
}

.gauge::after {
  background: transparent;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  height: 12px;
  width: 18px;
}

.note-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.note-list article {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(145%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--fine-shadow);
  padding: 24px;
}

.contact {
  align-items: center;
  background: var(--contact-bg);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  padding: 96px clamp(20px, 6vw, 84px);
}

.contact h2 {
  max-width: 660px;
}

.contact-card {
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 12px;
  padding: 30px;
}

.contact-card a,
.contact-card span {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 12px;
}

.contact-card a:nth-child(-n + 2) {
  color: var(--ink);
  direction: ltr;
  font-family: var(--font-latin);
  font-size: 24px;
  font-weight: 800;
  text-align: right;
}

.contact-card a[href="https://www.lasfeed.com"] {
  direction: ltr;
  text-align: right;
}

.contact-card .social-link {
  align-items: center;
  background: #1877f2;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.24);
  color: #fff;
  direction: ltr;
  display: inline-flex;
  justify-content: center;
  justify-self: right;
  min-height: 0;
  padding: 0;
  width: 48px;
  height: 48px;
}

.social-link svg {
  display: block;
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 84px);
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  text-align: left;
}

@media (max-width: 980px) {
  .hero,
  .quality-band,
  .contact,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .product-grid,
  .note-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    min-height: 42px;
    padding: 6px 13px;
  }

  .brand-wordmark strong {
    font-size: 16px;
  }

  .brand-wordmark small {
    font-size: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--header-bg);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    inset: 68px 0 auto;
    opacity: 0;
    padding: 12px 18px 22px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 16px 0;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding: 86px 16px 42px;
  }

  .hero::before {
    background:
      linear-gradient(135deg, rgba(223, 37, 114, 0.11), transparent 34%),
      linear-gradient(225deg, rgba(10, 126, 219, 0.1), transparent 38%);
  }

  .hero-visual {
    margin-top: 2px;
    padding: 8px;
  }

  .product-strip {
    gap: 7px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .product-strip img {
    aspect-ratio: 1 / 1.15;
    border-radius: 7px;
    object-fit: cover;
    object-position: top center;
  }

  h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.34;
    margin-bottom: 14px;
  }

  .hero .eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
  }

  h2 {
    font-size: clamp(27px, 9vw, 40px);
  }

  .quick-stats {
    border-radius: 0;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .quick-stats article,
  .quick-stats article:last-child {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 66px 18px;
  }

  .filter-group {
    overflow-x: auto;
    width: 100%;
  }

  .filter {
    flex: 1 0 auto;
  }

  .product-grid,
  .feature-grid,
  .note-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(126px, 0.78fr) minmax(0, 1fr);
  }

  .product-card img {
    height: 100%;
  }

  .product-info {
    border-right: 5px solid var(--accent);
    border-top: 0;
    padding: 18px;
  }

  .product-info h3 {
    font-size: 24px;
  }

  .quality-band {
    padding: 68px 18px;
  }

  .contact {
    padding: 72px 18px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-copy {
    text-align: right;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    display: grid;
  }

  h1 {
    font-size: clamp(26px, 7.7vw, 32px);
  }

  .button {
    width: 100%;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .product-info {
    padding: 14px;
  }

  .stage {
    font-size: 11px;
  }

  .product-info p:last-child {
    font-size: 13px;
  }

  .contact-card {
    padding: 22px;
  }
}
