*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --green: #1a5c2e;
  --green-mid: #237a3d;
  --green-light: #e8f5ec;
  --green-xlight: #f2faf4;
  --red: #c0392b;
  --red-light: #fdf0ef;
  --white: #ffffff;
  --off: #f7f6f2;
  --ink: #111510;
  --muted: #5a5f58;
  --border: #d8ddd5;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}
body {
  cursor: none;
}

/* Disable custom cursor on touch/mobile devices */
@media (max-width: 960px), (pointer: coarse) {
  body {
    cursor: auto;
  }
}

img {
  max-width: 100%;
  height: auto;
}

#cur {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s,
    background 0.15s;
  transform: translate(-50%, -50%);
}
#cur2 {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.25s,
    opacity 0.25s;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.logo-box {
  background: var(--green);
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  padding: 6px 24px 6px 14px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.logo-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 16px;
  line-height: 1.3;
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-quote {
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 28px 10px 22px;
  border: none;
  cursor: none;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-quote:hover {
  background: #a93226;
}
.ham {
  display: none;
  background: none;
  border: none;
  cursor: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

#home {
  padding-top: 72px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.hero-left {
  background: url("/images/store.jpg") center/cover no-repeat;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-left > * {
  position: relative;
  z-index: 1;
}

.hero-left::before {
  content: "JK";
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 320px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 40px;
  align-self: flex-start;
}
.hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  color: white;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.hero-h1 span {
  color: var(--red);
  display: block;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 48px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-white {
  background: white;
  color: var(--green);
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: none;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover {
  background: var(--off);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: none;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: white;
}
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}
.hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat:last-child {
  border-right: none;
  padding-left: 24px;
  padding-right: 0;
}
.hero-stat:not(:first-child) {
  padding-left: 24px;
}
.hero-stat-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: white;
  letter-spacing: 1px;
}
.hero-stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-right {
  background: var(--off);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.pro-list {
  text-decoration: none;
}

.hero-right-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-right-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.pipe-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pipe-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  cursor: none;
  transition: background 0.15s;
  position: relative;
  overflow: hidden;
}
.pipe-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--green-light);
  transition: width 0.3s;
  z-index: 0;
}
.pipe-row:hover::before {
  width: 100%;
}
.pipe-row:first-child {
  border-top: 1px solid var(--border);
}
.pipe-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  color: var(--muted);
  width: 36px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pipe-name {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.pipe-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 10px;
  position: relative;
  z-index: 1;
  transition:
    background 0.2s,
    color 0.2s;
}
.pipe-row:hover .pipe-tag {
  background: var(--green);
  color: white;
}
.pipe-arrow {
  font-size: 18px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s,
    color 0.2s;
}
.pipe-row:hover .pipe-arrow {
  transform: translateX(4px);
  color: var(--red);
}

.marquee-strip {
  background: var(--ink);
  color: white;
  height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll 24s linear infinite;
}
.marquee-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#products {
  background: var(--white);
  padding: 100px 48px;
}

/* Safer table layout on small screens */
.products-table {
  table-layout: fixed;
}

.products-table td {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 24px;
}
.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 1px;
  color: var(--ink);
  line-height: 1;
}
.see-all {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1.5px solid var(--green);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.see-all:hover {
  color: var(--red);
  border-color: var(--red);
}
.products-table {
  width: 100%;
  border-collapse: collapse;
}
.products-table tr {
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: background 0.15s;
}
.products-table tr:hover {
  background: var(--green-xlight);
}
.products-table td {
  padding: 28px 16px;
  vertical-align: middle;
}
.prod-td-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: var(--border);
  width: 56px;
}
.prod-td-icon {
  width: 60px;
}
.prod-icon-circ {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden; /* keeps image inside circle */
  font-size: 20px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-icon-img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.prod-td-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}
.prod-td-desc {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
}
.prod-td-badge {
  text-align: right;
}
.prod-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--green-light);
  color: var(--green);
  transition:
    background 0.2s,
    color 0.2s;
}
.products-table tr:hover .prod-badge {
  background: var(--green);
  color: white;
}
.prod-td-arrow {
  width: 40px;
  text-align: center;
  font-size: 18px;
  color: var(--border);
  transition:
    color 0.2s,
    transform 0.2s;
}
.products-table tr:hover .prod-td-arrow {
  color: var(--red);
  transform: translateX(4px);
}

#why {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.why-left {
  background: url("/images/product.jpg") center/cover no-repeat;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.why-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Keep content above overlay */
.why-left > * {
  position: relative;
  z-index: 1;
}

.why-left .section-kicker {
  color: rgba(255, 255, 255, 0.5);
}
.why-left .section-h2 {
  color: white;
}
.why-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 380px;
}
.why-right {
  background: var(--off);
  padding: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 100%;
}
.why-item {
  background: white;
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.why-item:hover {
  border-color: var(--green);
}
.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-item:hover::before {
  transform: scaleX(1);
}
.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

#faq {
  padding: 64px 24px;
  max-width: 900px;
  margin: 0 auto;
}

#faq .section-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a7d3c;
  text-align: center;
  margin-bottom: 8px;
}

#faq .section-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

#faq > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#faq h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #f7f9f8;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0;
  margin-top: 12px;
  cursor: default;
}

