:root {
  --ink: #1b2528;
  --soft-ink: #425157;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dfe5df;
  --teal: #287982;
  --teal-dark: #15525a;
  --saffron: #f2a735;
  --clay: #bc6047;
  --charcoal: #11181b;
  --shadow: 0 20px 60px rgba(19, 32, 36, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

p {
  margin: 0;
  color: var(--soft-ink);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.25rem);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(27, 37, 40, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand small {
  margin-top: 0.1rem;
  color: var(--soft-ink);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: var(--soft-ink);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(40, 121, 130, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 70px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/store-tech-display.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.03);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 17, 20, 0.88), rgba(10, 17, 20, 0.58) 45%, rgba(10, 17, 20, 0.18));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  padding: 7rem clamp(1rem, 5vw, 4rem) 5.25rem;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.7rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--saffron);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.45rem, 7vw, 5.6rem);
}

h2 {
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.16rem;
}

.hero p {
  max-width: 670px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.72rem 1rem;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--saffron);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--teal-dark);
}

.section {
  padding: clamp(4.2rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.intro-section,
.products-section,
.reviews-section,
.faq-section {
  background: var(--white);
}

.split,
.category-header,
.proof-section,
.contact-section,
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split p {
  max-width: 760px;
  margin-top: 1rem;
}

.values-panel {
  display: grid;
  gap: 1rem;
}

.values-panel div,
.highlight-grid article,
.product-columns article,
.catalog-grid article,
.proof-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(25, 42, 47, 0.06);
}

.values-panel div {
  padding: 1.4rem;
}

.values-panel span,
.proof-grid strong,
.contact-card h3 {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

.feature-strip,
.featured-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.feature-strip span,
.featured-bar span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: #f9faf7;
  font-weight: 700;
}

.service-highlights {
  background: #eef3ef;
}

.highlight-grid,
.catalog-grid,
.proof-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-grid article,
.catalog-grid article,
.proof-grid article {
  padding: 1.35rem;
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.highlight-grid p,
.catalog-grid p,
.proof-grid p {
  margin-top: 0.65rem;
}

.category-section {
  background: #faf9f4;
}

.category-section.muted {
  background: #edf2f2;
}

.category-header p,
.section-lead {
  max-width: 680px;
  align-self: end;
  font-size: 1.05rem;
}

.product-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.product-columns.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-columns article {
  min-height: 260px;
  padding: 1.25rem;
}

.product-columns h3 {
  margin-bottom: 0.9rem;
}

.product-columns li::marker {
  color: var(--teal);
}

.catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-bar {
  padding-top: 0.75rem;
}

.proof-section {
  background: var(--charcoal);
}

.proof-section h2 {
  color: var(--white);
}

.proof-section .section-kicker {
  color: var(--saffron);
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.proof-grid article {
  background: #182327;
  border-color: rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  color: var(--white);
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.reviews-section {
  text-align: center;
}

.reviews-section h2,
.reviews-section .section-kicker {
  margin-left: auto;
  margin-right: auto;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: #f7f8f5;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 920px;
  margin-top: 2rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  background: #f9faf7;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin-top: 0.75rem;
}

.contact-section {
  background: #eef3ef;
  align-items: center;
}

.contact-copy p {
  max-width: 660px;
  margin-top: 1rem;
}

.contact-card {
  padding: 1.6rem;
}

address {
  margin: 0 0 1.2rem;
  color: var(--soft-ink);
  font-style: normal;
}

dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

dt {
  color: var(--ink);
  font-weight: 800;
}

dd {
  margin: 0.2rem 0 0;
  color: var(--soft-ink);
}

dd a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  padding: 2.5rem clamp(1rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.site-footer .brand small,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav,
.footer-contact,
.social-links {
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover {
  color: var(--saffron);
}

.footer-contact strong {
  color: var(--white);
}

.social-links {
  grid-template-columns: repeat(3, max-content);
  gap: 0.85rem;
  margin-top: 0.45rem;
}

@media (max-width: 1080px) {
  .highlight-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .split,
  .category-header,
  .proof-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    margin-top: 2rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 17, 20, 0.28), rgba(10, 17, 20, 0.86) 58%, rgba(10, 17, 20, 0.96));
  }

  .hero-content {
    width: 100%;
    padding-top: 12rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .highlight-grid,
  .catalog-grid,
  .proof-grid,
  .review-grid,
  .product-columns,
  .product-columns.compact {
    grid-template-columns: 1fr;
  }

  .product-columns article {
    min-height: 0;
  }

  blockquote {
    min-height: 0;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}
