@font-face {
  font-family: "helvetica-neue";
  src: url("/Fonts/helvetica-neue/HelveticaNeue-Bold.woff") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "helvetica-neue";
  src: url("/Fonts/helvetica-neue/HelveticaNeue-Medium.woff") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "helvetica-neue";
  src: url("/Fonts/helvetica-neue/HelveticaNeue-Roman.woff") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "helvetica-neue";
  src: url("/Fonts/helvetica-neue/HelveticaNeue-Light.woff") format("truetype");
  font-weight: 300;
  font-style: normal;
}


/* ── Reset & base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #f9f6f0;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-gold: #c4a35a;
  --color-gold-dark: #a8863f;
  --color-accent: #c4a35a;
  --color-accent-hover: #a8863f;
  --color-border: #e8e2d6;
  --font-sans: "helvetica-neue", Helvetica, Arial, sans-serif;
  /* --font-serif: "Instrument Serif", Georgia, serif; */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

.text-gold {
  color: var(--color-gold);
}

.text-white {
  color: #ffffff;
}

.text-offwhite {
  color: rgba(255, 255, 255, 0.85);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.spacer-32{
  padding-top: 2rem;
}

/* ── Global layout utilities ──────────────────────────────── */
.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container-large {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Typography utilities ─────────────────────────────────── */
.heading-style-h1 {
  font-family: var(--font-serif);
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.1;
  /* letter-spacing: -0.02em; */
  margin-bottom: 1.5rem;
}

.heading-style-h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.heading-style-h4{
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
}

.p-18 {
  font-size: 1.125rem;
  line-height: 1.7;
}

.max-width-500 {
  max-width: 500px;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #C9942B;
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  border: 1px solid #8f8f8f52;
  transition: background-color 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  /* box-shadow: 0 4px 24px rgba(196, 163, 90, 0.4); */
}

.read-more-btn{
  color : var(--color-gold);
  font-weight: 800;
  font-size: 1.125rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all ease 0.25s;
}

.read-more-btn svg{
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
}

.read-more-btn:hover{
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 5px;
}

a:hover .button-primary {
  background-color: black;
  transform: translateY(-2px);
}

.nav-logo{
  width: 100%;
  max-width :120px;

  object-fit: contain;
}


/* ── Navbar ───────────────────────────────────────────────── */
.navbar-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 246, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.navbar-section__padding {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.navbar__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.navbar__links a:hover {
  color: var(--color-text);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section .padding-global {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.72) 0%,
      rgba(26, 26, 26, 0.45) 50%,
      rgba(0, 0, 0, 0.3) 100%);
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  padding-top: 6rem;
  padding-bottom: 5rem;
  min-height: 100vh;
  justify-content: center;
}

.image-cover-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* background-image: url("/assets/hero-image.png"); */

}

/* ── Features ─────────────────────────────────────────────── */
.features__header {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.features__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}


.features__subheading {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

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

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

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

.feature-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 163, 90, 0.15);
  color: var(--color-gold);
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.feature-card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.feature-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Product Categories ───────────────────────────────────── */
#categories-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.category-row:last-child {
  margin-bottom: 0;
}

.category-row--reverse .category-row__content {
  order: 2;
}

.category-row--reverse .category-row__media {
  order: 1;
}

.category-row__title {
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.category-row__description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 420px;
}

.category-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── Quality ──────────────────────────────────────────────── */
.quality__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.quality__media {
  width: 100%;
  height: 100%;
}

.quality__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}



.quality__description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

.quality__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quality__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.quality__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: #fff;
  border-radius: 50%;
}

.quality__icon svg {
  width: 1rem;
  height: 1rem;
}

/* ── Process ──────────────────────────────────────────────── */
.process-section {
  background: var(--color-surface);
}

.process-wrap {
  background: var(--color-surface);
}

.process__eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

#process-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process__steps {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(50% + 2rem);
  width: calc(100% - 4rem);
  border-top: 2px dotted var(--color-border);
  z-index: 0;
}

.process-step__icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 163, 90, 0.12);
  color: var(--color-gold);
  border-radius: 50%;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.process-step__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.process-step__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.process-step__text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 120px;
}

/* Mission Vision Values */
.section-tagline{
  font-weight: 500;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-mission {
  position: relative;
  background-image: url("https://cdn.prod.website-files.com/6a213698355b8ae5c893e850/6a25b88fbeb1853c817e6b91_paperwork.avif");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-surface);
}

.mission-vision-grid {
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: column;
  grid-auto-columns: 1fr;
  gap: 5rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.vision-wrapper {
  display: flex;
  max-width: 37.5rem;
  flex-flow: column;
  gap: 2rem;
}

.section-header {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
}

.tag-wrapper {
  display: flex;
}

.heading-style-40 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
}

.vision-wrapper.is-right {
  margin-left: auto;
}
.gradient-section-bg {
  position: absolute;
  inset: 0%;
  background-image: linear-gradient(rgb(8, 8, 8), rgba(8, 8, 8, 0.94) 33%, rgba(8, 8, 8, 0.72) 69%, rgba(8, 8, 8, 0.6));
  pointer-events: none;
}

/* ──  Section CTA ───────────────────────────────────────── */
.cta {
  background-color: #111111;
  color: #ffffff;
}

.cta-2c-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;

}