#faq h3::before {
  content: "Q.";
  color: #0a7d3c;
  font-weight: 700;
  margin-right: 8px;
}

#faq p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  margin-bottom: 4px;
  padding: 16px 20px 16px 44px;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0 0 8px 8px;
  word-wrap: break-word;
}

/* Tablet */
@media (max-width: 768px) {
  #faq {
    padding: 48px 20px;
  }

  #faq .section-h2 {
    font-size: 1.75rem;
  }

  #faq h3 {
    font-size: 1rem;
    padding: 14px 18px;
  }

  #faq p {
    padding: 14px 18px 14px 18px;
    font-size: 0.92rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  #faq {
    padding: 36px 16px;
  }

  #faq .section-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  #faq .section-h2 {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }

  #faq h3 {
    font-size: 0.95rem;
    padding: 12px 14px;
    line-height: 1.4;
  }

  #faq p {
    font-size: 0.88rem;
    padding: 12px 14px;
    line-height: 1.6;
  }
}

#testimonials {
  padding: 100px 48px;
  background: var(--white);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 2px solid var(--ink);
}
.test-card {
  padding: 44px 36px;
  background: white;
  border-right: 1px solid var(--border);
  position: relative;
}
.test-card:last-child {
  border-right: none;
}
.test-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  color: var(--green-light);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
}
.test-text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.test-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.test-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.test-bar {
  height: 3px;
  background: var(--green);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 0.4s;
}
.test-card:hover .test-bar {
  width: 100%;
}

#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off);
}
.about-left {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-left .section-h2 {
  margin-bottom: 20px;
}
.about-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  background: white;
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  color: var(--ink);
}
.about-right {
  background: var(--green);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px;
  min-height: 600px;
}
.about-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 260px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
}
.about-tag {
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 2;
  background: var(--red);
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  padding: 10px 20px;
}

/* 📱 Mobile fix */
@media (max-width: 768px) {
  .about-tag {
    top: 16px;
    right: 16px;
    font-size: 14px;
    padding: 6px 12px;
    letter-spacing: 1px;
  }
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.about-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.2s;
}
.about-card:hover {
  background: rgba(255, 255, 255, 0.18);
}
.about-card-icon {
  font-size: 24px;
}
.about-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}
.about-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

#contact {
  padding: 100px 48px;
  background: var(--white);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.contact-left .section-h2 {
  margin-bottom: 40px;
}
.c-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.c-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.c-field {
  display: flex;
  flex-direction: column;
}
.c-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px 0;
  background: var(--off);
  border: 1px solid var(--border);
  border-bottom: none;
}
.c-field input {
  padding: 10px 18px 16px;
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  border: 1px solid var(--border);
  border-top: none;
  background: var(--off);
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.c-field input:focus {
  border-color: var(--green);
  background: white;
}
.c-msg-field {
  margin-bottom: 2px;
}
.c-msg-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px 0;
  background: var(--off);
  border: 1px solid var(--border);
  border-bottom: none;
  display: block;
}
.c-msg-field textarea {
  width: 100%;
  padding: 10px 18px 16px;
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  border: 1px solid var(--border);
  border-top: none;
  background: var(--off);
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 140px;
  display: block;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.c-msg-field textarea:focus {
  border-color: var(--green);
  background: white;
}
.c-submit {
  margin-top: 2px;
  background: var(--green);
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 20px 48px 20px 36px;
  cursor: none;
  transition: background 0.2s;
  align-self: flex-start;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}
.c-submit:hover {
  background: var(--green-mid);
}
.c-success {
  display: none;
  margin-top: 16px;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.contact-right {
  padding-top: 8px;
}
.c-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-info-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.c-detail {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-detail:first-of-type {
  border-top: 1px solid var(--border);
}
.c-detail-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-detail-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.c-detail-val a {
  color: var(--green);
  text-decoration: none;
}
.c-detail-val a:hover {
  color: var(--red);
}
.c-map {
  margin-top: 28px;
  border: 2px solid var(--ink);
}
.c-map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
}
.c-socials {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.c-soc {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.c-soc:hover {
  border-color: var(--green);
  background: var(--green-light);
}

footer {
  background: var(--ink);
  padding: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col {
  padding: 56px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col:last-child {
  border-right: none;
}
.footer-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 220px;
}
.footer-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.footer-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-ul a:hover {
  color: white;
}
.footer-bottom {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-red {
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 2px solid var(--ink);
    padding: 16px 24px;
    z-index: 100;
  }
  #home {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 60px 28px;
  }
  #why {
    grid-template-columns: 1fr;
  }
  .why-left {
    padding: 60px 28px;
  }
  #about {
    grid-template-columns: 1fr;
  }
  .about-right {
    min-height: 400px;
  }
  .about-left {
    padding: 60px 28px;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .c-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  #products {
    padding: 60px 24px;
  }
  #testimonials {
    padding: 60px 24px;
  }
  #contact {
    padding: 60px 24px;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .test-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .products-table .prod-td-desc {
    display: none;
  }
  .about-left a[href="#contact"] {
    font-size: 12px;
    padding: 12px 20px;
  }
  .footer-col {
    padding: 36px 24px;
  }
}