.cta-2c-content {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-wrap {
  height: 100%;
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}


/* FOOTER */
.footer {
  position: relative;
  background-image: url("/assets/container.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.footer-content {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-logo {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.footer-logo span {
  color: #d6a028;
}


.footer-social h3,
.footer-links h3,
.footer-address h3 {
  color: #d6a028;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;

  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #d6a028;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li+li {
  margin-top: 1rem;
}

.footer-links a,
.footer-address p {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-links a:hover {
  color: #d6a028;
}

.footer-address p {
  margin: 0;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-row {
  width: 100%;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-links-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* HUBSPOT */
.hs-form-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: rgb(255, 255, 250) !important;
  border-radius :12px !important;
}
.hsfc-Step .hsfc-Step__Content {
  padding: 2rem !important;
}
#hubspot-form{
  border-radius: 12px !important;
  overflow: hidden !important;
}

/* FOUNDERS MESSAGE */
.section-founder-message {
  background-color: var(--_primitives---brand-colors--brand-black);
  color: var(--_primitives---colors--white);
}

.founders-grid {
  display: grid;
  grid-auto-columns: 1fr;
  gap: 2.5rem;
  grid-template-columns: max-content 1fr;
  grid-template-rows: auto;
}

.message-left-wrap {
  display: flex;
  max-width: 24.375rem;
  flex-flow: column;
  gap: 2rem;
}

.section-founder-message {
  background-color: black;
  color: white; }

.message-right-wrap {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
}
.founder-tag-wrap-about{
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  margin-top: 8px;;
}
.blockquote{
  font-size: 2.75rem;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.founder-image-wrapper{
  max-height: 60%;
  /* max-width: 90%; */
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 8px;
}
.flex-box-24{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-para{
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}


/* PRODUCTS PAGES */
/* PRODUCT HERO */
.section-product-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  margin-bottom: 1.5rem;

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: var(--color-gold);

  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  border-radius: 999px;
}

/* INTRO SECTION */
.section-product-intro {
  background: var(--color-surface);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-intro-image {
  width: 100%;
  /* height: 100%; */
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  /* min-height: 650px; */
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.product-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-intro-content {
  max-width: 620px;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-copy p {
  color: var(--color-text-muted);
}

/* IMAGE ACCENT */
.product-intro-image::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -50px;
  right: -50px;

  background: rgba(196,163,90,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.other-content-wrapper{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.list-wrapper{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.list-wrapper ul {
  margin-left : 2rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-row,
  .category-row--reverse,
  .quality__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-row--reverse .category-row__content,
  .category-row--reverse .category-row__media {
    order: unset;
  }

  .process__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1rem;
  }

  .process-step {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 140px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .mission-vision-grid {
    gap: 4.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-logo {
    font-size: 3rem;
  }

  .footer-social {
    margin-top: 3rem;
  }
    .founders-grid {
    display: flex;
    flex-flow: column;
  }
    .message-right-wrap {
    padding-top: 0rem;
    order: -9999;
  }


  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    
  }

  .product-intro-image {
    width: 100%;
    height: 100%;
  }
}

/* =========================
   MOBILE ONLY
========================= */
@media (max-width: 767px) {

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-section-medium {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .heading-style-h1 {
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .heading-style-h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .p-18 {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* HERO */
  .hero-section{
    min-height : 100svh;
  }
  .section-product-hero {
    min-height: auto;
  }

  .hero-wrap,
  .product-hero-content {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
    gap: 1.5rem;
  }

  .image-cover-hero {
    background-attachment: scroll;
  }

  /* FEATURES */
  .features__grid {
    grid-template-columns: 1fr;
  }

  /* CATEGORY */
  .category-row,
  .quality__inner,
  .product-intro-grid,
  .cta-2c-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-row {
    margin-bottom: 2.5rem;
  }

  .product-intro-content,
  .cta-2c-content,
  .message-left-wrap {
    max-width: 100%;
  }

  .product-intro-image {
    min-height: auto;
  }

  .product-intro-image::after {
    display: none;
  }

  .product-intro-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* PROCESS */
  .process__steps {
    flex-direction: column;
    gap: 2rem;
  }

  .process-step {
    width: 100%;
    flex: unset;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  /* MISSION */
  .mission-vision-grid {
    gap: 3rem;
  }

  .vision-wrapper {
    max-width: 100%;
  }

  .vision-wrapper.is-right {
    margin-left: 0;
  }

  /* FOUNDER */
  .founders-grid {
    display: flex;
    flex-direction: column;
  }

  .message-right-wrap {
    order: -1;
  }

  .blockquote {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .about-para {
    line-height: 1.6;
  }

  .founder-image-wrapper img {
    width: 100%;
    height: auto;
  }

  /* FOOTER */
  .footer-row,
  .footer-links-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-bottom {
    margin-top: 3rem;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  /* LISTS */
  .list-wrapper ul {
    margin-left: 1rem;
  }

  .other-content-wrapper {
    gap: 1.5rem;
  }

  /* PRODUCT HERO */
  .section-tag {
    font-size: 0.7rem;
    padding: 0.5rem 0.875rem;
  }

  /* NAV */
  .navbar-section__padding {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .nav-logo {
    max-width: 100px;
  }
}


/* EXTRA SMALL DEVICES */
@media (max-width: 479px) {

  .heading-style-h1 {
    font-size: 2rem;
  }

  .heading-style-h2 {
    font-size: 1.5rem;
  }

  .footer-logo {
    font-size: 1.75rem;
  }

  .blockquote {
    font-size: 1.25rem;
  }

  .hero-wrap,
  .product-hero-content {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

/* @media (max-width: 600px) {
  .padding-section-medium {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .navbar__links {
    gap: 1.25rem;
  }

  .hero-wrap {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .category-row {
    margin-bottom: 3rem;
  }

  .process-step {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-logo {
    font-size: 2.5rem;
  }

  .footer-social {
    margin-top: 2rem;
  }
    .message-left-wrap {
    max-width: 100%;
  }

    .product-intro-image {
    min-height: 400px;
  }
} */